api.ts 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. // @ts-ignore
  2. /* eslint-disable */
  3. import { request } from '@umijs/max';
  4. // 预测 begin
  5. export async function getPredictions(
  6. params: {
  7. current?: number;
  8. pageSize?: number;
  9. },
  10. options?: { [key: string]: any },
  11. ) {
  12. return request<API.PredictionList>(`${API_URL}/api/prediction`, {
  13. method: 'GET',
  14. params: {
  15. ...params,
  16. },
  17. ...(options || {}),
  18. });
  19. }
  20. export async function searchPredictions(
  21. params: {
  22. current?: number;
  23. pageSize?: number;
  24. user?: string;
  25. match?: string;
  26. whoWillWin?: 'home' | 'away' | 'draw';
  27. firstTeamToScore?: 'home' | 'away' | 'no_goal';
  28. totalGoals?: number;
  29. pointsEarned?: number;
  30. // isCorrect?: boolean;
  31. },
  32. options?: { [key: string]: any },
  33. ) {
  34. return request<API.PredictionList>(`${API_URL}/api/prediction`, {
  35. method: 'GET',
  36. params: {
  37. action: 'searchPredictions',
  38. ...params,
  39. },
  40. ...(options || {}),
  41. });
  42. }
  43. export async function addPrediction(options?: { [key: string]: any }) {
  44. return request<API.PredictionList>(`${API_URL}/api/prediction`, {
  45. method: 'POST',
  46. data: {
  47. ...(options || {}),
  48. },
  49. });
  50. }
  51. export async function updatePrediction(id: string, options?: { [key: string]: any }) {
  52. console.log('Sending update request for id:', id);
  53. console.log('Update data:', options);
  54. return request<API.PredictionList>(`${API_URL}/api/prediction`, {
  55. method: 'PUT',
  56. headers: {
  57. 'Content-Type': 'application/json',
  58. },
  59. data: JSON.stringify({
  60. id,
  61. ...(options || {}),
  62. }),
  63. });
  64. }
  65. export async function deletePrediction(id: string) {
  66. console.log('Sending delete request for id:', id);
  67. return request<API.PredictionList>(`${API_URL}/api/prediction?id=${id}`, {
  68. method: 'DELETE',
  69. headers: {
  70. 'Content-Type': 'application/json',
  71. },
  72. });
  73. }
  74. export async function batchDeletePredictions(ids: string[]) {
  75. console.log('Sending batch delete request for ids:', ids);
  76. return request<API.PredictionList>(`${API_URL}/api/prediction?ids=${ids}`, {
  77. method: 'DELETE',
  78. headers: {
  79. 'Content-Type': 'application/json',
  80. },
  81. data: JSON.stringify({ ids }),
  82. });
  83. }
  84. // 预测 end
  85. // 赛事 begin
  86. export async function getMatches(
  87. params: {
  88. current?: number;
  89. pageSize?: number;
  90. },
  91. options?: { [key: string]: any },
  92. ) {
  93. return request<API.MatchList>(`${API_URL}/api/match?action=getMatches`, {
  94. method: 'GET',
  95. params: {
  96. ...params,
  97. },
  98. ...(options || {}),
  99. });
  100. }
  101. export async function addMatch(options?: { [key: string]: any }) {
  102. return request<API.MatchList>(`${API_URL}/api/match`, {
  103. method: 'POST',
  104. data: {
  105. method: 'update',
  106. ...(options || {}),
  107. },
  108. });
  109. }
  110. export async function updateMatch(id: string, options?: { [key: string]: any }) {
  111. console.log('Sending update request for id:', id);
  112. console.log('Update data:', options);
  113. return request<API.MatchList>(`${API_URL}/api/match`, {
  114. method: 'PUT',
  115. headers: {
  116. 'Content-Type': 'application/json',
  117. },
  118. data: JSON.stringify({
  119. id,
  120. ...(options || {}),
  121. }),
  122. });
  123. }
  124. export async function deleteMatch(id: string) {
  125. console.log('Sending delete request for id:', id);
  126. return request<API.MatchList>(`${API_URL}/api/match?id=${id}`, {
  127. method: 'DELETE',
  128. headers: {
  129. 'Content-Type': 'application/json',
  130. },
  131. });
  132. }
  133. export async function batchDeleteMatches(ids: string[]) {
  134. console.log('Sending batch delete request for ids:', ids);
  135. const idsString = ids.join(',');
  136. return request<API.MatchList>(`${API_URL}/api/match?ids=${idsString}`, {
  137. method: 'DELETE',
  138. headers: {
  139. 'Content-Type': 'application/json',
  140. },
  141. });
  142. }
  143. // 赛事 end
  144. // 用户 begin
  145. export async function getUsers(
  146. params: {
  147. current?: number;
  148. pageSize?: number;
  149. },
  150. options?: { [key: string]: any },
  151. ) {
  152. return request<API.UserList>(`${API_URL}/api/user`, {
  153. method: 'GET',
  154. params: {
  155. ...params,
  156. },
  157. ...(options || {}),
  158. });
  159. }
  160. export async function addUser(options?: { [key: string]: any }) {
  161. return request<API.UserList>(`${API_URL}/api/user`, {
  162. method: 'POST',
  163. data: {
  164. method: 'add',
  165. ...(options || {}),
  166. },
  167. });
  168. }
  169. export async function updateUser(id: string, options?: { [key: string]: any }) {
  170. console.log('Sending update request for user id:', id);
  171. console.log('Update data:', options);
  172. return request<API.UserList>(`${API_URL}/api/user`, {
  173. method: 'PUT',
  174. headers: {
  175. 'Content-Type': 'application/json',
  176. },
  177. data: JSON.stringify({
  178. id,
  179. ...(options || {}),
  180. }),
  181. });
  182. }
  183. export async function deleteUser(id: string) {
  184. console.log('Sending delete request for user id:', id);
  185. return request<API.UserList>(`${API_URL}/api/user?id=${id}`, {
  186. method: 'DELETE',
  187. headers: {
  188. 'Content-Type': 'application/json',
  189. },
  190. });
  191. }
  192. export async function batchDeleteUsers(ids: string[]) {
  193. console.log('Sending batch delete request for user ids:', ids);
  194. const idsString = ids.join(',');
  195. return request<API.UserList>(`${API_URL}/api/user?ids=${idsString}`, {
  196. method: 'DELETE',
  197. headers: {
  198. 'Content-Type': 'application/json',
  199. },
  200. });
  201. }
  202. // 用户end
  203. /** 登录接口 POST /api/login/account */
  204. export async function login(body: API.LoginParams, options?: { [key: string]: any }) {
  205. return request<API.LoginResult>(`${API_URL}/api/auth/login`, {
  206. method: 'POST',
  207. headers: {
  208. 'Content-Type': 'application/json',
  209. },
  210. data: body,
  211. ...(options || {}),
  212. });
  213. }
  214. export async function register(body: API.LoginParams, options?: { [key: string]: any }) {
  215. return request<API.RegisterResult>(`${API_URL}/api/auth/register`, {
  216. method: 'POST',
  217. headers: {
  218. 'Content-Type': 'application/json',
  219. },
  220. data: body,
  221. ...(options || {}),
  222. });
  223. }
  224. /** 获取当前的用户 GET /api/currentUser */
  225. // export async function currentUser(options?: { [key: string]: any }) {
  226. // return request<{
  227. // data: API.CurrentUser;
  228. // }>('/api/currentUser', {
  229. // method: 'GET',
  230. // ...(options || {}),
  231. // });
  232. // }
  233. // 修改积分历史
  234. export async function updateUserPoints(userId: string, points: number, reason: string) {
  235. console.log('发送积分更新请求,用户ID:', userId);
  236. console.log('积分变更:', points);
  237. console.log('变更原因:', reason);
  238. return request<API.PointHistoryResponse>(`${API_URL}/api/point-history`, {
  239. method: 'POST',
  240. headers: {
  241. 'Content-Type': 'application/json',
  242. },
  243. data: JSON.stringify({
  244. userId,
  245. points,
  246. reason,
  247. }),
  248. });
  249. }
  250. // 获取积分历史
  251. export async function getUserPointHistory(
  252. params: {
  253. userId: string;
  254. current?: number;
  255. pageSize?: number;
  256. },
  257. options?: { [key: string]: any },
  258. ) {
  259. return request<API.PointHistoryList>(`${API_URL}/api/point-history`, {
  260. method: 'GET',
  261. params: {
  262. ...params,
  263. },
  264. ...(options || {}),
  265. });
  266. }
  267. // 删除单个积分历史记录
  268. export async function deletePointHistory(id: string) {
  269. console.log('发送删除请求,积分历史记录ID:', id);
  270. return request<API.PointHistoryList>(`${API_URL}/api/point-history?id=${id}`, {
  271. method: 'DELETE',
  272. headers: {
  273. 'Content-Type': 'application/json',
  274. },
  275. });
  276. }
  277. // 批量删除积分历史记录
  278. export async function batchDeletePointHistory(ids: string[]) {
  279. console.log('发送批量删除请求,积分历史记录IDs:', ids);
  280. const idsString = ids.join(',');
  281. return request<API.PointHistoryList>(`${API_URL}/api/point-history?ids=${idsString}`, {
  282. method: 'DELETE',
  283. headers: {
  284. 'Content-Type': 'application/json',
  285. },
  286. });
  287. }
  288. export async function updatePredictionsForMatch(matchId: string) {
  289. return request<API.updatePredictionsForMatchRes>(`${API_URL}/api/updateForMatch`, {
  290. method: 'POST',
  291. data: { matchId },
  292. });
  293. }
  294. /** 退出登录接口 POST /api/login/outLogin */
  295. export async function outLogin(options?: { [key: string]: any }) {
  296. return request<Record<string, any>>('/api/login/outLogin', {
  297. method: 'POST',
  298. ...(options || {}),
  299. });
  300. }
  301. //活动
  302. export async function getActivity(
  303. params: {
  304. current?: number;
  305. pageSize?: number;
  306. },
  307. options?: { [key: string]: any },
  308. ) {
  309. return request<API.ActivityList>(`${API_URL}/api/activity`, {
  310. method: 'GET',
  311. params: {
  312. ...params,
  313. },
  314. ...(options || {}),
  315. });
  316. }
  317. export async function createActivity(options?: { [key: string]: any }) {
  318. return request<API.ActivityList>(`${API_URL}/api/activity`, {
  319. method: 'POST',
  320. data: {
  321. ...(options || {}),
  322. },
  323. });
  324. }
  325. export async function updateActivity(id: string, options?: { [key: string]: any }) {
  326. console.log('Sending update request for activity id:', id);
  327. console.log('Update data:', options);
  328. return request<API.ActivityList>(`${API_URL}/api/activity`, {
  329. method: 'PUT',
  330. headers: {
  331. 'Content-Type': 'application/json',
  332. },
  333. data: JSON.stringify({
  334. id,
  335. ...(options || {}),
  336. }),
  337. });
  338. }
  339. export async function deleteActivity(id: string) {
  340. console.log('Sending delete request for activity id:', id);
  341. return request<{ success: boolean }>(`${API_URL}/api/activity?id=${id}`, {
  342. method: 'DELETE',
  343. headers: {
  344. 'Content-Type': 'application/json',
  345. },
  346. });
  347. }
  348. // 最新活动
  349. export async function getNewActivities(
  350. params: {
  351. current?: number;
  352. pageSize?: number;
  353. },
  354. options?: { [key: string]: any },
  355. ) {
  356. return request<API.NewActivityList>(`${API_URL}/api/new-activities`, {
  357. method: 'GET',
  358. params: {
  359. ...params,
  360. },
  361. ...(options || {}),
  362. });
  363. }
  364. export async function createNewActivity(options?: { [key: string]: any }) {
  365. return request<API.NewActivityList>(`${API_URL}/api/new-activities`, {
  366. method: 'POST',
  367. data: {
  368. ...(options || {}),
  369. },
  370. });
  371. }
  372. export async function updateNewActivity(id: string, options?: { [key: string]: any }) {
  373. console.log('Sending update request for new activity id:', id);
  374. console.log('Update data:', options);
  375. return request<API.NewActivityList>(`${API_URL}/api/new-activities`, {
  376. method: 'PUT',
  377. headers: {
  378. 'Content-Type': 'application/json',
  379. },
  380. data: JSON.stringify({
  381. id,
  382. ...(options || {}),
  383. }),
  384. });
  385. }
  386. export async function deleteNewActivity(id: string) {
  387. console.log('Sending delete request for new activity id:', id);
  388. return request<{ success: boolean }>(`${API_URL}/api/new-activities?id=${id}`, {
  389. method: 'DELETE',
  390. headers: {
  391. 'Content-Type': 'application/json',
  392. },
  393. });
  394. }
  395. // 积分项目接口
  396. export async function getExchangeItems(
  397. params: {
  398. current?: number;
  399. pageSize?: number;
  400. },
  401. options?: { [key: string]: any },
  402. ) {
  403. return request<API.ExchangeItemList>(`${API_URL}/api/exchange-items`, {
  404. method: 'GET',
  405. params: {
  406. ...params,
  407. },
  408. ...(options || {}),
  409. });
  410. }
  411. export async function createExchangeItem(options?: { [key: string]: any }) {
  412. return request<API.ExchangeItemList>(`${API_URL}/api/exchange-items`, {
  413. method: 'POST',
  414. data: {
  415. ...(options || {}),
  416. },
  417. });
  418. }
  419. export async function updateExchangeItem(id: string, options?: { [key: string]: any }) {
  420. console.log('Sending update request for exchange item id:', id);
  421. console.log('Update data:', options);
  422. return request<API.ExchangeItemList>(`${API_URL}/api/exchange-items`, {
  423. method: 'PUT',
  424. headers: {
  425. 'Content-Type': 'application/json',
  426. },
  427. data: JSON.stringify({
  428. id,
  429. ...(options || {}),
  430. }),
  431. });
  432. }
  433. export async function deleteExchangeItem(id: string) {
  434. console.log('Sending delete request for exchange item id:', id);
  435. return request<{ success: boolean }>(`${API_URL}/api/exchange-items?id=${id}`, {
  436. method: 'DELETE',
  437. headers: {
  438. 'Content-Type': 'application/json',
  439. },
  440. });
  441. }
  442. // 积分历史接口
  443. export async function getExchangeHistory(
  444. params: {
  445. current?: number;
  446. pageSize?: number;
  447. },
  448. options?: { [key: string]: any },
  449. ) {
  450. return request<API.ExchangeHistoryList>(`${API_URL}/api/exchange-history`, {
  451. method: 'GET',
  452. params: {
  453. ...params,
  454. },
  455. ...(options || {}),
  456. });
  457. }
  458. export async function createExchangeHistory(options?: { [key: string]: any }) {
  459. return request<API.ExchangeHistoryList>(`${API_URL}/api/exchange-history`, {
  460. method: 'POST',
  461. data: {
  462. ...(options || {}),
  463. },
  464. });
  465. }
  466. export async function updateExchangeHistory(id: string, options?: { [key: string]: any }) {
  467. console.log('Sending update request for exchange history id:', id);
  468. console.log('Update data:', options);
  469. return request<API.ExchangeHistoryList>(`${API_URL}/api/exchange-history`, {
  470. method: 'PUT',
  471. headers: {
  472. 'Content-Type': 'application/json',
  473. },
  474. data: JSON.stringify({
  475. id,
  476. ...(options || {}),
  477. }),
  478. });
  479. }
  480. export async function deleteExchangeHistory(id: string) {
  481. console.log('Sending delete request for exchange history id:', id);
  482. return request<{ success: boolean }>(`${API_URL}/api/exchange-history?id=${id}`, {
  483. method: 'DELETE',
  484. headers: {
  485. 'Content-Type': 'application/json',
  486. },
  487. });
  488. }