-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathapi_clans.py
123 lines (93 loc) · 3.46 KB
/
api_clans.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
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
121
122
123
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import base64
import json
import requests
class Api:
# TODO: this
API_URL = "<HOST>/api_clans/1/index.php?request="
def __init__(self, login: str, password: str):
self.login = login
self.password = password
self.session = requests.Session()
self.session.headers["Authorization"] = self.make_authorization(login, password)
# # Or:
# self.session = requests.Session()
# self.auth = (login, password)
def method(self, method: str, data: dict = None) -> requests.Response:
url = self.API_URL + method
# Debug
print(f"POST: url: {url}, data: {data}")
rs = self.session.post(url, data)
# Debug
print(rs)
print(f'rs.text: "{rs.text}"')
print("pretty rs:", json.dumps(rs.json(), indent=4, ensure_ascii=False))
print("\n")
return rs
def get_user_data(self, people_id=None) -> requests.Response:
return self.method("get_user_data", {"people_id": people_id})
# Append more api methods
@staticmethod
def make_authorization(login: str, password: str) -> str:
credentials = login + ":" + password
# As base64
credentials = base64.b64encode(credentials.encode()).decode()
return "Basic " + credentials
# # NOTE: Requests debug
# import logging
#
# # These two lines enable debugging at httplib level (requests->urllib3->http.client)
# # You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.
# # The only thing missing will be the response.body which is not logged.
# try:
# import http.client as http_client
# except ImportError:
# # Python 2
# import httplib as http_client
# http_client.HTTPConnection.debuglevel = 1
#
# # You must initialize logging, otherwise you'll not see debug output.
# logging.basicConfig()
# logging.getLogger().setLevel(logging.DEBUG)
# requests_log = logging.getLogger("requests.packages.urllib3")
# requests_log.setLevel(logging.DEBUG)
# requests_log.propagate = True
if __name__ == "__main__":
# TODO: this
LOGIN = "<LOGIN>"
PASSWORD = "<PASSWORD>"
api = Api(LOGIN, PASSWORD)
# Получение информации о текущем пользователе
rs = api.get_user_data()
# Or:
rs = api.method("get_user_data")
# Получение информации о пользователе с id = 1
rs = api.get_user_data(people_id=1)
# Or:
rs = api.method("get_user_data", data={"people_id": 1})
print("\n")
# Создание пользователя
data = {
"name": "Вася",
"lastname": "Пупкин",
"secondname": "secondname",
"sex": "man",
"phone": "79957777555",
"email": "guvuwer@p33.org",
"pass": "123",
"is_live": "1",
}
rs = api.method("add_user", data)
new_user_id = rs.json()
# Регистрация (Проверка кода подтверждения e-mail)
rs = api.method("check_email_code", data={"people_id": new_user_id})
email_code = rs.json()
# Получение информации о новом пользователе с id = new_user_id
rs = api.get_user_data(people_id=new_user_id)
# # Получение связей пользователя с id = 1
# data = {
# 'people_id': 1,
# }
# rs = api.method('get_user_relations', data)