forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.js
More file actions
120 lines (107 loc) · 3.21 KB
/
index.js
File metadata and controls
120 lines (107 loc) · 3.21 KB
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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
import Cookies from 'js-cookie'
import { axios, sourceToken } from '@/utils/request'
import { message, notification } from 'ant-design-vue'
import { vueProps } from '@/vue-app'
import {
ACCESS_TOKEN
} from '@/store/mutation-types'
export function getAPI (command, args = {}) {
args.command = command
args.response = 'json'
const sessionkey = vueProps.$localStorage.get(ACCESS_TOKEN) || Cookies.get('sessionkey')
if (sessionkey) {
args.sessionkey = sessionkey
}
return axios({
params: {
...args
},
url: '/',
method: 'GET'
})
}
export function postAPI (command, data = {}) {
const params = new URLSearchParams()
params.append('command', command)
params.append('response', 'json')
if (data) {
Object.entries(data).forEach(([key, value]) => {
if (value !== undefined && value !== null && value !== '') {
params.append(key, value)
}
})
}
const sessionkey = vueProps.$localStorage.get(ACCESS_TOKEN) || Cookies.get('sessionkey')
if (sessionkey) {
params.append('sessionkey', sessionkey)
}
return axios({
url: '/',
method: 'POST',
data: params
})
}
export function login (arg) {
if (!sourceToken.checkExistSource()) {
sourceToken.init()
}
// Logout before login is called to purge any duplicate sessionkey cookies
postAPI('logout')
const params = new URLSearchParams()
params.append('command', 'login')
params.append('username', arg.username || arg.email)
params.append('password', arg.password)
params.append('domain', arg.domain)
params.append('response', 'json')
return axios({
url: '/',
method: 'POST',
data: params,
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
})
}
export function logout () {
message.destroy()
notification.destroy()
return postAPI('logout')
}
export function oauthlogin (arg) {
if (!sourceToken.checkExistSource()) {
sourceToken.init()
}
// Logout before login is called to purge any duplicate sessionkey cookies
postAPI('logout')
const params = new URLSearchParams()
params.append('command', 'oauthlogin')
params.append('email', arg.email)
params.append('secretcode', arg.secretcode)
params.append('provider', arg.provider)
params.append('domain', arg.domain)
params.append('response', 'json')
return axios({
url: '/',
method: 'post',
data: params,
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
})
}