-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsumer.js
114 lines (107 loc) · 4.05 KB
/
consumer.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
var consumer = {};
consumer.example =
{ consumerKey : "myKey"
, consumerSecret: "mySecret"
, serviceProvider:
{ signatureMethod : "HMAC-SHA1"
, requestTokenURL : "http://localhost/oauth-provider/request_token"
, userAuthorizationURL: "http://localhost/oauth-provider/authorize"
, accessTokenURL : "http://localhost/oauth-provider/access_token"
, echoURL : "http://localhost/oauth-provider/echo"
}
};
consumer.madgex =
{ consumerKey : "key"
, consumerSecret: "secret"
, accessToken: "requestkey"
, accessTokenSecret: "requestsecret"
, echo: "accesskey"
, echoSecret: "accesssecret"
, serviceProvider:
{ signatureMethod : "HMAC-SHA1"
, requestTokenURL : "http://echo.lab.madgex.com/request-token.ashx"
, accessTokenURL : "http://echo.lab.madgex.com/access-token.ashx"
, echoURL : "http://echo.lab.madgex.com/echo.ashx"
}
};
consumer.mediamatic =
{ consumerKey : "e388e4f4d6f4cc10ff6dc0fd1637da370478e49e2"
, consumerSecret: "0b062293b6e29ec91a23b2002abf88e9"
, serviceProvider:
{ signatureMethod : "HMAC-SHA1"
, requestTokenURL : "http://oauth-sandbox.mediamatic.nl/module/OAuth/request_token"
, userAuthorizationURL: "http://oauth-sandbox.mediamatic.nl/module/OAuth/authorize"
, accessTokenURL : "http://oauth-sandbox.mediamatic.nl/module/OAuth/access_token"
, echoURL : "http://oauth-sandbox.mediamatic.nl/services/rest/?method=anymeta.test.echo"
}
};
consumer.termie =
{ consumerKey : "key"
, consumerSecret: "secret"
, accessToken: "requestkey"
, accessTokenSecret: "requestsecret"
, echo: "accesskey"
, echoSecret: "accesssecret"
, serviceProvider:
{ signatureMethod : "HMAC-SHA1"
, requestTokenURL : "http://term.ie/oauth/example/request_token.php"
, userAuthorizationURL: "accessToken.html" // a stub
, accessTokenURL : "http://term.ie/oauth/example/access_token.php"
, echoURL : "http://term.ie/oauth/example/echo_api.php"
}
};
consumer.initializeForm =
function initializeForm(form, etc, usage) {
var selector = etc.elements[0];
var selection = selector.options[selector.selectedIndex].value;
var selected = consumer[selection];
if (selected != null) {
consumer.setInputs(etc, { URL : selected.serviceProvider[usage + "URL"]
, consumerSecret: selected.consumerSecret
, tokenSecret : selected[usage + "Secret"]
});
consumer.setInputs(form, { oauth_signature_method: selected.serviceProvider.signatureMethod
, oauth_consumer_key : selected.consumerKey
, oauth_token : selected[usage]
});
}
return true;
};
consumer.setInputs =
function setInputs(form, props) {
for (p in props) {
if (form[p] != null && props[p] != null) {
form[p].value = props[p];
}
}
}
consumer.signForm =
function signForm(form, etc) {
form.action = etc.URL.value;
var accessor = { consumerSecret: etc.consumerSecret.value
, tokenSecret : etc.tokenSecret.value};
var message = { action: form.action
, method: form.method
, parameters: []
};
for (var e = 0; e < form.elements.length; ++e) {
var input = form.elements[e];
if (input.name != null && input.name != "" && input.value != null
&& (!(input.type == "checkbox" || input.type == "radio") || input.checked))
{
message.parameters.push([input.name, input.value]);
}
}
OAuth.setTimestampAndNonce(message);
OAuth.SignatureMethod.sign(message, accessor);
//alert(outline("message", message));
var parameterMap = OAuth.getParameterMap(message.parameters);
for (var p in parameterMap) {
if (p.substring(0, 6) == "oauth_"
&& form[p] != null && form[p].name != null && form[p].name != "")
{
form[p].value = parameterMap[p];
}
}
return true;
};