-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.yqlhelper.js
60 lines (55 loc) · 1.5 KB
/
jquery.yqlhelper.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
/*
* jquery.yqlhelper.js
*
* YQl Helper is a jQuery plugin that provides a simple way to query YQL
* http://developer.yahoo.com/yql/
*
* Documentation: http://github.com/rgriffith/jquery.yqlhelper
* Support: https://github.com/rgriffith/jquery.yqlhelper/issues
* Bug Fixes: https://github.com/rgriffith/jquery.yqlhelper/pulls
* Author: Ryan Griffith
*
* Contribute:
*
* If YQL Helper has been beneficial to you and you'd like to give back, feel free to fork and create a
* pull request.
*
* License:
*
* This software is open source and free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/
(function ($) {
$.YQL = {
query: function (query, opts) {
opts = opts || {};
var dfr = $.Deferred(),
type = opts.type || "json",
scheme = opts.scheme || (document.location.protocol === "https:" ? "https" : "http"),
envUrl = opts.envUrl || undefined,
maxAge = opts.maxAge || 90000,
url = scheme + "://query.yahooapis.com/v1/public/yql",
data = {
format: type,
q: query,
_maxage: maxAge
};
if (envUrl === "all") {
envUrl = scheme + "://datatables.org/alltables.env";
}
if (envUrl) {
data.env = envUrl;
}
$.ajax({
url: url,
data: data,
cache: true,
dataType: type,
success: dfr.resolve,
error: dfr.reject
});
return dfr.promise();
}
};
}(jQuery));