2 * (C) Copyright 2004-2007 Shawn Betts
3 * (C) Copyright 2007-2008 John J. Foerch
4 * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
6 * Use, modification, and distribution are subject to the terms specified in the
12 define_keywords("$completer", "$description", "$argument", "$alternative",
14 function define_webjump (key, handler) {
16 var argument = arguments.$argument;
17 let alternative = arguments.$alternative;
18 var post_data = arguments.$post_data;
20 // handler may be a function or a string. An alternative url may
21 // be passed using the $alternative keyword; it is used in place
22 // of the handler when no arguments are supplied by the user when
23 // invoking the webjump (see get_webjump). For string webjumps
24 // that contain %s and for which no alternative is provided, an
25 // alternative is autogenerated by trimming the path from the url.
26 // A webjump can thus function both as a way to invoke a search
29 // When the handler is a string and post_data is given the webjump
30 // will result in a POST. A '%s' element in post_data will be
31 // replaced by the webjump argument and the alternative is the
32 // same as the handler (but as a GET).
34 // The argument property may be false (no arguments will be
35 // accepted for the webjump), true (arguments are required for the
36 // webjump) or 'optional' (arguments are accepted but not
37 // required). If the property is not specified, a sensible default
38 // is chosen depending on the type of the handler and whether an
39 // alternative is specified. If the property is false, then
40 // completing on the name of the webjump in the minibuffer will
41 // not result in a space being appended.
43 if (typeof(handler) == "function") {
44 if (argument == null && alternative == null)
46 } else if (typeof(handler) == "string") {
47 if (post_data && alternative == null)
48 alternative = handler;
49 else if (handler.indexOf('%s') == -1)
51 else if (alternative == null)
52 alternative = url_path_trim(handler);
54 if (alternative && argument == null)
55 argument = 'optional';
57 function make_string_handler (template) {
58 var b = template.indexOf('%s');
59 return function (arg) {
61 // Just return the same string if it doesn't contain a %s
64 return template.substr(0,b) + encodeURIComponent(arg) + template.substring(a);
68 function make_post_handler (uri, post_data) {
69 return function (arg) {
72 post_data: make_post_data(post_data.map(function (pair) {
74 return [pair[0], arg];
82 if (typeof(handler) == "string") {
84 handler = make_post_handler(handler, post_data);
86 handler = make_string_handler(handler);
89 webjumps[key] = { key: key,
91 completer: arguments.$completer,
92 description: arguments.$description,
94 alternative: alternative};
97 function define_delicious_webjumps (username) {
98 define_webjump("delicious", "http://www.delicious.com/" + username + "/%s",
99 $alternative = "http://www.delicious.com/" + username);
100 define_webjump("adelicious", "javascript:location.href='http://www.delicious.com/save"+
101 "?v=2&url='+encodeURIComponent(location.href)+'&title='+"+
102 "encodeURIComponent(document.title);");
103 define_webjump("sdelicious", "http://www.delicious.com/search?p=%s&u="+username+
104 "&chk=&context=userposts&fr=del_icio_us&lc=1");
105 define_webjump("sadelicious", "http://www.delicious.com/search/all?search=%s");
108 add_delicious_webjumps = define_delicious_webjumps;
110 function define_lastfm_webjumps (username) {
111 if (! username) username = "";
112 define_webjump("lastfm", "http://www.last.fm/user/"+username);
113 define_webjump("lastfm-user", "http://www.last.fm/user/%s");
114 define_webjump("lastfm-music", "http://www.last.fm/search?m=all&q=%s");
115 define_webjump("lastfm-group", "http://www.last.fm/users/groups?s_bio=%s");
116 define_webjump("lastfm-tag", "http://www.last.fm/search?m=tag&q=%s");
117 define_webjump("lastfm-label", "http://www.last.fm/search?m=label&q=%s");
118 define_webjump("lastfm-event", "http://www.last.fm/events?by=artists&q=%s");
121 add_lastfm_webjumps = define_lastfm_webjumps;
123 function clear_webjumps () {
127 // Some built in web jumps
128 function define_default_webjumps () {
129 define_webjump("conkerorwiki",
130 "http://conkeror.org/?action=fullsearch&context=60&value=%s&fullsearch=Text");
131 define_webjump("lucky", "http://www.google.com/search?q=%s&btnI=I'm Feeling Lucky");
132 define_webjump("maps", "http://maps.google.com/?q=%s");
133 define_webjump("scholar", "http://scholar.google.com/scholar?q=%s");
134 define_webjump("slang", "http://www.urbandictionary.com/define.php?term=%s");
135 define_webjump("dictionary", "http://dictionary.reference.com/search?q=%s");
136 define_webjump("image", "http://images.google.com/images?q=%s");
137 define_webjump("clhs",
138 "http://www.xach.com/clhs?q=%s",
139 $alternative = "http://www.lispworks.com/documentation/HyperSpec/Front/index.htm");
140 define_webjump("cliki", "http://www.cliki.net/admin/search?words=%s");
141 define_webjump("ratpoisonwiki", "http://ratpoison.antidesktop.net/?search=%s");
142 define_webjump("stumpwmwiki", "http://stumpwm.antidesktop.net/wiki?search=%s");
143 define_webjump("savannah",
144 "http://savannah.gnu.org/search/?words=%s&type_of_search=soft&Search=Search&exact=1");
145 define_webjump("sourceforge", "http://sourceforge.net/search/?words=%s");
146 define_webjump("freshmeat", "http://freshmeat.net/search/?q=%s");
147 define_webjump("slashdot", "http://slashdot.org/search.pl?query=%s");
148 define_webjump("kuro5hin", "http://www.kuro5hin.org/?op=search&string=%s");
151 define_variable("webjump_partial_match", true,
152 "When entering a url, if the input is not a webjump, " +
153 "but would uniquely complete to a webjump, then accept " +
154 "that webjump only if this is true.");
156 function match_webjump (str) {
157 var sp = str.indexOf(' ');
164 key = str.substring(0, sp);
165 arg = str.substring(sp + 1);
166 if (/^\s*$/.test(arg))
170 // Look for an exact match
171 var match = webjumps[key];
173 // Look for a partial match
174 if (!match && webjump_partial_match) {
175 for (let [k,v] in Iterator(webjumps)) {
176 if (String(k).substring(0, key.length) == key) {
178 // key is not a unique prefix, as there are multiple partial matches
187 if (arg == null && match.argument == true)
188 throw interactive_error('Webjump '+key+' requires an argument.');
189 return [match, key, arg];
195 function get_webjump (value) {
196 var res = match_webjump(value);
199 let [match,key,arg] = res;
200 if (arg == null && match.alternative)
201 return match.alternative;
202 return match.handler(arg);
205 function get_url_or_webjump (input) {
206 var url = get_webjump(input);
213 define_default_webjumps();
215 function webjump_completer () {
216 let base_completer = prefix_completer(
217 $completions = [ v for ([k,v] in Iterator(webjumps)) ],
218 $get_string = function (x) { return x.key + (x.argument ? " " : ""); },
219 $get_description = function (x) { return x.description || ""; });
220 return function (input, pos, conservative) {
221 let str = input.substring(0,pos);
223 try { res = match_webjump(str); }
224 catch (e) { res = null; }
226 let [match, key, arg] = res;
227 if (arg != null) { // If there is no argument yet, we use the base completer
228 if (match.completer) {
229 let c = yield match.completer.call(null, arg, pos - key.length - 1, conservative);
230 yield co_return(nest_completions(c, match.key + " "));
232 yield co_return(null);
235 yield co_return(base_completer(input, pos, conservative));