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
| /*
| * @Author: GuLiMmo 2820890765@qq.com
| * @Date: 2024-08-06 15:01:24
| * @LastEditors: GuLiMmo 2820890765@qq.com
| * @LastEditTime: 2024-08-27 14:55:01
| * @FilePath: /drone-web/src/api/user.ts
| * @Description:
| * Copyright (c) 2024 by GuLiMmo, All Rights Reserved.
| */
| import request from '@/api/http/request'
| import website from '../config/website'
|
| export const loginByUsername = (
| tenantId: string,
| deptId: string,
| roleId: string,
| username: string,
| password: string,
| type: string,
| key: string,
| code: string,
| grant_type: string,
| ) =>
| request({
| url: '/blade-auth/oauth/token',
| method: 'post',
| headers: {
| 'Tenant-Id': tenantId,
| 'Dept-Id': website.switchMode ? deptId : '',
| 'Role-Id': website.switchMode ? roleId : '',
| 'Captcha-Key': key,
| 'Captcha-Code': code,
| },
| params: {
| tenantId,
| username,
| password,
| grant_type: 'password',
| scope: 'all',
| type,
| },
| })
|
| export const refreshToken = (refresh_token: string, tenantId: string, deptId: string, roleId: string) =>
| request({
| url: '/blade-auth/oauth/token',
| method: 'post',
| headers: {
| 'Tenant-Id': tenantId,
| 'Dept-Id': website.switchMode ? deptId : '',
| 'Role-Id': website.switchMode ? roleId : '',
| },
| params: {
| tenantId,
| refresh_token,
| grant_type: 'refresh_token',
| scope: 'all',
| },
| })
|
| interface IRegisterForm {
| tenantId: string
| name: string
| account: string
| password: string
| }
|
| export const registerGuest = (form: IRegisterForm, oauthId: string) =>
| request({
| url: '/blade-user/register-guest',
| method: 'post',
| params: {
| tenantId: form.tenantId,
| name: form.name,
| account: form.account,
| password: form.password,
| oauthId,
| },
| })
|
| export const getButtons = () =>
| request({
| url: '/blade-system/menu/buttons?sysType=2',
| method: 'get',
| })
|
| export const getCaptcha = () =>
| request({
| url: '/blade-auth/oauth/captcha',
| method: 'get',
| authorization: false,
| })
|
| export const logout = () =>
| request({
| url: '/blade-auth/oauth/logout',
| method: 'get',
| authorization: false,
| })
|
| export const getUserInfo = () =>
| request({
| url: '/blade-auth/oauth/user-info',
| method: 'get',
| })
|
| export const clearCache = () =>
| request({
| url: '/blade-auth/oauth/clear-cache',
| method: 'get',
| authorization: false,
| })
|
|