let INFO =
teramako
BSD
Example: list executing Jetpack feature
:echo jetpack.contexts.map(function(ctx) ctx.feed.title);
Example: access to the sandbox of the feature
:echo jetpack.contexts[0].unsafeSandbox
Example: select and open slidebar
:js jetpack.slideBar.select("featureTitle")
Example: toggle slidebar
:js jetpack.slideBar.toggle()
Example: install a feature form local file
:js jetpack.install("~/var/jetpackScripts/test.js")
Example: refresh the feature
:js jetpack.refresh("test")
Example: uninstall the feature
:js jetpack.uninstall("test")
Example: reinstall the feature
:js jetpack.reinstall("test")
Example: purge the feature
:js jetpack.purge("test")
;
let EXT = {};
liberator.modules.jetpack = (function(){
let id = "jetpack@labs.mozilla.com";
if (!Application.extensions.has(id) || !Application.extensions.get(id).enabled){
liberator.echoerr("Jetpack is not enable or installed");
return {};
}
Cu.import("resource://jetpack/modules/init.js", EXT);
let self = {
get jWin() EXT.get("chrome://jetpack/content/index.html"),
get JetpackRuntime() this.jWin.JetpackRuntime,
get contexts() this.jWin.JetpackRuntime.contexts,
get feedManager() this.jWin.JetpackRuntime.FeedPlugin.FeedManager,
get slideBar(){
let slideBar = window.slideBar;
slideBar.__proto__ = slideBarProto;
return slideBar;
},
getContextByTitle: function jetpack_getContextByTitle(title){
let contexts = this.contexts.filter(function(ctx){
return ctx.feed.title == title;
});
liberator.assert(contexts.length > 0, "no jetpack features");
return contexts[0];
},
getFeedByTitle: function jetpack_getFeedByTitle(title){
return getFeedByTitle(title, FEED_FLAG.ALL);
},
install: function jetpack_install(path){
let file = io.File(path);
let uri = util.createURI(file.path);
let name = file.leafName.replace(/\..*/, "").replace(/-([a-z])/g, function (m, n1) n1.toUpperCase());
this.feedManager.addSubscribedFeed({
canAutoUpdate: false,
sourceCode: file.read("UTF-8"),
sourceUrl: uri.spec,
title: name,
type: "jetpack",
url: uri.spec
});
},
refresh: function jetpack_refresh(title){
let feed = getFeedByTitle(title, FEED_FLAG.SUBSCRIBED | FEED_FLAG.NOT_BUILTIN);
this.JetpackRuntime.forceFeedUpdate(feed);
},
uninstall: function jetpack_uninstall(title){
let feed = getFeedByTitle(title, FEED_FLAG.SUBSCRIBED | FEED_FLAG.NOT_BUILTIN);
feed.remove();
},
reinstall: function jetpack_reinstall(title){
let feed = getFeedByTitle(title, FEED_FLAG.UNSUBSCRIBED);
feed.unremove();
},
purge: function jetpack_purge(title){
let feed = getFeedByTitle(title, FEED_FLAG.ALL | FEED_FLAG.NOT_BUILTIN);
if (feed.isSubscribed)
feed.remove();
feed.purge();
},
};
let slideBarProto = {
select: function jetpack_slideBar_select(title){
let features = this.features.filter(function(f){
return f.context.feed.title == title;
});
liberator.assert(features.length > 0, "no such jetpack feature");
this.selectFeature(features[0]);
}
};
const FEED_FLAG= {
NOT_BUILTIN: 1 << 0,
SUBSCRIBED: 1 << 1,
UNSUBSCRIBED: 1 << 2,
ALL: 6
};
function getFeedByTitle(title, flag){
let feeds = [];
if (flag >= FEED_FLAG.ALL)
feeds = getAllFeeds();
else if (flag & FEED_FLAG.UNSUBSCRIBED)
feeds = getUnsubscribedFeeds();
else if (flag & FEED_FLAG.SUBSCRIBED)
feeds = getSubscribedFeeds(true);
if (flag & FEED_FLAG.NOT_BUILTIN)
feeds = feeds.filter(function(f) !f.isBuiltIn);
feeds = feeds.filter(function(f) f.title == title);
liberator.assert(feeds.length > 0, "not such jetpack feature");
return feeds[0];
}
function getAllFeeds(includeBuiltin){
return [].concat(getSubscribedFeeds(includeBuiltin), getUnsubscribedFeeds());
}
function getSubscribedFeeds(includeBuiltin){
let feeds = self.feedManager.getSubscribedFeeds();
if (includeBuiltin)
return feeds;
else
return feeds.filter(function(f) !f.isBuiltIn);
}
function getUnsubscribedFeeds(){
return self.feedManager.getUnsubscribedFeeds();
}
JavaScript.setCompleter([self.getContextByTitle],
[function(){ return getSubscribedFeeds(true).map(function(f) [f.title, f.uri.spec]); }]);
JavaScript.setCompleter([self.refresh, self.uninstall],
[function(){ return getSubscribedFeeds(false).map(function(f) [f.title, f.uri.spec]); }]);
JavaScript.setCompleter([self.purge],
[function(){ return getAllFeeds(false).map(function(f) [f.title, f.uri.spec]); }]);
JavaScript.setCompleter([self.getFeedByTitle],
[function(){ return getAllFeeds(true).map(function(f) [f.title, f.uri.spec]); }]);
JavaScript.setCompleter([self.reinstall],
[function(){ return getUnsubscribedFeeds().map(function(f) [f.title, f.uri.spec]); }]);
JavaScript.setCompleter([self.install],
[function (context, obj, args) {
context.quote[2] = "";
completion.file(context, true);
}]);
JavaScript.setCompleter([slideBarProto.select],
[function(){ return self.slideBar.features.map(function(f) [f.context.feed.title, f.context.feed.uri.spec]); }]);
return self;
})();
// vim: sw=2 ts=2 et:
='n84' href='#n84'>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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|