2015-02-05 14:02:36 +00:00
|
|
|
local md5 = require "md5"
|
2015-02-05 14:39:36 +00:00
|
|
|
local http = require "socket.http"
|
2015-02-05 14:02:36 +00:00
|
|
|
|
|
|
|
local GJ = {
|
|
|
|
gameID, gameKey,
|
|
|
|
isLoggedIn = false,
|
|
|
|
username, userToken
|
|
|
|
}
|
|
|
|
|
2015-02-05 14:39:36 +00:00
|
|
|
local BASE_URL = "http://gamejolt.com/api/game/v1/"
|
2015-02-05 14:02:36 +00:00
|
|
|
|
2015-02-05 14:39:36 +00:00
|
|
|
local function req(s, f, pu, pt)
|
|
|
|
local url = BASE_URL .. s .. "&game_id=" .. tostring(GJ.gameID) .. "&format=" .. f
|
2015-02-05 14:02:36 +00:00
|
|
|
if pu then url = url .. "&username=" .. GJ.username end
|
|
|
|
if pt then url = url .. "&user_token=" .. GJ.userToken end
|
|
|
|
|
|
|
|
local b = md5.sumhexa(url .. GJ.gameKey)
|
|
|
|
url = url .. "&signature=" .. b
|
|
|
|
|
|
|
|
local r, e = http.request(url)
|
|
|
|
return r
|
|
|
|
end
|
|
|
|
|
2015-02-05 16:27:44 +00:00
|
|
|
local function parseKeypair(s, on)
|
2015-02-05 15:05:48 +00:00
|
|
|
local c, len = 0, string.len(s)
|
|
|
|
local b, k, v
|
|
|
|
|
|
|
|
while c < len do
|
|
|
|
b = string.find(s, ":", c)
|
|
|
|
if b == nil then break end
|
|
|
|
k = string.sub(s, c, b - 1)
|
|
|
|
c = b + 2
|
|
|
|
b = string.find(s, '"', c)
|
|
|
|
v = string.sub(s, c, b - 1)
|
2015-02-05 16:27:44 +00:00
|
|
|
c = b + 3
|
2015-02-05 15:05:48 +00:00
|
|
|
on(k, v)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-02-05 16:27:44 +00:00
|
|
|
local function handleTrophies(str)
|
|
|
|
local d = req("trophies/?" .. str, "keypair", true, true)
|
|
|
|
local t, f = {}
|
|
|
|
|
|
|
|
parseKeypair(d, function(k, v)
|
|
|
|
if k ~= "success" then
|
|
|
|
if k == "id" then
|
|
|
|
f = {}
|
|
|
|
table.insert(t, f)
|
|
|
|
end
|
|
|
|
f[k] = v
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:02:36 +00:00
|
|
|
function GJ.init(id, key)
|
|
|
|
GJ.gameID = id
|
|
|
|
GJ.gameKey = key
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:39:36 +00:00
|
|
|
-- users
|
|
|
|
function GJ.authUser(name, token)
|
|
|
|
GJ.username = name
|
|
|
|
GJ.userToken = token
|
|
|
|
|
|
|
|
local s = string.find(req("users/auth/?", "dump", true, true), "SUCCESS") ~= nil
|
|
|
|
GJ.isLoggedIn = s
|
|
|
|
return s
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:14:22 +00:00
|
|
|
function GJ.fetchUserByName(name)
|
|
|
|
local r = req("users/?username=" .. name, "keypair", false, false)
|
|
|
|
|
|
|
|
local t = {}
|
|
|
|
parseKeypair(r, function(k, v)
|
|
|
|
t[k] = v
|
|
|
|
end)
|
|
|
|
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
|
|
|
function GJ.fetchUserByID(id)
|
|
|
|
local r = req("users/?user_id=" .. id, "keypair", false, false)
|
|
|
|
|
|
|
|
local t = {}
|
|
|
|
parseKeypair(r, function(k, v)
|
|
|
|
t[k] = v
|
|
|
|
end)
|
|
|
|
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:43:06 +00:00
|
|
|
-- sessions
|
|
|
|
function GJ.openSession()
|
|
|
|
return string.find(req("sessions/open/?", "dump", true, true), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:48:26 +00:00
|
|
|
function GJ.pingSession(active)
|
|
|
|
local status = "idle"
|
|
|
|
if active then status = "active" end
|
|
|
|
|
|
|
|
return string.find(req("sessions/open/?status=" .. status, "dump", true, true), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:49:42 +00:00
|
|
|
function GJ.closeSession()
|
|
|
|
return string.find(req("sessions/close/?", "dump", true, true), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:27:47 +00:00
|
|
|
-- data store
|
|
|
|
function GJ.fetchData(key, isGlobal)
|
|
|
|
local pu, pt = true, true
|
|
|
|
if isGlobal then pu, pt = false, false end
|
|
|
|
|
|
|
|
local d = req("data-store/?key=" .. key, "dump", pu, pt)
|
|
|
|
return string.sub(d, string.find(d, "\n"), string.len(d))
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:32:01 +00:00
|
|
|
function GJ.setData(key, data, isGlobal)
|
|
|
|
local pu, pt = true, true
|
|
|
|
if isGlobal then pu, pt = false, false end
|
|
|
|
|
|
|
|
return string.find(req("data-store/set/?key=" .. key .. "&data=" .. tostring(data), "dump", pu, pt), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:36:44 +00:00
|
|
|
function GJ.updateData(key, value, operation, isGlobal)
|
|
|
|
local pu, pt = true, true
|
|
|
|
if isGlobal then pu, pt = false, false end
|
|
|
|
|
|
|
|
local d = req("data-store/update/?key=" .. key .. "&operation=" .. operation .. "&value=" .. tostring(value), "dump", pu, pt)
|
|
|
|
return string.sub(d, string.find(d, "\n"), string.len(d))
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:39:52 +00:00
|
|
|
function GJ.removeData(key, isGlobal)
|
|
|
|
local pu, pt = true, true
|
|
|
|
if isGlobal then pu, pt = false, false end
|
|
|
|
|
|
|
|
return string.find(req("data-store/remove/?key=" .. key, "dump", pu, pt), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:46:40 +00:00
|
|
|
function GJ.fetchStorageKeys(isGlobal)
|
|
|
|
local pu, pt = true, true
|
|
|
|
if isGlobal then pu, pt = false, false end
|
|
|
|
|
|
|
|
local d = req("data-store/get-keys/?", "keypair", pu, pt)
|
|
|
|
|
|
|
|
local t = {}
|
|
|
|
parseKeypair(d, function(k, v)
|
|
|
|
if k ~= "success" then table.insert(t, v) end
|
|
|
|
end)
|
|
|
|
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
2015-02-05 15:54:35 +00:00
|
|
|
-- trophies
|
|
|
|
function GJ.giveTrophy(id)
|
|
|
|
return string.find(req("trophies/add-achieved/?trophy_id=" .. tostring(id), "dump", true, true), "SUCCESS") ~= nil
|
|
|
|
end
|
|
|
|
|
2015-02-05 16:27:44 +00:00
|
|
|
function GJ.fetchTrophy(id)
|
|
|
|
local d = req("trophies/?trophy_id=" .. tostring(id), "keypair", true, true)
|
|
|
|
|
|
|
|
local t = {}
|
|
|
|
parseKeypair(d, function(k, v)
|
|
|
|
if k ~= "success" then t[k] = v end
|
|
|
|
end)
|
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
|
|
|
function GJ.fetchTrophiesByStatus(achieved)
|
|
|
|
return handleTrophies("achieved=" .. tostring(achieved))
|
|
|
|
end
|
|
|
|
|
|
|
|
function GJ.fetchAllTrophies()
|
|
|
|
return handleTrophies("")
|
|
|
|
end
|
|
|
|
|
2015-02-05 14:02:36 +00:00
|
|
|
return GJ
|