api.ts 13 KB

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