-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappmill:clerk-server.js
50 lines (48 loc) · 1.19 KB
/
appmill:clerk-server.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
// On the server
Meteor.methods({
clerkStore: function (data) {
// Check argument types
check(data, Object);
/*
if ( check for error ) {
throw new Meteor.Error("error string",
"error description");
}
*/
// ... do stuff ...
try {
result = HTTP.post(Clerk.clerkAPI_URL, {timeout: 1000, data: data});
}
catch (e) {
throw new Meteor.Error("clerk-store","Failed to store to clerk");
}
//console.log("called clerk");
var key = result.data.key;
console.log(key);
return key;
},
clerkFetch: function (key) {
// Check argument types
check(key, String);
var clerkBucket = {};
var httpResult;
try {
var url = Clerk.clerkAPI_URL+"?key="+key;
//console.log("url " + url );
httpResult = HTTP.call("GET",url,{timeout:1000});
}
catch (e) {
throw new Meteor.Error("clerk-fetch","Failed to fetch from clerk");
}
/*
, function(error, result) {
if ( cb ) cb(error, result);
var clerkBucket = result;
console.log(clerkBucket);
});
*/
clerkData = httpResult.data;
//clerkData = clerkData.result; // reply is {"result": clerkData}
return clerkData;
}
});