58 lines
1013 B
JavaScript
58 lines
1013 B
JavaScript
|
|
const tokens = {
|
|
admin: {
|
|
token: 'admin-token'
|
|
},
|
|
editor: {
|
|
token: 'editor-token'
|
|
}
|
|
}
|
|
|
|
const users = {
|
|
'admin-token': {
|
|
roles: ['admin'],
|
|
introduction: 'I am a super administrator',
|
|
avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
|
|
name: 'Super Admin'
|
|
},
|
|
'editor-token': {
|
|
roles: ['editor'],
|
|
introduction: 'I am an editor',
|
|
avatar: 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif',
|
|
name: 'Normal Editor'
|
|
}
|
|
}
|
|
|
|
export default [
|
|
// user login
|
|
{
|
|
url: '/user/login',
|
|
type: 'post',
|
|
response: config => {
|
|
const { username } = config.body
|
|
return tokens[username]
|
|
}
|
|
},
|
|
|
|
// get user info
|
|
{
|
|
url: '/user/info\.*',
|
|
type: 'get',
|
|
response: config => {
|
|
const { token } = config.query
|
|
return users[token]
|
|
}
|
|
},
|
|
|
|
// user logout
|
|
{
|
|
url: '/user/logout',
|
|
type: 'post',
|
|
response: _ => {
|
|
return {
|
|
data: 'success'
|
|
}
|
|
}
|
|
}
|
|
]
|