/* NEW BSD LICENSE {{{ Copyright (c) 2011, anekos. Copyright (c) 2011, teramako. All rights reserved. > Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ################################################################################### # http://sourceforge.jp/projects/opensource/wiki/licenses%2Fnew_BSD_license # # に参考になる日本語訳がありますが、有効なのは上記英文となります。 # ################################################################################### }}} */ // INFO {{{ let INFO = <> anekos teramako New BSD License

Many Mappings and Post command for Google+

require: feedSomeKeys_3.js and x-hint.js and _libly.js

:googleplus-setup :googleplus -setup :gp -setup

Should setup at first

  1. Login to Google+
  2. Execute :googleplus -setup
:googleplus-nonargs :googleplus :gp

when argument is none, select the Google+ tab or open in new tab

:googleplus :gp :googleplus -l[link] -i[mage] imageURL -t[o] to message :gp -l[ink] -i[mage] imageURL -t[o]> to message

Post message

-link
Add the current URL. If the selections are available, add the selections as relataed page. And when -image option is not specified and image elements is contained in the selections, add the URL of the largest image.
-image
Specify image URL
-to
Specify the circles. Can set multiple. (Default: Anyone)
g:gplus_commando_map_ let g:gplus_commando_map_command = map-keys

Map map-keys for command. The possible commands.

next
Go to next entry.
prev
Back to previous entry.
share
Shate current entry.
plusone
+1
comment
Comment to current entry.
post
Post new entry.
yank
Copy the permlink of current entry to clipboard.
notification
Open notification box.
cancel
Cancel current something.
submit
Submit current editing post.
unfold
Unfold something on current entry.
menu
Open the menu of current entry.

rc file example

let g:gplus_commando_map_next = "j" let g:gplus_commando_map_prev = "k" let g:gplus_commando_map_share = "s" let g:gplus_commando_map_plusone = "p" let g:gplus_commando_map_comment = "c" let g:gplus_commando_map_post = "C" let g:gplus_commando_map_yank = "y" let g:gplus_commando_map_notification = "n" let g:gplus_commando_map_submit = "<C-CR>" let g:gplus_commando_map_cancel = "<Esc>" let g:gplus_commando_map_unfold = "e" let g:gplus_commando_map_menu = "m"
; // }}} (function () { // Utils {{{ function A (list) Array.slice(list); function click (elem) { if (!elem) throw GPCError('elem is undefined'); buffer.followLink(elem, liberator.CURRENT_TAB); } function withCount (command) { return function (count) { if (count < 1) count = 1; for (let i = 0; i < count; i++) command(); }; } function GPCError (msg) { if (this instanceof GPCError) { this.toString = function () String(msg); } else { return new GPCError(msg); } } // }}} // Elements {{{ const Names = { viewer: 'zg', dialog: 'va-Q', closeButton: 'CH' }; const Elements = { get doc() content.document, get currentEntry () MakeElement(Entry, Elements.doc.querySelector('.a-f-oi-Ai')), post: { // get editor () Elements.postForm.querySelector('.editable').parentNode, // Elements.postForm.querySelector('.editable').parentNode get root () Elements.doc.querySelector('.n-Ob'), get open () Elements.doc.querySelector('.n-Nd'), get cancel () Elements.post.root.querySelector('div.om[id$=".c"]'), get submit () Elements.doc.querySelector('[role="button"].d-s-r.tk3N6e-e.tk3N6e-e-qc.n-Ja-xg') }, get notification () Elements.doc.querySelector('#gbi1'), get viewer () MakeElement(Viewer, Elements.doc.querySelector('.' + Names.viewer)), get dialog () MakeElement(Dialog, Elements.doc.querySelector('.' + Names.dialog)), get focusedEditor () { function hasIFrame (elem) { let iframe = elem.querySelector('iframe'); return iframe && iframe.contentWindow === win; } function get1 () { function button (editor, name) editor.parentNode.querySelector(String(<>[role="button"][id$=".{name}"])); const names = {submit: 'post', cancel: 'cancel'}; let editors = A(doc.querySelectorAll('div[id$=".editor"]')).filter(hasIFrame); if (editors.length === 0) return; if (editors.length > 1) throw 'Two and more editors were found.'; return { editor: #1=(editors[0]), button: { submit: button(#1#, 'post'), cancel: button(#1#, 'cancel') } }; } function get2 () { function button (editor, index) { let result = editor.querySelectorAll('td > [role="button"]')[index]; if (result) return result; if (index === 1) return editor.querySelector('.om[id$=".c"]'); } const indexes = {submit: 0, cancel: 1}; let editors = A(doc.querySelectorAll('.n')).filter(hasIFrame); if (editors.length === 0) return; if (editors.length > 1) throw 'Two and more editors were found.'; return { editor: #1=(editors[0]), button: { submit: button(#1#, 0), cancel: button(#1#, 1) } }; } let doc = content.document; let win = document.commandDispatcher.focusedWindow; return get1() || get2(); } }; function MakeElement (constructor, root) { if (root) return constructor(root); } function Entry (root) { let self = { get root () root, get permlink () [ e for ([, e] in Iterator(A(root.querySelectorAll('a')))) if (!e.getAttribute('oid')) ][0], get unfold () ( root.querySelector('.a-b-f-i-gc-cf-Xb-h[role="button"]') // 発言の省略 (以前) || root.querySelector('.a-b-f-i-gc-Sb-Xb-h[role="button"]') // 発言の省略 (以降) || root.querySelector('.a-b-f-i-p-gc-h[role="button"]') // 投稿の省略 ), get buttons () A(self.plusone.parentNode.querySelectorAll('[role="button"]')), get commentButton () self.buttons[0], get commentEditor () let (e = root.querySelector('.editable')) (e && e.parentNode), get comment() (self.commentEditor || self.commentButton), get plusone () root.querySelector('[g\\:type="plusone"]'), get share () self.buttons[1], get menu () root.querySelector('[role="menu"]'), get menuButton () root.querySelector('[role="button"].d-h.a-f-i-Ia-D-h.a-b-f-i-Ia-D-h'), get cancel () root.querySelector('[role="button"][id$=".cancel"]'), get submit () root.querySelector('[role="button"][id$=".post"]') }; return self; } function Dialog (root) { function nButton (n) { let bs = self.buttons; if (bs.length === 2) return bs[n]; } let self = { get buttons () A(root.querySelectorAll('[role="button"]')), get submit () nButton(0), get cancel () nButton(1) }; return self; } function Viewer (root) { function nButton (n) { let bs = self.buttons; if (bs.length === 2) return bs[n]; } let self = { get cancel () root.querySelector('.' + Names.closeButton), get prev () root.querySelector('.vn.GE.AH'), get next () root.querySelector('.vn.GE.BH'), }; return self; } // }}} // Post Help {{{ const PostHelp = { PanelID: 'google-plus-commando-help-panel', get panel () Elements.doc.querySelector('#' + PostHelp.PanelID), show: function () { function move (panel) { let contentHeight = document.getElementById('content').boxObject.height; let rect = Elements.focusedEditor.editor.getClientRects()[0]; if (rect.top < (contentHeight / 2)) { panel.style.top = ''; panel.style.bottom = '10px'; } else { panel.style.top = '10px'; panel.style.bottom = ''; } } let doc = Elements.doc; let parent = doc.body; let exists = PostHelp.panel; if (exists) { move(exists); exists.style.display = 'block'; return; } let panel = doc.createElement('div'); panel.setAttribute('id', PostHelp.PanelID); let (ps = panel.style) { ps.position = 'fixed'; ps.left = '10px'; ps.zIndex = 1000; ps.backgroundColor = 'white'; ps.border = 'solid 1px grey'; } panel.innerHTML = <>
入力 効果 解説
*TEXT* TEXT 太字
_TEXT_ TEXT 斜体
-TEXT- TEXT 打ち消し線
*-TEXT-* TEXT 太字/打消。打消(-)は内側に書く
-ねこ- 日本語の打消はダメ
-ね こ- ね こ 英数字や半角スペースを入れたらOK
-Aねこす- Aあねこす 英数字を前後に入れても良い
; move(panel); parent.appendChild(panel); return; }, hide: function () { let exists = PostHelp.panel; if (exists) exists.style.display = 'none'; } }; // }}} // Commands {{{ const Commands = { next: withCount(function () { if (Elements.viewer) return click(Elements.viewer.next); let menus = A(Elements.doc.querySelectorAll('[tabindex="0"][role="menu"]')); plugins.feedSomeKeys_3.API.feed.apply( null, menus.length === 1 ? ['', ['keypress'], menus[0]] : ['j', ['vkeypress'], Elements.doc] ); }), prev: withCount(function () { if (Elements.viewer) return click(Elements.viewer.prev); let menus = A(Elements.doc.querySelectorAll('[tabindex="0"][role="menu"]')); plugins.feedSomeKeys_3.API.feed.apply( null, menus.length === 1 ? ['', ['keypress'], menus[0]] : ['k', ['vkeypress'], Elements.doc] ); }), comment: function() { let entry = Elements.currentEntry; click(entry.comment); PostHelp.show(); }, plusone: function() click(Elements.currentEntry.plusone), share: function() click(Elements.currentEntry.share), post: function() { buffer.scrollTop(); click(Elements.post.open); PostHelp.show(); }, yank: function () { let e = Elements.currentEntry.permlink; if (!e) liberator.echoerr('Not found permlink'); util.copyToClipboard(e.href); liberator.echo('Copy the permlink to clipboard: ' + e.href); }, notification: function () { click(Elements.notification); }, cancel: function () { for (let [, n] in Iterator(['dialog', 'viewer'])) { let e = Elements[n]; if (e && e.cancel) return click(e.cancel); } click(Elements.doc.body); }, submit: function () { if (liberator.focus) return; PostHelp.hide(); click(Elements.focusedEditor.button.submit); }, unfold: function () { click(Elements.currentEntry.unfold); }, menu: function () { click(Elements.currentEntry.menuButton); } }; // }}} // Define mappiings {{{ (function () { const MatchingUrls = RegExp('^https://plus\\.google\\.com/*'); const MappingDescriptionSuffix = ' - Google plus Commando'; function defineMapping (mode, cmd) { let gv = liberator.globalVariables[ 'gplus_commando_map_' + cmd.replace(/[A-Z]/g, function (m) ('_' + m.toLowerCase())) ]; if (!gv) return; let func = Commands[cmd]; mappings.addUserMap( [mode], gv.split(/\s+/), cmd + MappingDescriptionSuffix, function (count) { try { func(count); } catch (e if (e instanceof GPCError)) { /* DO NOTHING */ } }, { count: func.length === 1, matchingUrls: MatchingUrls } ); } 'comment plusone share next prev post yank notification cancel unfold menu'.split(/\s/).forEach(defineMapping.bind(null, modes.NORMAL)); 'submit'.split(/\s/).forEach(defineMapping.bind(null, modes.INSERT)); mappings.addUserMap( [modes.INSERT], [''], 'Escape from input area', function () { if (liberator.focus) { let esc = mappings.getDefault(modes.NORMAL, ''); esc.action.apply(esc, arguments); } else { click(Elements.focusedEditor.button.cancel); // FIXME window.document.commandDispatcher.advanceFocus(); modes.reset(); PostHelp.hide(); } }, { matchingUrls: MatchingUrls } ); })(); // }}} // Define hints {{{ (function () { const HintStyleName = 'google-plus-commando-hint'; [ ['o', 'f', function (e) click(e)], ['t', 'F', function (e) buffer.followLink(e, liberator.NEW_TAB)], ].forEach(function ([modeChar, mapKey, action]) { let modeName = 'google-plus-comando-hint-' + modeChar; hints.addMode( modeName, hints._hintModes[modeChar].prompt, function (elem, count) { function mouseEvent (name) { let evt = elem.ownerDocument.createEvent('MouseEvents'); evt.initMouseEvent(name, true, true, elem.ownerDocument.defaultView, 0, 0, 0, 0, 0, false, false, false, false, 0, null); elem.dispatchEvent(evt); } let plusone = elem.getAttribute('g:type') === 'plusone'; if (plusone) mouseEvent('mouseover'); action(elem, count); if (plusone) mouseEvent('mouseout'); }, function () { function removeRoot (s) s.replace(/^\s*\/\//, ''); const ext = [ 'span[@role="button"]', 'div[@role="button"]', 'div[@data-content-type]', 'img[contains(@class,"ea-g-Vc-pa")]', 'div[contains(@class,"a-z-nb-A")]' ]; let xpath = options['hinttags'].split(/\s*\|\s*/).map(removeRoot).concat(ext); for (let [, name] in Iterator(['viewer', 'dialog'])) { if (!Elements[name]) continue; xpath.push(String(<>div[contains(@class, "{Names.closeButton}")])); xpath = xpath.map(function (it) String(<>*[contains(@class, "{Names[name]}")]//{it})) break; } styles.addSheet(false, HintStyleName, 'plus\\.google\\.com', '.a-b-f-W-Tj.a-f-W-Tj { display: inline !important }'); return xpath.map(function (it) '//' + it).join(' | '); } ); mappings.addUserMap( [modes.NORMAL], [liberator.globalVariables['gplus_commando_map_hint_' + modeChar] || mapKey], 'Hit a hint - Google plus Commando', function () hints.show(modeName), { matchingUrls: RegExp('^https://plus\\.google\\.com/.*') } ); }); plugins.libly.$U.around( hints, 'hide', function (next) { setTimeout(function () styles.removeSheet(false, HintStyleName, 'plus\\.google\\.com'), 0); return next(); }, true ); })(); // }}} // Post Command {{{ (function () { const HOME_URL = 'https://plus.google.com/', POST_URL_BASE = 'https://plus.google.com/u/0/_/sharebox/post/'; /** * ${RUNTIMEPATH}/info/{profileName}/googlePlus のデータ取得/保存 * @type {Object} */ let store = storage.newMap('googlePlus', {store: true}); commands.addUserCommand( ['gp', 'googleplus'], 'Post to Google+', function (args) { // ---------------------- // -setup オプション // ---------------------- if ('-setup' in args) { setupGooglePlus(); return; } let message = args[0] || '', acls = null; // ---------------------- // -link オプション // ---------------------- var win = null; if ('-link' in args) { win = content; } // ---------------------- // -imageURL オプション // ---------------------- var image = null; if ('-imageURL' in args) { image = args['-imageURL']; } // ---------------------- // -to オプション // ---------------------- if ('-to' in args && args['-to'].indexOf('anyone') == -1) acls = [acl for ([,acl] in Iterator(store.get('CIRCLES', []))) if (args['-to'].indexOf(acl[0]) != -1)]; // 引数が何も無い場合は、Google+のページへ if (!message && !win && !image) { let tab = getGooglePlusTab(); if (tab) { gBrowser.mTabContainer.selectedItem = tab; } else { liberator.open(HOME_URL, {where: liberator.NEW_TAB}); } return; } window.setTimeout(function() { var pd = new PostData(message, win, image, acls); postGooglePlus(pd); }, 0); }, { literal: 0, options: [ [['-link', '-l'], commands.OPTION_NOARG], [['-imageURL', '-i'], commands.OPTION_STRING], [['-to', '-t'], commands.OPTION_LIST, null, function (context, args) { let [, prefix] = context.filter.match(/^(.*,)[^,]*$/) || []; if (prefix) context.advance(prefix.length); return [["anyone", "to public"]].concat([v for ([,v] in Iterator(store.get("CIRCLES", [])))]); }], [['-setup'], commands.OPTION_NOARG], ], }, true ); hints.addMode("G", "Google+ Post", function action(elm) { var src = elm.src; commandline.open("", "googleplus -i " + src + " ", modes.EX); }, function getXPath() { return util.makeXPath(["img"]); }); /** * Google+のページから必要データを保存する * @return {Boolean} */ function setupGooglePlus () { function onSuccess () { liberator.echomsg('Initialized: googleplus'); } function onFail () { liberator.echoerr('Faild: initialize googleplus'); } function getFromWindow (win) { let data = win.OZ_initData; if (!data) return false; // XXX 全てのデータが揃っていないケースがあるようなので、検査する try { store.set('UID', data[2][0]); store.set('AT', data[1][15]); let circles = data[12][0]; // CIRCLES[]: [[Name, Description, ID], ...] store.set('CIRCLES', [ ["circles", "Everyone in your circles", "1c"], ["excircles", "Everyone in your circles, plus all the people in their circles", "1f"], ].concat([[c[1][0],c[1][2],c[0][0]] for each(c in circles.slice(0, circles.length / 2))])); onSuccess(); return true; } catch (e) { liberator.log(e); return false; } } // XXX ブラチラ大作戦 function getFromMakedBrowser () { let browser = document.createElementNS(XUL, 'browser'); browser.setAttribute('type', 'content'); browser.setAttribute('src', 'https://plus.google.com/'); document.getElementById('main-window').appendChild(browser); browser.addEventListener( 'DOMContentLoaded', function (e) { if (e.target !== browser.contentWindow.document) return; browser.removeEventListener('DOMContentLoaded', arguments.callee, false); getFromWindow(browser.contentWindow.wrappedJSObject); browser.parentNode.removeChild(browser); }, false ); } let found = false; let tab = getGooglePlusTab(); if (tab) found = getFromWindow(tab.linkedBrowser.contentWindow.wrappedJSObject); if (!found) getFromMakedBrowser(); } /** * Google+のタブを取ってくる * @return {Element|null} */ function getGooglePlusTab () { let tabs = gBrowser.tabs; for (let i = 0, tab; tab = tabs[i]; ++i) { if (tab.linkedBrowser.currentURI.spec.indexOf(HOME_URL) == 0) { return tab; } } return null; } /** * Post to Google+ * @param {PostData} aPostData */ function postGooglePlus (aPostData) { let data = aPostData.getPostData(); let queries = [key + '=' + encodeURIComponent(value) for ([key,value] in Iterator(data))].join('&'); let xhr = new XMLHttpRequest(); xhr.mozBackgroundRequest = true; xhr.open('POST', aPostData.POST_URL, true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=UTF-8'); xhr.setRequestHeader('Origin', HOME_URL); xhr.onreadystatechange = postGooglePlus.readyStateChange; xhr.send(queries); } /** * Google+への送信状況を表示する * @param {Event} aEvent * aEvent.target は XMLHttpRequestオブジェクト */ postGooglePlus.readyStateChange = function GooglePlus_readyStateChange (aEvent) { let xhr = aEvent.target, msg = 'Google+: ', XBW = window.XULBrowserWindow; if (xhr.readyState == 4) { msg += (xhr.status == 200) ? 'Posted' : 'Post faild (' + xhr.statusText + ')'; window.setTimeout(function(XBW, msg){ if (XBW.jsDefaultStatus.indexOf('Google+:') == 0) XBW.setJSDefaultStatus(''); }, 2000, XBW, msg); } else { msg += 'sending...'; } liberator.log(msg, 0); XBW.setJSDefaultStatus(msg); }; XPCOMUtils.defineLazyServiceGetter(__context__, 'MIME', '@mozilla.org/mime;1', 'nsIMIMEService'); /** * Google+への送信データ生成 * @Constructor * @param {String} aMessage * @param {Window} [aWindow] 現ページのWindowオブジェクト * @param {String} [aImageURL] 表示させたい画像URL * @param {Array} [aACLs] ACL[] */ function PostData () { this.init.apply(this, arguments); } PostData.sequence = 0; PostData.prototype = { init: function PD_init (aMessage, aWindow, aImageURL, aACLs) { this.message = aMessage; this.window = aWindow; this.imageURL = aImageURL; this.UID = store.get('UID', null); liberator.assert(this.UID, 'Google+ Error: UID is not set. Please login and `:googleplus -setup\''); this.AT = store.get('AT', null); liberator.assert(this.AT, 'Google+ Error: AT is not set. Please login and `:googleplus -setup\''); this.setACLEnties(aACLs); }, get token () { let t = 'oz:' + this.UID + '.' + this.date.getTime().toString(16) + '.' + this.sequence.toString(16); Object.defineProperty(this, 'token', {value: t}); return t; }, get date () { let d = new Date; Object.defineProperty(this, 'date', {value: d}); return d; }, get sequence () { let s = PostData.sequence++; Object.defineProperty(this, 'sequence', {value: s}); return s; }, get reqid () { let r = this.date.getHours() + 3600 + this.date.getMinutes() + 60 + this.date.getSeconds() + this.sequence * 100000; Object.defineProperty(this, 'reqid', {value: r}); return r; }, get POST_URL () { let url = POST_URL_BASE + '?_reqid=' + this.reqid + '&rt=j'; Object.defineProperty(this, 'POST_URL', {value: url}); return url }, aclEntries: [{ scope: { scopeType: 'anyone', name: 'Anyone', id: 'anyone', me: true, requiresKey: false }, role: 20, }, { scope: { scopeType: 'anyone', name: 'Anyone', id: 'anyone', me: true, requiresKey: false, }, role: 60 }], setACLEnties: function PD_setACLEnties (aACLs) { if (!aACLs || aACLs.length == 0) return this.aclEntries = Object.getPrototypeOf(this).aclEntries; let entries = []; for (let i = 0, len = aACLs.length; i < len; ++i) { let acl = aACLs[i]; let scope = { scopeType: 'focusGroup', name: acl[0], id: this.UID + '.' + acl[2], me: false, requiresKey: false, groupType: 'p' }; entries.push({scope: scope, role: 60}); entries.push({scope: scope, role: 20}); } return this.aclEntries = entries; }, getPostData: function PD_getPostData () { let spar = [v for each(v in this.generateSpar())]; return { spar: JSON.stringify(spar), at : this.AT }; }, generateSpar: function PD_generateSpar() { for (let i = 0, len = 17; i < len; ++i) { switch (i) { case 0: yield this.message; break; case 1: yield this.token; break; case 6: if (!this.window && !this.imageURL) { yield null; } else { var media = LinkDetector.get(this.window, this.imageURL); var data = [JSON.stringify(media.generateData())]; if (media.hasPhoto) { data.push(JSON.stringify(media.generateData(true))); } yield JSON.stringify(data); } break; case 8: yield JSON.stringify({aclEntries: this.aclEntries}); break; case 9: case 11: case 12: yield true; break; case 15: case 16: yield false; break; case 10: case 14: yield []; break; default: yield null; break; } } }, }; const LinkDetector = (function() { var commonProto = { init: function (win, imageURL) { this.window = win; this.imageURL = imageURL; if (imageURL) { if (win) this.hasPhoto = true; this.setupImage(); } }, type: { TITLE: 3, MEDIA_LINK: 5, UPLOADER: 9, TEXT: 21, TYPE: 24, IMAGE: 41, PROVIDER: 47, }, generateData: function (isPhoto) { var data = new Array(48); data[this.type.TITLE] = this.getTitle(isPhoto); data[this.type.MEDIA_LINK] = this.getMediaLink(isPhoto); data[this.type.UPLOADER] = this.getUploader(isPhoto); data[this.type.TEXT] = this.getContentsText(isPhoto); data[this.type.TYPE] = this.getMediaType(isPhoto); data[this.type.IMAGE] = this.getMediaImage(isPhoto); data[this.type.PROVIDER] = this.getProvider(isPhoto); return data; }, hasPhoto: false, imageElement: null, setupImage: function () { let imgs = content.document.images; for (let i = 0, len = imgs.length, img; img = imgs[i]; ++i) { if (img.src == this.imageURL) { this.imageElement = img; } } }, getMimeType: function (uri, defaultType) { if (!(uri instanceof Ci.nsIURI)) uri = util.createURI(uri); try { return MIME.getTypeFromURI(uri); } catch (e) {} return defaultType; }, getTitle: function (isPhoto) { return (isPhoto || !this.window) ? null : this.window.document.title; }, getContentsText: function (isPhoto) { if (!this.window || isPhoto) return null; var sel = this.window.getSelection(); if (sel.isCollapsed) return ""; var sels = []; for (let i = 0, count = sel.rangeCount; i < count; ++i) { let r = sel.getRangeAt(i), fragment = r.cloneContents(); sels.push(Elements.node2txt(fragment, r.commonAncestorContainer.localName)); } return sels.join("
(snip)
"); }, getUploader: function () { return []; }, getMediaLink: function (isPhoto) { if (this.window && !isPhoto) return [null, this.window.location.href]; var data = [null, this.imageURL]; if (this.imageElement) data.push(this.imageElement.height, this.imageElement.width); return data; }, getMediaType: function (isPhoto) { if (isPhoto) { var type = this.getMimeType(this.imageURL, "image/jpeg"); var data = [null, this.imageURL, null, type, "photo", null,null,null,null,null,null,null]; if (this.imageElement) data.push(this.imageElement.width, this.imageElement.height); else data.push(null,null); return data; } if (this.window && !isPhoto) { type = this.window.document.contentType; switch (type.split("/")[0]) { case "image": return [null, this.window.location.href, null, type, "image"]; case "text": default: return [null, this.window.location.href, null, "text/html", "document"]; } } else if (this.imageURL) { type = this.getMimeType(this.imageURL, "image/jpeg"); return [null, this.imageURL, null, type, "image"]; } return null }, getMediaImage: function (isPhoto) { var url; if (this.window && !isPhoto) { let type = this.window.document.contentType.split("/"); if (type[0] != "image") { let host = this.window.location.host; url = "//s2.googleusercontent.com/s2/favicons?domain=" + host; return [ [null, url, null, null], [null, url, null, null] ]; } else { url = this.window.location.href; return [ [null, url, null, null], [null, url, null, null] ]; } } let data = [null, this.imageURL]; let w = null, h = null; if (this.imageElement) { w = this.imageElement.width, h = this.imageElement.height; w = w / h * 120; h = 120; } data.push(h, w); return [ data, data ]; }, getProvider: function (isPhoto) { return [ [null, (isPhoto ? "images" : ""), "http://google.com/profiles/media/provider"] ]; } }; var classes = {}, checker = {}; function MediaLink() { this.init.apply(this, arguments); }; MediaLink.prototype = commonProto; var self = { addType: function (name, checkFunc, proto) { checker[name] = checkFunc; var func = function () { this.init.apply(this, arguments); }; proto.__super__ = proto.__proto__ = commonProto; func.prototype = proto; classes[name] = func; }, get: function (aWindow, aImageURL) { for (let [key, checkFunc] in Iterator(checker)) { if (checkFunc(aWindow, aImageURL)) { return new classes[key](aWindow, aImageURL); } } return new MediaLink(aWindow, aImageURL); } }; (function() { // ------------------------------------------------------------------------- // YouTube // ----------------------------------------------------------------------{{{ self.addType("youtube", function (win) { if (!win) return false; return /^https?:\/\/(?:.*\.)?youtube.com\/watch/.test(win.location.href); }, { get VIDEO_ID () { var id = this.window.wrappedJSObject.yt.config_.VIDEO_ID; Object.defineProperty(this, "VIDEO_ID", { value: id }); return id; }, getMediaLink: function () [null, "http://www.youtube.com/v/" + this.VIDEO_ID + "&hl=en&fs=1&autoplay=1"], getContentsText: function () this.window.document.querySelector("meta[name=description]").content, getMediaType: function () [null, this.window.location.href, null, "application/x-shockwave-flash", "video"], getMediaImage: function () { var url = "https://ytimg.googleusercontent.com/vi/" + this.VIDEO_ID + "/hqdefault.jpg"; return [ [null, url, 120, 160], [null, url, 120, 160] ]; }, getProvider: function () [ [null, "youtube", "http://google.com/profiles/media/provider"] ], }); // }}} // ------------------------------------------------------------------------- // Gyazo // ----------------------------------------------------------------------{{{ self.addType("gyazo", function (win, image) { var reg = /^http:\/\/gyazo\.com\/\w+(\.png)?/; return reg.test(image); }, { init: function (win, imageURL) { this.window = win; if (imageURL.lastIndexOf(".png") != imageURL.length - 4) imageURL += ".png"; this.imageURL = imageURL; this.hasPhoto = true; }, }); // }}} })(); return self; })(); /** * ノードをHTMLテキストに変換 * @param {Node} aNode * @param {String} [aParentTag] 親ノードのタグ名 * @param {String} [aIndent] インデント文字列 * @param {Number} [aIndex] ノード番号(ol>li 時のみ使用) * @return {String} */ function node2txt (aNode, aParentTag, aIndent, aIndex) { let txt = ''; switch (aNode.nodeType) { case Node.DOCUMENT_NODE: // 9 case Node.DOCUMENT_FRAGMENT_NODE: // 11 switch (aParentTag) { case 'ol': case 'ul': case 'dl': aIndent = '  '; break; default: aIndent = ''; } txt = nodelist2txt(aNode.childNodes, aParentTag, aIndent).join(''); break; case Node.TEXT_NODE: // 3 txt = aNode.nodeValue; break; case Node.ELEMENT_NODE: // 1 let localName = aNode.localName, children = aNode.childNodes; switch (localName) { case 'ul': case 'ol': case 'dl': txt = '
\n' + nodelist2txt(children, localName, aIndent + '  ').join('') + '
\n'; break; case 'li': txt = aIndent + (aParentTag == 'ol' ? (' ' + (aIndex+1)).slice(-2) + '. ' : ' * ').replace(' ', ' ', 'g') + nodelist2txt(children, 'li', aIndent).join('') + '
\n'; break; case 'dt': txt = aIndent + '' + nodelist2txt(children, localName, aIndent) + ':
\n'; break; case 'dd': txt = aIndent + '  ' + nodelist2txt(children, localName, aIndent) + '
\n'; break; case 'br': txt = '
\n'; break; case 'img': txt = ''; break; case 'p': txt = nodelist2txt(children, 'p', '').join('') + '
\n'; break; case 'a': if (aNode.hasAttribute('href') && aNode.href.indexOf('http') == 0) { txt = '' + nodelist2txt(children, 'a', '').join('') + ''; break; } default: txt = '<' + localName + '>' + nodelist2txt(children, localName, aIndent).join('') + ''; } break; } return txt; } /** * NodeListの子をテキストにして配列で返す * @param {NodeList} aChildNoes * @param {String} aParentTag * @param {String} aIndent * @return {String[]} */ function nodelist2txt (aChildNodes, aParentTag, aIndent) { let a = [], index = 0; for (let i = 0, len = aChildNodes.length, child; child = aChildNodes[i]; ++i){ let txt = node2txt(child, aParentTag, aIndent, index); if (txt) { a.push(txt); ++index; } } return a; } __context__.linkDetector = LinkDetector; __context__.store = store; })(); // }}} // Export {{{ __context__.command = Commands; __context__.element = Elements; // }}} })(); // vim:sw=2 ts=2 et si fdm=marker: