forked from alassek/jquery.rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.rest.js
179 lines (155 loc) · 6.09 KB
/
jquery.rest.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* Copyright (c) 2011 Lyconic, LLC.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
(function($){
var _ajax = $.ajax;
// Will only use method override if $.restSetup.useMethodOverride is set to true
// Change the values of this global object if your method parameter is different.
$.restSetup = {
methodParam: '_method',
useMethodOverride: false,
verbs: {
create: 'POST',
update: 'PUT',
destroy: 'DELETE'
}
};
// collect csrf param & token from meta tags if they haven't already been set
$(document).ready(function(){
$.restSetup.csrfParam = $.restSetup.csrfParam || $('meta[name=csrf-param]').attr('content');
$.restSetup.csrfToken = $.restSetup.csrfToken || $('meta[name=csrf-token]').attr('content');
});
function collect_options (url, data, success, error) {
var options = { dataType: 'json' };
if (arguments.length === 1 && typeof arguments[0] !== "string") {
options = $.extend(options, url);
if ("url" in options)
if ("data" in options) {
options.url = fill_url(options.url, options.data);
}
} else {
// shift arguments if data argument was omitted
if ($.isFunction(data)) {
error = success;
success = data;
data = null;
}
url = fill_url(url, data);
options = $.extend(options, {
url: url,
data: data,
success: function (data, text, xhr) {
if (success) success.call(options.context || options, data, get_headers(xhr), xhr);
},
error: function (xhr) {
if (error) error.call(options.context || options, xhr, get_headers(xhr));
}
});
}
return options;
}
function fill_url (url, data) {
var key, u, val;
for (key in data) {
val = data[key];
u = url.replace('{'+key+'}', val);
if (u != url) {
url = u;
delete data[key];
}
}
return url;
}
function get_headers(xhr) {
// trim the headers because IE likes to include the blank line between the headers
// and the content as part of the headers
var headers = {}, stringHeaders = $.trim(xhr.getAllResponseHeaders());
$.each(stringHeaders.split("\n"), function (i, header) {
if (header.length) {
var matches = header.match(/^([\w\-]+):(.*)/);
if (matches.length === 3) headers[ matches[1] ] = $.trim(matches[2]);
}
});
xhr.responseHeaders = headers;
return headers;
}
$.ajax = function (settings) {
var csrfParam = new RegExp("(" + $.restSetup.csrfParam + "=)", "i"),
userBeforeSend = settings.beforeSend,
methodOverride;
if (typeof settings.data !== "string")
if (settings.data != null) {
if(settings.dataType == 'json'){
for(field in settings.data){
settings.data = JSON.stringify(settings.data);
break;
}
} else {
settings.data = $.param(settings.data);
}
}
settings.data = settings.data || "";
if ($.restSetup.csrfParam && $.restSetup.csrfToken)
if (!/^(get)$/i.test(settings.type))
if (!csrfParam.test(settings.data)) {
settings.data += (settings.data ? "&" : "") + $.restSetup.csrfParam + '=' + $.restSetup.csrfToken;
}
if ($.restSetup.useMethodOverride)
if (!/^(get|post)$/i.test(settings.type)) {
methodOverride = settings.type.toUpperCase();
settings.data += (settings.data ? "&" : "") + $.restSetup.methodParam + '=' + settings.type.toLowerCase();
settings.type = "POST";
}
settings.beforeSend = function (xhr, ajaxSettings) {
var context = settings.context || settings,
contentType = settings.contentType,
resourceContentType = /.*\.(json|xml)/i.exec(settings.url);
if (!contentType) contentType = $.restSetup.contentType;
if (!contentType && resourceContentType) {
contentType = 'application/' + resourceContentType[1].toLowerCase();
}
if (settings.contentType != contentType) $.extend(settings, { contentType: contentType });
if ( methodOverride ) xhr.setRequestHeader('X-HTTP-Method-Override', methodOverride);
if ( $.isFunction(userBeforeSend) ) userBeforeSend.call(context, xhr, ajaxSettings);
}
return _ajax.call(this, settings);
}
$.read = function () {
var options = collect_options.apply(this, arguments);
options.type = 'GET';
return $.ajax(options);
}
$.create = function () {
var options = collect_options.apply(this, arguments);
options.type = $.restSetup.verbs.create;
return $.ajax(options);
}
$.update = function () {
var options = collect_options.apply(this, arguments);
options.type = $.restSetup.verbs.update;
return $.ajax(options);
}
$.destroy = function () {
var options = collect_options.apply(this, arguments);
options.type = $.restSetup.verbs.destroy;
return $.ajax(options);
}
})(jQuery);