-
Notifications
You must be signed in to change notification settings - Fork 24
/
publish_api.py
65 lines (55 loc) · 2.15 KB
/
publish_api.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/12/5 10:24
# @Author : Fred Yang
# @File : publish_api.py
# @Role : 发布接口API
import pyotp
import requests
import json
from settings import api_gw, publish_info
class Publish_API():
def __init__(self):
self.url = api_gw
self.user = publish_info.get('user')
self.pwd = publish_info.get('password')
self.key = publish_info.get('key')
@property
def get_mfa(self):
t = pyotp.TOTP(self.key)
return t.now()
def login(self):
try:
headers = {"Content-Type": "application/json"}
params = {"username": self.user, "password": self.pwd, "dynamic": self.get_mfa}
result = requests.post('%s/accounts/login/' % self.url, data=json.dumps(params), headers=headers)
ret = json.loads(result.text)
if ret['code'] == 0:
return ret['auth_key']
else:
print(ret)
print(ret['msg'])
exit(1)
except Exception as e:
print('[Error:] Publish用户接口登陆失败,错误信息:{}'.format(e))
def get_publish_name_info(self, publish_name):
token = self.login()
try:
params = {'key': 'publish_name', 'value': publish_name}
res = requests.get('%s/task/v2/task_other/publish_cd/' % self.url, params=params,
cookies=dict(auth_key=token))
ret = json.loads(res.content)
if ret['code'] == 0: return ret['data']
except Exception as e:
print('[Error:] Publish发布接口连接失败,错误信息:{}'.format(e))
exit(-2)
def get_publish_all_info(self):
'''获取发布配置所有信息'''
try:
token = self.login()
except Exception as e:
print(e)
token = self.login()
res = requests.get('%s/task/v2/task_other/publish_cd/' % self.url, cookies=dict(auth_key=token))
ret = json.loads(res.content)
if ret['code'] == 0: return ret['data']