From 1dde4bcf79af4deb1a43b2d5be1bda7dea3e45c9 Mon Sep 17 00:00:00 2001
From: anekos
Date: Wed, 4 May 2011 03:07:53 +0900
Subject: コーディングスタイルの統一
---
readitlater.js | 486 ++++++++++++++++++++++++++++-----------------------------
1 file changed, 237 insertions(+), 249 deletions(-)
(limited to 'readitlater.js')
diff --git a/readitlater.js b/readitlater.js
index 7b26984..df8f253 100644
--- a/readitlater.js
+++ b/readitlater.js
@@ -7,32 +7,32 @@
let PLUGIN_INFO =
- readitlater
- Read it Later を快適に使うためのプラグインです
- 0.1.2
- 3.0
- 3.0
- ninja.tottori
- https://github.com/vimpr/vimperator-plugins/raw/master/readitlater.js
- readitlater
+ Read it Later を快適に使うためのプラグインです
+ 0.1.2
+ 3.0
+ 3.0
+ ninja.tottori
+ https://github.com/vimpr/vimperator-plugins/raw/master/readitlater.js
+
+ ]]>
;
(function(){
- commands.addUserCommand(["ril","readitlater"], "Read It Late plugin",
- function(args){
- ReadItLater.add(args);
- },
- {
- subCommands: [
- new Command(["add","a"], "Add a page to a user's list",
- function (args) {
- ReadItLater.add(args);
- },{
+ commands.addUserCommand(["ril","readitlater"], "Read It Late plugin",
+ function(args){
+ ReadItLater.add(args);
+ },
+ {
+ subCommands: [
+ new Command(["add","a"], "Add a page to a user's list",
+ function (args) {
+ ReadItLater.add(args);
+ },{
options : [
- [["url","u"],commands.OPTION_STRING,null,
- (function(){
- return [[ buffer.URL ,"target url"]]
- })
- ],
-
- [["title","t"],commands.OPTION_STRING,null,
- (function(){
- return [[ buffer.title ,"title"]]
- })
- ],
+ [["url","u"],commands.OPTION_STRING,null,
+ (function(){
+ return [[ buffer.URL ,"target url"]]
+ })
+ ],
+
+ [["title","t"],commands.OPTION_STRING,null,
+ (function(){
+ return [[ buffer.title ,"title"]]
+ })
+ ],
],
- }
- ),
+ }
+ ),
- new Command(["get","g"], "Retrieve a user's reading list",
- function (args) {
- ReadItLater.get(args);
- },{
+ new Command(["get","g"], "Retrieve a user's reading list",
+ function (args) {
+ ReadItLater.get(args);
+ },{
options : [
- //[["num"],commands.OPTION_INT],
- //[["read","-r"],commands.OPTION_NOARG],
- //[["tags","-t"],commands.OPTION_NOARG],
- //[["myAppOnly"],commands.OPTION_NOARG],
+ //[["num"],commands.OPTION_INT],
+ //[["read","-r"],commands.OPTION_NOARG],
+ //[["tags","-t"],commands.OPTION_NOARG],
+ //[["myAppOnly"],commands.OPTION_NOARG],
],
- }
- ),
-
- new Command(["open","o"], "Open url in new tab from RIL list.",
- function (args) {
- ReadItLater.open(args);
- },{
- bang: true,
- completer : list_completer,
- }
- ),
-
- new Command(["read","r"], "Mark items as read.",
- function (args) {
- ReadItLater.send(args);
- },{
- bang: true,
- completer : list_completer,
- }
- ),
-
- new Command(["stats"], "Retrieve information about a user's list",
- function (args) {
- ReadItLater.stats();
- },{}
- ),
-
- /*
- new Command(["test"], "Return stats / current rate limit information about your API key",
- function () {
- ReadItLater.apiTest();
- },{}
- ),
- */
+ }
+ ),
+
+ new Command(["open","o"], "Open url in new tab from RIL list.",
+ function (args) {
+ ReadItLater.open(args);
+ },{
+ bang: true,
+ completer : list_completer,
+ }
+ ),
+
+ new Command(["read","r"], "Mark items as read.",
+ function (args) {
+ ReadItLater.send(args);
+ },{
+ bang: true,
+ completer : list_completer,
+ }
+ ),
+
+ new Command(["stats"], "Retrieve information about a user's list",
+ function (args) {
+ ReadItLater.stats();
+ },{}
+ ),
+
+ /*
+ new Command(["test"], "Return stats / current rate limit information about your API key",
+ function () {
+ ReadItLater.apiTest();
+ },{}
+ ),
+ */
],
- },
- true
+ },
+ true
);
let ReadItLater = {
- api_key : (liberator.globalVariables.readitlater_api_key) ? liberator.globalVariables.readitlater_api_key : "966T6ahYgb081icU10d44byL31p5bF20" ,
+ api_key : (liberator.globalVariables.readitlater_api_key) ? liberator.globalVariables.readitlater_api_key : "966T6ahYgb081icU10d44byL31p5bF20" ,
- text : function(){ // {{{
+ text : function(){ // {{{
let req = new libly.Request(
- "https://text.readitlaterlist.com/v2/text" , // url
- null, // headers
- { // options
- asynchronous:true,
- postBody:getParameterMap(
- {
- apikey : this.api_key,
- url : buffer.URL,
- mode : "less",
- images : 0,
- }
- )
- }
-
+ "https://text.readitlaterlist.com/v2/text" , // url
+ null, // headers
+ { // options
+ asynchronous:true,
+ postBody:getParameterMap(
+ {
+ apikey : this.api_key,
+ url : buffer.URL,
+ mode : "less",
+ images : 0,
+ }
+ )
+ }
+
);
req.addEventListener("onSuccess",function(data){
- e(data.responseText)
+ e(data.responseText)
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
-
+ }, // }}}
- get : function(args,silent){ // {{{
+ get : function(args,silent){ // {{{
// document => http://readitlaterlist.com/api/docs#get
let manager = Components.classes["@mozilla.org/login-manager;1"].getService(Components.interfaces.nsILoginManager);
@@ -190,92 +188,91 @@ let PLUGIN_INFO =
let store = storage.newMap("readitlater",{store:true});
let req = new libly.Request(
- "https://readitlaterlist.com/v2/get" , // url
- null, // headers
- { // options
+ "https://readitlaterlist.com/v2/get" , // url
+ null, // headers
+ { // options
asynchronous:true,
postBody:getParameterMap(
- {
- apikey : this.api_key,
- username : encodeURIComponent(logins[0].username),
- password : encodeURIComponent(logins[0].password),
- format : "json",
- count : (liberator.globalVariables.readitlater_get_count? liberator.globalVariables.readitlater_get_count : 50 ),
- //state : (args["read"]) ? "read" : "unread",
- //tags : (args["tags"]) ? 1 : 0,
- //myAppOnly : (args["myAppOnly"]) ? 1 : 0,
- }
+ {
+ apikey : this.api_key,
+ username : encodeURIComponent(logins[0].username),
+ password : encodeURIComponent(logins[0].password),
+ format : "json",
+ count : (liberator.globalVariables.readitlater_get_count? liberator.globalVariables.readitlater_get_count : 50 ),
+ //state : (args["read"]) ? "read" : "unread",
+ //tags : (args["tags"]) ? 1 : 0,
+ //myAppOnly: (args["myAppOnly"]) ? 1 : 0,
+ }
)
- }
-
+ }
+
);
req.addEventListener("onSuccess",function(data){
- let res = libly.$U.evalJson(data.responseText);
- let cnt = 0;
- for (let key in res.list){
- store.set(key,res.list[key]);
- cnt++;
- }
- if(!silent){liberator.echo("[ReadItLater] " + cnt + " found.")};
- store.save();
+ let res = libly.$U.evalJson(data.responseText);
+ let cnt = 0;
+ for (let key in res.list){
+ store.set(key,res.list[key]);
+ cnt++;
+ }
+ if(!silent){liberator.echo("[ReadItLater] " + cnt + " found.")};
+ store.save();
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
+ }, // }}}
- add : function(args){ // {{{
+ add : function(args){ // {{{
let manager = Components.classes["@mozilla.org/login-manager;1"].getService(Components.interfaces.nsILoginManager);
let logins = manager.findLogins({},"http://readitlaterlist.com","",null);
let req = new libly.Request(
- "https://readitlaterlist.com/v2/add" , // url
- null, // headers
- { // options
+ "https://readitlaterlist.com/v2/add" , // url
+ null, // headers
+ { // options
asynchronous:true,
postBody:getParameterMap(
- {
- apikey : this.api_key,
- username : encodeURIComponent(logins[0].username),
- password : encodeURIComponent(logins[0].password),
- url : encodeURIComponent((args["url"]) ? (args["url"]) : buffer.URL),
- title : encodeURIComponent((args["title"]) ? args["title"] : buffer.title),
- }
+ {
+ apikey : this.api_key,
+ username : encodeURIComponent(logins[0].username),
+ password : encodeURIComponent(logins[0].password),
+ url : encodeURIComponent((args["url"]) ? (args["url"]) : buffer.URL),
+ title : encodeURIComponent((args["title"]) ? args["title"] : buffer.title),
+ }
)
- }
-
+ }
+
);
var ref = this;
req.addEventListener("onSuccess",function(data){
- liberator.echo("[ReadItLater] OK.")
- ref.get(null,true);
+ liberator.echo("[ReadItLater] OK.")
+ ref.get(null,true);
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
- open : function(args){ //{{{
+ }, // }}}
+
+ open : function(args){ //{{{
liberator.open(args, liberator.NEW_BACKGROUND_TAB);
- if(liberator.globalVariables.readitlater_open_as_read == 1) this.send(args);
+ if(liberator.globalVariables.readitlater_open_as_read == 1) this.send(args);
- }, // }}}
+ }, // }}}
- send : function(args) { //{{{
+ send : function(args) { //{{{
// http://readitlaterlist.com/api/docs/#send
let manager = Components.classes["@mozilla.org/login-manager;1"].getService(Components.interfaces.nsILoginManager);
@@ -290,103 +287,101 @@ let PLUGIN_INFO =
};
let req = new libly.Request(
- "https://readitlaterlist.com/v2/send" , // url
- null, // headers
- { // options
- asynchronous:true,
- postBody:getParameterMap(
- {
- apikey : this.api_key,
- username : encodeURIComponent(logins[0].username),
- password : encodeURIComponent(logins[0].password),
- read : make_read_list(args),
- }
- )
- }
+ "https://readitlaterlist.com/v2/send" , // url
+ null, // headers
+ { // options
+ asynchronous:true,
+ postBody:getParameterMap(
+ {
+ apikey : this.api_key,
+ username : encodeURIComponent(logins[0].username),
+ password : encodeURIComponent(logins[0].password),
+ read : make_read_list(args),
+ }
+ )
+ }
);
-
+
var ref = this;
req.addEventListener("onSuccess",function(data){
- liberator.echo("[ReadItLater] OK.")
- ref.get(null,true);
+ liberator.echo("[ReadItLater] OK.")
+ ref.get(null,true);
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
- stats : function(){ // {{{
+ }, // }}}
+
+ stats : function(){ // {{{
let manager = Components.classes["@mozilla.org/login-manager;1"].getService(Components.interfaces.nsILoginManager);
let logins = manager.findLogins({},"http://readitlaterlist.com","",null);
let req = new libly.Request(
- "https://readitlaterlist.com/v2/stats" , // url
- null, // headers
- { // options
- asynchronous:true,
- postBody:getParameterMap(
- {
- apikey : this.api_key,
- username : encodeURIComponent(logins[0].username),
- password : encodeURIComponent(logins[0].password),
- format : "json",
- }
- )
- }
-
+ "https://readitlaterlist.com/v2/stats" , // url
+ null, // headers
+ { // options
+ asynchronous:true,
+ postBody:getParameterMap(
+ {
+ apikey : this.api_key,
+ username : encodeURIComponent(logins[0].username),
+ password : encodeURIComponent(logins[0].password),
+ format : "json",
+ }
+ )
+ }
+
);
req.addEventListener("onSuccess",function(data){
- let res = libly.$U.evalJson(data.responseText);
- liberator.echo(
+ let res = libly.$U.evalJson(data.responseText);
+ liberator.echo(
+
-
#ReadItLater Stats
+
+ ]]> +
+ #ReadItLater Stats
+
- since : {unixtimeToDate(res.user_since)}
- list : {res.count_list}
- unread : {res.count_unread}
- read : {res.count_read}
+ since : {unixtimeToDate(res.user_since)}
+ list : {res.count_list}
+ unread : {res.count_unread}
+ read : {res.count_read}
- );
+ );
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
-
+ }, // }}}
- apiTest : function(){ // {{{
+ apiTest : function(){ // {{{
let req = new libly.Request(
- "https://readitlaterlist.com/v2/api" , // url
- null, // headers
- { // options
+ "https://readitlaterlist.com/v2/api" , // url
+ null, // headers
+ { // options
asynchronous:true,
postBody:getParameterMap(
- {
- apikey : this.api_key,
- }
+ {
+ apikey : this.api_key,
+ }
)
- }
-
+ }
+
);
req.addEventListener("onSuccess",function(data){
- liberator.echo(
+ liberator.echo(
X-Limit-User-Limit : {data.transport.getResponseHeader("X-Limit-User-Limit")}
X-Limit-User-Remaining : {data.transport.getResponseHeader("X-Limit-User-Remaining")}
@@ -394,21 +389,19 @@ let PLUGIN_INFO =
X-Limit-Key-Limit : {data.transport.getResponseHeader("X-Limit-Key-Limit")}
X-Limit-Key-Remaining : {data.transport.getResponseHeader("X-Limit-Key-Remaining")}
X-Limit-Key-Reset : {data.transport.getResponseHeader("X-Limit-Key-Reset")}
-
+
);
});
req.addEventListener("onFailure",function(data){
- liberator.echoerr(data.statusText);
- liberator.echoerr(data.responseText);
+ liberator.echoerr(data.statusText);
+ liberator.echoerr(data.responseText);
});
req.post();
-
- }, // }}}
-
+ }, // }}}
}
@@ -428,7 +421,7 @@ let PLUGIN_INFO =
context.title = ["url","title"]
context.filters = [CompletionContext.Filter.textDescription]; // titleも補完対象にする
- context.compare = void 0;
+ context.compare = void 0;
context.anchored = false;
context.completions = (function(){
let links = [];
@@ -445,31 +438,26 @@ let PLUGIN_INFO =
} //}}}
+ function unixtimeToDate(ut) { // {{{
+ var t = new Date( ut * 1000 );
+ t.setTime( t.getTime() + (60*60*1000 * 9) ); // +9は日本のタイムゾーン
+ return t;
+ } // }}}
+
+ function getParameterMap(parameters){ // {{{
+ let map = "";
+ for (let key in parameters){
+ if (map) map += "&";
+ map += key + "=" + parameters[key];
+ }
+ return map
+ } // }}}
-
-
- function unixtimeToDate(ut) {
- var t = new Date( ut * 1000 );
- t.setTime( t.getTime() + (60*60*1000 * 9) ); // +9は日本のタイムゾーン
- return t;
- }
-
- function getParameterMap(parameters){
- let map = "";
- for (let key in parameters){
- if (map) map += "&";
- map += key + "=" + parameters[key];
- }
- return map
- }
-
- // for debug
- function e(v,c){
- if(c) util.copyToClipboard(v);
- liberator.log(v,-1)
- }
+ // for debug {{{
+ function e(v,c){
+ if(c) util.copyToClipboard(v);
+ liberator.log(v,-1)
+ } // }}}
})();
-
-
--
cgit v1.2.3