require "uri" require "base64" require "crypto/bcrypt/password" include CrystalGauntlet CrystalGauntlet.endpoints["/accounts/loginGJAccount.php"] = ->(body : String): String { params = URI::Params.parse(body) puts params.inspect username = params["userName"] password = params["password"] result = DATABASE.query_all("select id, password from accounts", as: {Int32, String}) if result.size > 0 account_id, hash = result[0] bcrypt = Crypto::Bcrypt::Password.new(hash) if bcrypt.verify(password) user_id = Accounts.get_user_id(username, account_id.to_s) "#{account_id},#{user_id}" else return "-12" end else return "-1" end }