-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.copyLink.js
160 lines (137 loc) · 3.85 KB
/
action.copyLink.js
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// ----[Usage]--------------------------------------------------
// click : copy link
// shift + click : copy links of all tabs
// right click : remove format
(function(){
var formats;
var NAME = 'Copy Link';
var DEFAULT_FORMATS = [
{name : 'Plain Text', format : '%title%\n%url%'},
{name : 'Forum Code', format : '[url=%url%]%title%[/url]'},
{name : 'HTML', format : '<a href="%url%">%title%</a>'},
{name : 'Markdown', format : '[%title%](%url%)'},
{name : 'Hatena', format : '[%url%:title=%title%]'},
{name : 'qwik', format : '[[%title%|%url%]]'},
];
var children = [
{name : '----'},
{
name : 'Add format',
execute : function(){
var res = input({
'Format definition' : 'Name,%title% %url%'
}, NAME + ' - ' + this.name);
if(!res)
return;
res = values(res)[0].match('(.*?),(.*)').slice(1);
formats.push({name:res[0], format:res[1]});
saveFormats();
}
}
];
Tombloo.Service.actions.register({
name : NAME,
type : 'context',
icon : 'chrome://tombloo/skin/copy.gif',
DEFAULT_FORMATS : DEFAULT_FORMATS,
children : children,
check : function(ctx){
this.name = NAME + ' - ' + ((ctx.onLink)? 'link' : 'page');
return true;
},
}, '----');
loadFormats();
function saveFormats(){
setPref('action.copyLink.formats', uneval(formats));
updateMenus();
}
function loadFormats(){
formats = getPref('action.copyLink.formats');
formats = (formats)?
eval(formats) : DEFAULT_FORMATS;
updateMenus();
}
function extractLink(ctx){
return Tombloo.Service.extractors.extract(ctx, Tombloo.Service.check(ctx).filter(function(ext){
return /^Link/.test(ext.name);
})[0]);
}
function copyLink(format, links){
links = links.map(function(link){
return format.format.
replace('%url%', link.url).
replace('%title%', link.title);
})
var text = joinText(links, format.format.contains('\n')? '\n\n' : '\n');
if(links.length > 1)
text += '\n';
copyString(text);
}
function execute(ctx, format){
// 右クリック
if(ctx.originalEvent.button != 0){
if(input('Remove "' + format.name + '" format?', NAME + ' - Remove format')){
formats.splice(formats.indexOf(format), 1);
saveFormats();
}
return;
}
var selection = getSelectionContents(ctx.window);
if(selection && selection.querySelector('a')){
copyLink(format, map(function(link){
return {
url : link.href,
title : link.textContent,
};
}, selection.querySelectorAll('a')));
return
}
var windows;
if(ctx.originalEvent.shiftKey && !ctx.onLink){
// 全タブを対象とする
windows = getMostRecentWindow().getBrowser().browsers.map(itemgetter('contentWindow')).map(wrappedObject);
} else {
windows = [ctx.window];
}
gatherResults(windows.map(function(win){
try{
win.location.host;
}catch(e){
// about:config などのページを避ける
return succeed();
}
// 全タブの場合はコンテキストを作成する
var doc = win.document;
var c = (windows.length == 1)? ctx : update({
document : doc,
window : win,
title : doc.title,
selection : '',
target : doc.documentElement,
}, win.location);
// canonicalやAmazonを処理するためextractorを使う
return extractLink(c);
})).addCallback(function(ress){
// 取得されなかったリンクは抜かす
copyLink(format, ress.filter(operator.truth).map(function(ps){
return {
url : ps.itemUrl,
title : ps.item,
};
}));
});
}
function updateMenus(){
// 初期メニュー以外をクリア
children.splice(0, children.length - 2);
formats.forEach(function(format){
// 定義順に並べて追加する
children.splice(-2, 0, {
name : format.name,
execute : function(ctx){
execute(ctx, format);
}
});
});
}
})()