aboutsummaryrefslogtreecommitdiffstats
path: root/direct_delb.js
blob: 6c57daa5176ed9102a5bb5728bd9a42fafac2b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Vimperator plugin: direct_delb
// Maintainer: mattn <mattn.jp@gmail.com> - http://mattn.kaoriya.net
(function(){
    var isNormalize = true;

    try{
        var XMigemoCore = Components
            .classes['@piro.sakura.ne.jp/xmigemo/factory;1']
            .getService(Components.interfaces.pIXMigemoFactory)
            .getService("ja");
    }catch(ex){
        var XMigemoCore = undefined;
    }

    // copied from AutoPagerize (c) id:swdyh
    function getElementsByXPath(xpath, node) {
        node = node || document;
        var nodesSnapshot = (node.ownerDocument || node).evaluate(xpath, node, null,
                XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
        var data = [];
        for (var i = 0, l = nodesSnapshot.snapshotLength; i < l;
                data.push(nodesSnapshot.snapshotItem(i++)));
        return (data.length > 0) ? data : null;
    }

    function getFirstElementByXPath(xpath, node) {
        node = node || document;
        var result = (node.ownerDocument || node).evaluate(xpath, node, null,
                XPathResult.FIRST_ORDERED_NODE_TYPE, null);
        return result.singleNodeValue ? result.singleNodeValue : null;
    }

    // copied from Pagerization (c) id:ofk
    function parseHTML(str) {
        str = str.replace(/^[\s\S]*?<html(?:\s[^>]+?)?>|<\/html\s*>[\S\s]*$/ig, '');
        var res = document.implementation.createDocument(null, 'html', null);
        var range = document.createRange();
        range.setStartAfter(window.content.document.body);
        res.documentElement.appendChild(res.importNode(range.createContextualFragment(str), true));
        return res;
    }

    function getNormalizedPermalink(url){
        var xhr = new XMLHttpRequest();
        xhr.open("GET","http://api.pathtraq.com/normalize_url?url=" + url,false);
        xhr.send(null);
        if(xhr.status != 200){
            liberator.echoerr("Pathtraq: FAILED to normalize URL!!");
            return undefined;
        }
        return xhr.responseText;
    }

    liberator.plugins.delicious_tags = [];
    var deliciousUser, deliciousPassword;

    try {
        var passwordManager = Cc["@mozilla.org/login-manager;1"].getService(Ci.nsILoginManager);
        var logins = passwordManager.findLogins({}, 'https://secure.delicious.com', 'https://secure.delicious.com', null);
        if(logins.length)
            [deliciousUser, deliciousPassword] = [logins[0].username, logins[0].password];
        else
        liberator.echoerr("DeliciousBookmark: account not found");
    } catch(ex) { }

    function getTags(){
        const feed_url = 'https://api.del.icio.us/v1/tags/get';
        var xhr = new XMLHttpRequest();
        xhr.onreadystatechange = function(){
            if(xhr.readyState == 4){
                if(xhr.status == 200) {
                    var tags = xhr.responseXML.getElementsByTagName('tag');
                    for each(var tag in tags)
                        liberator.plugins.delicious_tags.push(tag.getAttribute('tag'));
                    liberator.echo("DeliciousBookmark: Tag parsing is finished. Taglist length: " + tags.length);
                } else
                    throw new Error(xhr.statusText)
            }
        };
        xhr.open("GET", feed_url, true, deliciousUser, deliciousPassword);
        xhr.send(null);
    }

    getTags();

    function addDeliciousBookmarks(url, title, comment, normalize) {
        var target = normalize ? getNormalizedPermalink(url) : url;
        var tags = [];
        var re = /\[([^\]]+)\]([^\[].*)?/g;
        if (/^\[.*\]/.test(comment)) {
            var tag, text;
            while((tag = re.exec(comment))) {
                [, tag, text] = tag;
                tags.push(tag);
            }
            comment = text || '';
        }
        var request_url = 'https://api.del.icio.us/v1/posts/add?' + [
            ['url', target], ['description', title], ['extended', comment], ['tags', tags.join(' ')]
        ].map(function(p) p[0] + '=' + encodeURIComponent(p[1])).join('&');
        var xhr = new XMLHttpRequest();
        xhr.onreadystatechange = function(){
            if(xhr.readyState == 4){
                if(xhr.status == 200)
                    liberator.echo("DeliciousBookmark: success");
                else
                    liberator.echoerr("DeliciousBookmark:" + xhr.statusText);
            }
        };
        xhr.open("GET", request_url, true);
        xhr.send(null);
    }

    liberator.commands.addUserCommand(['delbtags'],"Update DeliciousBookmark Tags", getTags, {});
    liberator.commands.addUserCommand(['delb'],"Post to DeliciousBookmark",
        function(arg){
            addDeliciousBookmarks(liberator.buffer.URL, liberator.buffer.title, arg, isNormalize);
        },{
            completer: function(filter){
                var match_result = filter.match(/(\[[^\]]*\])?\[?(.*)/); //[all, commited, now inputting]
                var m = new RegExp(XMigemoCore ? "^(" + XMigemoCore.getRegExp(match_result[2]) + ")" : "^" + match_result[2],'i');
                var completionList = [];
                for each(var tag in liberator.plugins.delicious_tags)
                    if(m.test(tag)){
                        completionList.push([(match_result[1] || "") + "[" + tag + "]","Tag"]);
                    }
                return [0, completionList];
            }
        }
    );
})();
されたリンクを開きます。 <a>interval</a> はリンクを開く間隔です。 </p> <p><a>where</a> オプションの値</p> <dl> <dt>f, n, t</dt><dd>新しいタブに開く</dd> <dt>b</dt><dd>バックグラウンドの新しいタブに開く</dd> <dt>c</dt><dd>現在のタブに開く</dd> <dt>w</dt><dd>新しいウインドウに開く</dd> </dl> </description> </item> <item> <tags>:lopen</tags> <tags>:lo</tags> <tags>:linkopen</tags> <spec>:lo<oa>pen</oa><oa>!</oa> <oa>-w<oa>here</oa>=<a>where</a></oa> <a>link</a></spec> <description> <p> 選択されたリンク(<a>link</a>)を開きます。 </p> <p><a>where</a> オプションの値</p> <dl> <dt>f, n, t</dt><dd>新しいタブに開く</dd> <dt>b</dt><dd>バックグラウンドの新しいタブに開く</dd> <dt>c</dt><dd>現在のタブに開く</dd> <dt>w</dt><dd>新しいウインドウに開く</dd> </dl> </description> </item> </plugin> </>; // }}} // Usage: // :fo[pen][!] <REGEXP> [-i <INTERVAL_SEC>] [-w <WHERE>] // Open filtered links by regexp. // When used "!", open links in foreground. // // :lo[pen][!] URI [-w <WHERE>] // Open URI // // Usage-ja: // :fo[pen][!] <ミゲ文字列> [-i <INTERVAL_SEC>] [-w <WHERE>] // :fo[pen][!] /<正規表現> [-i <INTERVAL_SEC>] [-w <WHERE>] // ミゲ文字列か正規表現でフィルタされたリンクを開く // // :lo[pen][!] URI [-w <WHERE>] // URI を開く // // ちなみに Migemo はなくても動きます。 // 無い場合は、 "/" 要らずで正規表現オンリーになります。 // // Variables: // let g:fopen_default_interval="<INTERVAL_SEC>" (function () { const CompItemStyle = "margin-right: 0.5em; max-height: 3em !important; max-width 6em !important;" let migemo = window.XMigemoCore; function isHttpLink (link) (link.href && link.href.indexOf('http') == 0); function lmatch (re, link) ((link.href.match(re) || link.textContent.toString().match(re))); function getLinks () { function _get (content) Array.prototype.concat.apply(Array.slice(content.document.links), Array.slice(content.frames).map(_get)); return _get(content).filter(isHttpLink); } function makeRegExp (str) { return migemo ? (str.indexOf('/') == 0) ? new RegExp(str.slice(1), 'i') : migemo.getRegExp(str) : new RegExp(str, 'i'); } function filteredLinks (word) { let links = getLinks(); if (word.match(/^\s*$/)) return links; let re = makeRegExp(word); return [it for each (it in links) if (lmatch(re, it))]; } function charToWhere (str, fail) { const table = { f: liberator.NEW_TAB, t: liberator.NEW_TAB, n: liberator.NEW_TAB, b: liberator.NEW_BACKGROUND_TAB, c: liberator.CURRENT_TAB, w: liberator.NEW_WINDOW, }; return (str && table[str.charAt(0).toLowerCase()]) || fail; } const WHERE_COMPLETIONS = ['f', 't', 'n', 'b', 'c', 'w']; let (foihandle) { commands.addUserCommand( ['fo[pen]', 'filteropen'], 'Filtered open', function (args) { let where = charToWhere(args['-where'], args.bang ? liberator.NEW_TAB : liberator.NEW_BACKGROUND_TAB); let [i, links] = [1, filteredLinks(args.join(''))]; if (!links.length) return; liberator.open(links[0].href, where); if (links.length <= 1) return; let interval = (args['-interval'] || liberator.globalVariables.fopen_default_interval || 1) * 1000; foihandle = setInterval(function () { try { liberator.open(links[i].href, where); if ((++i) >= links.length) clearInterval(foihandle); } catch (e) { clearInterval(foihandle); } }, interval); }, { bang: true, literal: 0, options: [ [['-interval', '-i'], commands.OPTION_INT], [['-where', '-w'], commands.OPTION_STRING, null, WHERE_COMPLETIONS] ], completer: function (context, arg) { context.title = ['URL', 'Text Content']; // 本来の補完の絞り込みを抑止 let filter = context.filter; context.filter = ""; context.completions = filteredLinks(filter).map(function (it) ([it.href, it.textContent])); }, }, true ); commands.addUserCommand( ['stopfilteropen', 'stopfo[pen]'], 'Stop filtered open', function () { clearInterval(foihandle); }, {}, true ); } let (lolinks = []) { commands.addUserCommand( ['lo[pen]', 'linkopen'], 'Filtered open', function (args) { let arg = args.literalArg; let where = charToWhere(args['-where'], args.bang ? liberator.NEW_TAB : liberator.CURRENT_TAB); let idx = parseInt(arg, 10); if (idx === NaN) return liberator.open(arg, where); let link = lolinks[idx]; if (link) buffer.followLink(link, where); else liberator.open(arg, where); }, { literal: 0, options: [ [['-where', '-w'], commands.OPTION_STRING, null, WHERE_COMPLETIONS] ], bang: true, completer: function (context) { lolinks = getLinks(); context.filters = [CompletionContext.Filter.textDescription]; context.anchored = false; context.title = ['URL', 'Text Content']; context.keys = { text: function ({elem, index}) (index + ': ' + (elem.textContent || elem.href)), description: function ({elem}) (elem.href), thumbnail: function ({elem}) let (img = elem.querySelector('img')) (img && img.src) }; context.compare = CompletionContext.Sort.number; let process = Array.slice(context.process); context.process = [ process[0], function (item, text) (item.thumbnail ? <><img src={item.thumbnail} style={CompItemStyle}/>{text}</> : process[1].apply(this, arguments)) ]; context.completions = lolinks.map(function (it, i) ({elem: it, index: i})); } }, true ); } })(); // vim:sw=2 ts=2 et si fdm=marker: