Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local axios = require('/libraries.axios')
- local json = require('/libraries.json')
- local api = axios:new('https://stack.kiefe.ru/api')
- local function transfer(id,pin,receiver,amount,comment)
- local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
- if result and result.code == 200 then
- local token = result.response.token
- -- Выполянем перевод средств
- local transactions = api:Post('v1/card/transactions',
- { receiver = receiver, amount = amount, message = comment },
- { Authorization = 'Bearer ' .. token })
- if transactions then
- -- Проверка перевода
- if transactions.code == 200 then
- return transactions.response.message
- else
- return transactions.code, transactions.response.message
- end
- end
- else
- return false
- end
- end
- local function auth(id,pin)
- id = tonumber(id)
- pin = tonumber(pin)
- local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
- if result and result.code == 200 then
- local token = result.response.token
- -- Выполянем перевод средств
- local transactions = api:Get('v1/card',
- { Authorization = 'Bearer ' .. token })
- if transactions then
- -- Проверка перевода
- if transactions.code == 200 then
- return transactions
- else
- return false
- end
- end
- else
- return false
- end
- end
- local function getToken(id,pin)
- id = tonumber(id)
- pin = tonumber(pin)
- local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
- if result and result.code == 200 then
- local token = result.response.token
- return token
- else
- return false
- end
- end
- local function getHistory(id,pin)
- id = tonumber(id)
- pin = tonumber(pin)
- local result = api:Post('v1/card/signin', { id = id, pin_code = pin })
- if result and result.code == 200 then
- local token = result.response.token
- -- Выполянем перевод средств
- local transactions = api:Get('v1/card/history?length=20',
- { Authorization = 'Bearer ' .. token })
- if transactions then
- -- Проверка перевода
- if transactions.code == 200 then
- return transactions
- else
- return false
- end
- end
- else
- return false
- end
- end
- return { auth = auth, transfer = transfer, getHistory = getHistory, getToken = getToken}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement