-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApiController.js
104 lines (89 loc) · 2.46 KB
/
ApiController.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
const axios = require('axios');
var getUsers = function(url, token){
axios.get(url, {headers: {Authorization: token}}).then((res)=>{
return res.data.data;
})
.catch((err) => {
console.error(err.data);
});
}
var getServerData = function(url, token, callback){
//console.log("GETTING MOVES");
let x;
axios.get(url,{headers: {Authorization: token}})
.then((res)=>{
// console.log(res.data.data);
callback(null, res.data.data);
})
.catch((err) => {
callback(err, null)
});
}
var getUserData = function(url, token, callback){
//console.log("GETTING MOVES");
let x;
axios.get(url,{headers: {"api-key": token}})
.then((res)=>{
// console.log(res.data.data);
callback(null, res.data.data);
})
.catch((err) => {
callback(err, null)
});
}
// function getMoves(url, token) {
// return axios({
// url,
// method: 'get',
// timeout: 5000,
// headers: {Authorization: token}
// })
// .then(res => res.data.data)
// .catch (err => console.error(err))
// }
// var getScenes = function(url, token){
// axios.get(url, {headers: {Authorization: token}}).then((res)=>{
// return res.data.data;
// })
// .catch((err) => {
// console.error(err.data);
// });
// }
// var getExperiences = function(url, token){
// axios.get(url, {headers: {Authorization: token}}).then((res)=>{
// return res.data;
// })
// .catch((err) => {
// console.error(err.data);
// });
// }
// var getMusic = function(url, token){
// axios.get(url, {headers: {Authorization: token}}).then((res)=>{
// return res.data.data;
// })
// .catch((err) => {
// console.error(err.data);
// });
// }
// module.exports = {getMoves, getScenes, getMusic}
module.exports = {getServerData, getUserData}
// var getMoves = [
// {uid: 1},
// {uid: 2}
// ]
// var getScenes = [
// {uid: 1},
// {uid: 2}
// ]
// var getMusic = [
// {uid: 1},
// {uid: 2}
// ]
// var getExperiences = [
// {uid: 1},
// {uid: 2}
// ]
// return [
// {user_profile_id: "b7a66a11-6ea2-4df1-a2c8-8f23ad5d4902", guest_user_profile_id: "9940c74-ed38-4305-861b-e1ebfa783a6e"},
// {user_profile_id: "b7a66a11-6ea2-4df1-a2c8-8f23ad5d4902", guest_user_profile_id: "9940c74-ed38-4305-861b-e1ebfa783a6e"},
// ]