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];
            }
        }
    );
})();
pan> item.data) .sort(function(a, b) b.url.length - a.url.length); // sort url.length desc this.initialized = true; }) ); // for debug /* this.initialized = true; this.siteinfo = [ { url: '^https?://(?:192\\.168(?:\\.\\d+){2}|localhost)(?::\\d+)?/', nextLink: 'id("next")', pageElement: '//*' } ]; */ commands.addUserCommand(['nextlink'], 'map ]] by AutoPagerize XPath.', $U.bind(this, function(args) { this.handler(args); }), null, true ); var loadEvent = autocommands['DOMLoad'] || 'PageLoad'; // for 1.2 liberator.execute(':autocmd ' + (this.is2_0later ? 'DOMLoad' : 'PageLoad') + ' .* :nextlink onLoad'); liberator.execute(':autocmd LocationChange .* :nextlink onLocationChange'); }, handler: function(args) { event = args.string || args; this[event](buffer.URL); }, onLoad: function(url) { if (!this.initialized) return; if (this.cache[url] && this.cache[url].hasOwnProperty('xpath')) { this.cache[url].doc = window.content.document; this.onLocationChange(url, true); return; } for (let i = 0, len = this.siteinfo.length; i < len; i++) { if (url.match(this.siteinfo[i].url) && this.siteinfo[i].url != '^https?://.') { window.content.addEventListener('unload', $U.bind(this, function() { this.cache[url] = null; }), false); this.setCache(url, ['doc', 'xpath', 'siteinfo'], [window.content.document, this.siteinfo[i].nextLink, this.siteinfo[i]] ); this.onLocationChange(url, true); return; } } this.setCache(url, ['doc', 'xpath', 'prev', 'next'], [null, null, null, null]); }, onLocationChange: function(url, isCallerLoaded) { if (!this.initialized || !this.cache[url] || !this.cache[url].hasOwnProperty('xpath')) return; if (this.cache[url]['xpath'] == null) { this.restorOrginalMap(); return; } this.pager.onLocationChange(this, url, isCallerLoaded); this.customizeMap(this, url); this.isCurOriginalMap = false; }, customizeMap: function(context, url) { var cache = this.cache[url]; var prev = cache.prev; var next = cache.next; if (!prev) this.removeMap('[['); if (!next) this.removeMap(']]'); this.pager.customizeMap(context, url, prev, next); }, restorOrginalMap: function() { if (this.isCurOriginalMap) return; this.removeMap('[['); this.removeMap(']]'); this.isCurOriginalMap = true; }, setCache: function(key, subKeys, values) { if (!this.cache[key]) this.cache[key] = {}; values = [].concat(values); [].concat(subKeys).forEach($U.bind(this, function(subKey, i) { this.cache[key][subKey] = values[i]; })); }, removeMap: function(cmd) { try { if (mappings.hasMap(this.browserModes, cmd)) { mappings.remove(this.browserModes, cmd); } return true; } catch (e) { return false; } } };//}}} var Autopager = function() {};//{{{ Autopager.prototype = { onLocationChange: function(context, url, isCallerLoaded) { var cache = context.cache[url]; var doc = cache.doc; var elems = cache.next; var elem; if (isCallerLoaded) { let insertPoint, lastPageElement; if (cache.insertBefore) insertPoint = $U.getNodesFromXPath(cache.siteinfo.insertBefore, doc); if (!insertPoint) lastPageElement = $U.getNodesFromXPath(cache.siteinfo.pageElement, doc).pop(); if (lastPageElement) insertPoint = lastPageElement.nextSibling || lastPageElement.parentNode.appendChild(doc.createTextNode(' ')); if (context.is2_0later) { let css = $U.xmlToDom(pageNaviCss, doc); let node = doc.importNode(css, true); doc.body.insertBefore(node, doc.body.firstChild); //doc.body.appendChild(css); } $U.getNodesFromXPath(cache.xpath, doc, function(item) elem = item, this); context.setCache(url, ['prev', 'next', 'curPage', 'insertPoint', 'terminate', 'lastReqUrl', 'loadedURLs', 'mark'], [[], [elem], 1, insertPoint, 0, null, {}, []] ); cache.loadedURLs[url] = true; } }, customizeMap: function(context, url, prev, next) { var cache = context.cache[url]; var doc = cache.doc; mappings.addUserMap(context.browserModes, ['[['], 'customize by nextlink.js', $U.bind(this, function(count) { if (cache.curPage == 1) { return; } else if (--cache.curPage == 1) { window.content.scrollTo(0, 0); } else { this.focusPagenavi(context, url, cache.curPage); } }), { flags: Mappings.flags.COUNT }); mappings.addUserMap(context.browserModes, [']]'], 'customize by nextlink.js', $U.bind(this, function(count) { var reqUrl, lastReqUrl; reqUrl = $U.pathToURL(cache.next[cache.curPage - 1], url, doc); lastReqUrl = cache.lastReqUrl; if (cache.isLoading) { logger.echo('loading now...'); return; } if (!reqUrl || cache.curPage == cache.terminate) { logger.echo('end of pages.'); return; } if (cache.loadedURLs[reqUrl]) { this.focusPagenavi(context, url, ++cache.curPage); return; } context.setCache(url, ['lastReqUrl', 'isLoading'], [reqUrl, true]); var req = new libly.Request( reqUrl, null, { asynchronous: true, encoding: doc.characterSet, context: context, url: url } ); req.addEventListener('onSuccess', $U.bind(this, this.onSuccess)); req.addEventListener('onFailure', $U.bind(this, this.onFailure)); req.addEventListener('onException', $U.bind(this, this.onFailure)); req.get(); }), { flags: Mappings.flags.COUNT } ); }, onSuccess: function(res) { var context = res.req.options.context; var url = res.req.options.url; var cache = context.cache[url]; var doc = cache.doc; var page = res.getHTMLDocument(cache.siteinfo.pageElement); var htmlDoc = res.doc; var prev = cache.next[cache.curPage]; var next = $U.getNodesFromXPath(cache.xpath, htmlDoc); cache.isLoading = false; cache.loadedURLs[res.req.url] = true; if (!page || page.length < 1) page = res.getHTMLDocument('//*[contains(@class, "autopagerize_page_element")]'); if (!page || page.length < 1) { context.setCache(url, 'terminate', cache.curPage); return; } cache.curPage++; if (next && next.length) { cache.prev.push(prev); cache.next.push(next[0]); } else { context.setCache(url, 'terminate', cache.curPage); } this.addPage(context, htmlDoc, url, page, res.req.url); this.focusPagenavi(context, url, cache.curPage); }, addPage: function(context, doc, url, page, reqUrl) { var cache = context.cache[url]; var HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml'; //var hr = doc.createElementNS(HTML_NAMESPACE, 'hr'); var p = doc.createElementNS(HTML_NAMESPACE, 'p'); var tagName; if (page[0] && page[0].tagName) tagName = page[0].tagName.toLowerCase(); if (tagName == 'tr') { let insertParent = cache.insertPoint.parentNode; let colNodes = getElementsByXPath('child::tr[1]/child::*[self::td or self::th]', insertParent); let colums = 0; for (let i = 0, l = colNodes.length; i < l; i++) { let col = colNodes[i].getAttribute('colspan'); colums += parseInt(col, 10) || 1; } let td = doc.createElement('td'); // td.appendChild(hr); td.appendChild(p); let tr = doc.createElement('tr'); td.setAttribute('colspan', colums); tr.appendChild(td); insertParent.insertBefore(tr, cache.insertPoint); } else if (tagName == 'li') { let li = doc.createElementNS(HTML_NAMESPACE, 'li'); cache.insertPoint.parentNode.insertBefore(li, cache.insertPoint); li.appendChild(p); } else { //cache.insertPoint.parentNode.insertBefore(hr, cache.insertPoint); cache.insertPoint.parentNode.insertBefore(p, cache.insertPoint); } p.id = 'vimperator-nextlink-' + cache.curPage; p.innerHTML = 'page: <a href="' + reqUrl + '">' + cache.curPage + '</a>'; p.className = 'vimperator-nextlink-page'; cache.mark.push(p); return page.map(function(elem) { var pe = doc.importNode(elem, true); cache.insertPoint.parentNode.insertBefore(pe, cache.insertPoint); return pe; }); }, onFailure: function(res) { logger.log('onFailure'); var context = res.req.options.context; var url = res.req.options.url; var cache = context.cache[url]; cache.isLoading = false; logger.echoerr('nextlink: loading failed. ' + '[' + res.status + ']' + res.statusText + ' > ' + res.req.url); res.req.options.context.setCache(res.req.options.url, 'terminate', cache.curPage); }, focusPagenavi: function(context, url, page) { var elem, p; try { elem = context.cache[url].mark[page - 2]; p = $U.getElementPosition(elem); window.content.scrollTo(0, p.top); } catch (e) { logger.log('focusPagenavi: err ' + page + ' ' + e); } } };//}}} var FollowLink = function() {};//{{{ FollowLink.prototype = { onLocationChange: function(context, url, isCallerLoaded) { var cache = context.cache[url]; var doc = cache.doc; var elem; //var matches = buffer.evaluateXPath(this.cache[url]); //for each (let match in matches) elem = match; $U.getNodesFromXPath(cache.xpath, doc, function(item) elem = item, this); var nextURL = $U.pathToURL(elem, doc); var xpath = ['a', 'link'].map(function(e) '//' + e + '[translate(normalize-space(@rel), "PREV", "prev")="prev"]') .join(' | '); var prev = $U.getNodesFromXPath(xpath, doc); if (prev.length) context.setCache(url, 'prev', prev[0]); context.setCache(nextURL, 'prev', url); context.setCache(url, 'next', elem); }, customizeMap: function(context, url, prev, next) { var cache = context.cache[url]; var doc = cache.doc; if (prev) mappings.addUserMap(context.browserModes, ['[['], 'customize by nextlink.js', function(count) { if (prev.href) { buffer.followLink(prev, liberator.CURRENT_TAB); } else { liberator.open(prev, liberator.CURRENT_TAB); } }, { flags: Mappings.flags.COUNT }); if (next) mappings.addUserMap(context.browserModes, [']]'], 'customize by nextlink.js', function(count) { buffer.followLink(next, liberator.CURRENT_TAB); }, { flags: Mappings.flags.COUNT }); } };//}}} var instance = new NextLink((isFollowLink ? new FollowLink() : new Autopager())); return instance; })(); // vim: set fdm=marker sw=4 ts=4 sts=0 et: