Advertisement
TIMAS_Bro

Untitled

Feb 1st, 2024
729
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.34 KB | None | 0 0
  1. local axios = require('/libraries.axios')
  2. local json = require('/libraries.json')
  3. local api = axios:new('https://stack.kiefe.ru/api')
  4.  
  5. local function transfer(id,pin,receiver,amount,comment)
  6.     local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
  7.     if result and result.code == 200 then
  8.         local token = result.response.token
  9.  
  10.         -- Выполянем перевод средств
  11.         local transactions = api:Post('v1/card/transactions',
  12.             { receiver = receiver, amount = amount, message = comment },
  13.             { Authorization = 'Bearer ' .. token })
  14.  
  15.         if transactions then
  16.  
  17.             -- Проверка перевода
  18.             if transactions.code == 200 then
  19.                 return transactions.response.message
  20.             else
  21.                 return transactions.code, transactions.response.message
  22.             end
  23.         end
  24.     else
  25.       return false
  26.     end
  27. end
  28.  
  29. local function auth(id,pin)
  30.     id = tonumber(id)
  31.     pin = tonumber(pin)
  32.     local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
  33.     if result and result.code == 200 then
  34.         local token = result.response.token
  35.  
  36.         -- Выполянем перевод средств
  37.         local transactions = api:Get('v1/card',
  38.             { Authorization = 'Bearer ' .. token })
  39.  
  40.         if transactions then
  41.  
  42.             -- Проверка перевода
  43.             if transactions.code == 200 then
  44.                 return transactions
  45.             else
  46.                 return false
  47.             end
  48.         end
  49.     else
  50.       return false
  51.     end
  52. end
  53.  
  54. local function getToken(id,pin)
  55.        id = tonumber(id)
  56.     pin = tonumber(pin)
  57.     local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
  58.     if result and result.code == 200 then
  59.         local token = result.response.token
  60.  
  61.         return token
  62.     else
  63.       return false
  64.     end
  65. end
  66.  
  67. local function getHistory(id,pin)
  68.     id = tonumber(id)
  69.     pin = tonumber(pin)
  70.     local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
  71.     if result and result.code == 200 then
  72.         local token = result.response.token
  73.  
  74.         -- Выполянем перевод средств
  75.         local transactions = api:Get('v1/card/history?length=20',
  76.             { Authorization = 'Bearer ' .. token })
  77.  
  78.         if transactions then
  79.  
  80.             -- Проверка перевода
  81.             if transactions.code == 200 then
  82.                 return transactions
  83.             else
  84.                 return false
  85.             end
  86.         end
  87.     else
  88.       return false
  89.     end
  90. end
  91.  
  92. return { auth = auth, transfer = transfer, getHistory = getHistory, getToken = getToken}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement