Files
sky_phone-sky-systems/sky_phone/source/server/phone.lua
T
2026-08-06 12:07:35 +02:00

811 lines
26 KiB
Lua

Bridge.Database.AfterMigration("sky_phone", function()
Bridge.Debug("debug", "[sky_phone] Server initialization started after database migration.", { always = true })
SkyPhone = {}
local sessions = {}
local auth_attempts = {}
local operation_attempts = {}
local max_device_data_bytes = 100000
local allowed_device_namespaces = {
settings = true,
notifications = true,
wallpaper = true,
alarms = true,
apps = true,
}
local function trim(value)
if type(value) ~= "string" then
return nil
end
return value:match("^%s*(.-)%s*$")
end
local function affected_rows(result)
if type(result) == "number" then
return result
end
return type(result) == "table" and tonumber(result.affectedRows) or 0
end
local function reserve_imei()
local imei = SkyPhoneImei.Reserve(function()
local rows = Bridge.Database.Query("SELECT UUID() AS `id`", {})
local uuid = rows[1] and rows[1].id
if type(uuid) ~= "string" then
error("[sky_phone] Database did not generate entropy for an IMEI.")
end
return uuid
end, function(candidate)
local result = Bridge.Database.Query([[
INSERT IGNORE INTO `sky_phone_devices` (`imei`, `device_name`)
VALUES (?, ?)
]], { candidate, Config.Phone.DeviceName })
return affected_rows(result) > 0
end)
if not imei then
error("[sky_phone] Could not generate a unique IMEI after 20 attempts.")
end
return imei
end
local function find_device_slots(source, imei)
local matches = {}
for _, item in ipairs(Bridge.Inventory.GetSlotsWithItem(source, Config.Phone.Item)) do
if item.metadata and item.metadata.imei == imei then
matches[#matches + 1] = item
end
end
if #matches > 1 then
Bridge.Debug(
"warn",
"[sky_phone] Source %s has %s items with duplicated IMEI %s.",
tostring(source),
tostring(#matches),
imei
)
end
return matches
end
local function resolve_used_slot(source, used_item)
Bridge.Debug(
"debug",
"[sky_phone] Resolving used item for source %s: type=%s slot=%s id=%s name=%s.",
tostring(source),
type(used_item),
tostring(used_item and used_item.slot),
tostring(used_item and used_item.id),
tostring(used_item and used_item.name),
{ always = true }
)
local slot_id = used_item and (used_item.slot or used_item.id)
if slot_id then
local slot = Bridge.Inventory.GetSlot(source, slot_id)
Bridge.Debug(
"debug",
"[sky_phone] Inventory slot lookup for source %s slot %s returned name=%s amount=%s metadata_imei=%s.",
tostring(source),
tostring(slot_id),
tostring(slot and slot.name),
tostring(slot and (slot.amount or slot.count)),
tostring(slot and slot.metadata and slot.metadata.imei),
{ always = true }
)
if slot and slot.name == Config.Phone.Item then
return slot
end
end
local slots = Bridge.Inventory.GetSlotsWithItem(source, Config.Phone.Item)
Bridge.Debug(
"debug",
"[sky_phone] Inventory fallback found %s phone slot candidates for source %s.",
tostring(#slots),
tostring(source),
{ always = true }
)
for _, candidate in ipairs(slots) do
Bridge.Debug(
"debug",
"[sky_phone] Candidate slot=%s name=%s amount=%s metadata_imei=%s.",
tostring(candidate.slot),
tostring(candidate.name),
tostring(candidate.amount or candidate.count),
tostring(candidate.metadata and candidate.metadata.imei),
{ always = true }
)
end
if #slots == 1 then
return slots[1]
end
Bridge.Debug(
"warn",
"[sky_phone] Usable item callback did not identify an exact phone slot for source %s (%s candidates).",
tostring(source),
tostring(#slots)
)
return nil
end
local function ensure_device(source, slot)
local amount = tonumber(slot.amount or slot.count) or 0
Bridge.Debug(
"debug",
"[sky_phone] Ensuring device for source %s slot=%s amount=%s existing_imei=%s inventory=%s.",
tostring(source),
tostring(slot.slot),
tostring(amount),
tostring(slot.metadata and slot.metadata.imei),
tostring(Bridge.Inventory.GetResourceName()),
{ always = true }
)
if amount ~= 1 then
Bridge.Debug("warn", "[sky_phone] Phone item in slot %s is stacked for source %s.", tostring(slot.slot), tostring(source))
return nil, "phone_stacked"
end
local metadata = slot.metadata or {}
local imei = metadata.imei
if imei and not SkyPhoneImei.IsValid(imei) then
Bridge.Debug("warn", "[sky_phone] Phone item in slot %s has invalid IMEI metadata.", tostring(slot.slot))
return nil, "invalid_imei"
end
if not imei then
imei = reserve_imei()
metadata.imei = imei
Bridge.Debug(
"debug",
"[sky_phone] Reserved IMEI %s; writing metadata to source %s slot %s.",
imei,
tostring(source),
tostring(slot.slot),
{ always = true }
)
local metadata_written = Bridge.Inventory.SetSlotMetadata(source, slot.slot, metadata)
Bridge.Debug(
"debug",
"[sky_phone] Metadata write result for source %s slot %s IMEI %s: %s.",
tostring(source),
tostring(slot.slot),
imei,
tostring(metadata_written),
{ always = true }
)
if not metadata_written then
Bridge.Database.Query("DELETE FROM `sky_phone_devices` WHERE `imei` = ?", { imei })
Bridge.Debug(
"error",
"[sky_phone] Inventory '%s' could not write phone metadata for source %s slot %s.",
Bridge.Inventory.GetResourceName(),
tostring(source),
tostring(slot.slot)
)
return nil, "metadata_unsupported"
end
return imei
end
Bridge.Database.Query([[
INSERT IGNORE INTO `sky_phone_devices` (`imei`, `device_name`)
VALUES (?, ?)
]], { imei, Config.Phone.DeviceName })
return imei
end
local function load_device(imei)
local rows = Bridge.Database.Query([[
SELECT d.`imei`, d.`device_name`, d.`account_id`, d.`sim_id`, d.`created_at`, d.`updated_at`,
a.`email`, s.`phone_number`, s.`sim_type`, s.`registered_at`
FROM `sky_phone_devices` d
LEFT JOIN `sky_phone_accounts` a ON a.`id` = d.`account_id`
LEFT JOIN `sky_phone_sims` s ON s.`id` = d.`sim_id`
WHERE d.`imei` = ?
LIMIT 1
]], { imei })
return rows[1]
end
local function load_device_data(imei)
local rows = Bridge.Database.Query([[
SELECT `namespace`, `payload`, `revision`
FROM `sky_phone_device_data`
WHERE `device_imei` = ?
]], { imei })
local data = {}
for _, row in ipairs(rows) do
data[row.namespace] = {
payload = json.decode(row.payload),
revision = tonumber(row.revision) or 0,
}
end
return data
end
local function account_devices(account_id, current_imei)
local rows = Bridge.Database.Query([[
SELECT `imei`, `device_name`, `created_at`, `updated_at`
FROM `sky_phone_devices`
WHERE `account_id` = ?
ORDER BY `updated_at` DESC
]], { account_id })
for _, row in ipairs(rows) do
row.current = row.imei == current_imei
end
return rows
end
local function bootstrap(source)
local session, error_response = SkyPhone.RequireSession(source)
if not session then
return nil, error_response
end
local device = load_device(session.imei)
if not device then
error(("[sky_phone] Active IMEI %s has no device row."):format(session.imei))
end
return {
token = session.token,
device = {
imei = device.imei,
name = device.device_name,
sim = device.sim_id and {
id = device.sim_id,
number = device.phone_number,
type = device.sim_type,
registered = device.registered_at ~= nil,
} or nil,
data = load_device_data(device.imei),
},
account = device.account_id and {
id = tonumber(device.account_id),
email = device.email,
devices = account_devices(device.account_id, device.imei),
} or nil,
notes = SkyPhoneNotes.List(device.account_id, device.imei),
}
end
local function refresh_source(source)
local payload = bootstrap(source)
if payload then
TriggerClientEvent("sky_phone:device:updated", source, payload)
end
end
SkyPhone.EnsureDevice = ensure_device
SkyPhone.FindDeviceSlots = find_device_slots
SkyPhone.LoadDevice = load_device
SkyPhone.RefreshSource = refresh_source
local function allow_auth_attempt(source)
local now = os.time()
local attempts = auth_attempts[source]
if not attempts or now - attempts.started_at >= 60 then
auth_attempts[source] = { count = 1, started_at = now }
return true
end
if attempts.count >= Config.Mail.AuthAttemptsPerMinute then
return false
end
attempts.count = attempts.count + 1
return true
end
local function normalize_email(value)
local email = trim(value)
if not email then
return nil
end
email = email:lower()
local local_part = email
if email:find("@", 1, true) then
local_part = email:match("^([^@]+)@" .. Config.Mail.Domain:gsub("%.", "%%.") .. "$")
end
if not local_part
or #local_part < Config.Mail.LocalPartMinLength
or #local_part > Config.Mail.LocalPartMaxLength
or not local_part:match("^[a-z0-9][a-z0-9._-]*[a-z0-9]$")
or local_part:find("..", 1, true)
then
return nil
end
return local_part .. "@" .. Config.Mail.Domain
end
local function valid_password(value)
if type(value) ~= "string" then
return false
end
local length = utf8.len(value)
return length and length >= Config.Mail.PasswordMinLength and length <= Config.Mail.PasswordMaxLength
end
local function link_account(source, account)
local session, error_response = SkyPhone.RequireSession(source)
if not session then
return error_response
end
if not SkyPhoneCalls.LinkAccountData(account.id, session.imei) then
return { success = false, error = "request_failed" }
end
if not Bridge.Database.Transaction({
{
query = "UPDATE `sky_phone_devices` SET `account_id` = ? WHERE `imei` = ?",
params = { account.id, session.imei },
},
{
query = [[
UPDATE `sky_phone_notes`
SET `account_id` = ?, `device_imei` = NULL, `revision` = `revision` + 1
WHERE `device_imei` = ? AND `account_id` IS NULL
]],
params = { account.id, session.imei },
},
{
query = [[
UPDATE `sky_phone_media`
SET `account_id` = ?, `device_imei` = NULL
WHERE `device_imei` = ? AND `account_id` IS NULL
]],
params = { account.id, session.imei },
},
}) then
return { success = false, error = "request_failed" }
end
refresh_source(source)
return {
success = true,
data = {
email = account.email,
devices = account_devices(account.id, session.imei),
},
}
end
local function authenticate(source, data, registering)
if not allow_auth_attempt(source) then
return { success = false, error = "rate_limited" }
end
if type(data) ~= "table" then
return { success = false, error = "invalid_request" }
end
local email = normalize_email(data.email)
local password = data.password
if not email then
return { success = false, error = registering and "invalid_email" or "invalid_credentials" }
end
if not valid_password(password) then
return { success = false, error = registering and "invalid_password" or "invalid_credentials" }
end
if registering then
local result = Bridge.Database.Query(
"INSERT IGNORE INTO `sky_phone_accounts` (`email`, `password`) VALUES (?, ?)",
{ email, password }
)
if affected_rows(result) == 0 then
return { success = false, error = "email_taken" }
end
end
local accounts = Bridge.Database.Query(
"SELECT `id`, `email` FROM `sky_phone_accounts` WHERE `email` = ? AND `password` = ? LIMIT 1",
{ email, password }
)
if not accounts[1] then
return { success = false, error = "invalid_credentials" }
end
return link_account(source, accounts[1])
end
function SkyPhone.RequireSession(source)
local session = sessions[source]
if not session then
return nil, { success = false, error = "device_not_open" }
end
local matches = find_device_slots(source, session.imei)
if not matches[1] then
sessions[source] = nil
TriggerClientEvent("sky_phone:device:invalidated", source)
return nil, { success = false, error = "device_not_owned" }
end
session.slot = matches[1].slot
return session
end
function SkyPhone.AllowOperation(source, operation, maximum, window_seconds)
local now = os.time()
operation_attempts[source] = operation_attempts[source] or {}
local attempts = operation_attempts[source][operation]
if not attempts or now - attempts.started_at >= window_seconds then
operation_attempts[source][operation] = { count = 1, started_at = now }
return true
end
if attempts.count >= maximum then
Bridge.Debug(
"warn",
"[sky_phone] Rate limit '%s' exceeded by source %s.",
operation,
tostring(source)
)
return false
end
attempts.count = attempts.count + 1
return true
end
function SkyPhone.RequireAccount(source)
local session, error_response = SkyPhone.RequireSession(source)
if not session then
return nil, error_response
end
local device = load_device(session.imei)
if not device or not device.account_id then
return nil, { success = false, error = "not_authenticated" }
end
return {
id = tonumber(device.account_id),
email = device.email,
imei = device.imei,
}
end
function SkyPhone.NotifyAccount(account_id, event_name, data)
for source in pairs(sessions) do
local account = SkyPhone.RequireAccount(source)
if account and account.id == tonumber(account_id) then
TriggerClientEvent(event_name, source, data)
end
end
end
function SkyPhone.NotifyAccountDevices(account_id, event_name, data)
local rows = Bridge.Database.Query([[
SELECT d.`imei`, d.`device_name`, settings.`payload` AS `settings`
FROM `sky_phone_devices` d
LEFT JOIN `sky_phone_device_data` settings
ON settings.`device_imei` = d.`imei` AND settings.`namespace` = 'settings'
WHERE d.`account_id` = ?
]], { account_id })
local devices = {}
for _, row in ipairs(rows) do
devices[row.imei] = row
end
for _, player_source in ipairs(Bridge.Framework.GetPlayers()) do
local source = tonumber(player_source) or player_source
local notified_devices = {}
for _, item in ipairs(Bridge.Inventory.GetSlotsWithItem(source, Config.Phone.Item)) do
local imei = item.metadata and item.metadata.imei
local device = imei and devices[imei]
if device and not notified_devices[imei] then
local payload = {}
for key, value in pairs(data) do
payload[key] = value
end
payload.device = {
imei = device.imei,
name = device.device_name,
settings = device.settings,
}
notified_devices[imei] = true
TriggerClientEvent(event_name, source, payload)
end
end
end
end
function SkyPhone.RefreshAccount(account_id)
for source in pairs(sessions) do
local account = SkyPhone.RequireAccount(source)
if account and account.id == tonumber(account_id) then
refresh_source(source)
end
end
end
function SkyPhone.RefreshDevice(imei)
for source, session in pairs(sessions) do
if session.imei == imei then
refresh_source(source)
end
end
end
local function open_phone(source, used_item)
Bridge.Debug(
"debug",
"[sky_phone] Usable phone callback invoked for source %s.",
tostring(source),
{ always = true }
)
local slot = resolve_used_slot(source, used_item)
if not slot then
Bridge.Debug(
"debug",
"[sky_phone] Phone open rejected for source %s: no exact inventory slot.",
tostring(source),
{ always = true }
)
TriggerClientEvent("sky_phone:device:error", source, "phone_slot_missing")
return false
end
local imei, error_code = ensure_device(source, slot)
if not imei then
Bridge.Debug(
"debug",
"[sky_phone] Phone open rejected for source %s slot %s: %s.",
tostring(source),
tostring(slot.slot),
tostring(error_code),
{ always = true }
)
TriggerClientEvent("sky_phone:device:error", source, error_code)
return false
end
sessions[source] = {
imei = imei,
slot = slot.slot,
token = ("%s:%s:%s"):format(imei, tostring(source), tostring(GetGameTimer())),
}
local payload = bootstrap(source)
Bridge.Debug(
"debug",
"[sky_phone] Triggering client open for source %s slot %s IMEI %s account_linked=%s.",
tostring(source),
tostring(slot.slot),
imei,
tostring(payload.account ~= nil),
{ always = true }
)
TriggerClientEvent("sky_phone:device:open", source, payload)
return true
end
function SkyPhone.OpenDeviceForCall(source, imei)
local matches = find_device_slots(source, imei)
if not matches[1] then
Bridge.Debug("warn", "[sky_phone] Could not open ringing device %s for source %s.", tostring(imei), tostring(source))
return false
end
sessions[source] = {
imei = imei,
slot = matches[1].slot,
token = ("%s:%s:%s"):format(imei, tostring(source), tostring(GetGameTimer())),
}
TriggerClientEvent("sky_phone:device:open", source, bootstrap(source))
return true
end
Bridge.Debug(
"debug",
"[sky_phone] Registering usable item '%s' through inventory '%s'.",
Config.Phone.Item,
tostring(Bridge.Inventory.GetResourceName()),
{ always = true }
)
local usable_registered = Bridge.Inventory.RegisterUsableItem(Config.Phone.Item, open_phone)
Bridge.Debug(
"debug",
"[sky_phone] Usable item registration returned: %s.",
tostring(usable_registered),
{ always = true }
)
Bridge.Callbacks.Register("sky_phone:device:close", function(source)
sessions[source] = nil
return { success = true }
end)
Bridge.Callbacks.Register("sky_phone:device:development-open", function(source)
if not Config.Phone.DevelopmentCommand then
return { success = false, error = "disabled" }
end
return { success = open_phone(source, nil) }
end)
Bridge.Callbacks.Register("sky_phone:device:save", function(source, data)
if not SkyPhone.AllowOperation(source, "device_save", 120, 60) then
return { success = false, error = "rate_limited" }
end
local session, error_response = SkyPhone.RequireSession(source)
if not session then
return error_response
end
if type(data) ~= "table" or not allowed_device_namespaces[data.namespace] then
return { success = false, error = "invalid_namespace" }
end
local encoded = json.encode(data.payload)
if #encoded > max_device_data_bytes then
return { success = false, error = "payload_too_large" }
end
local revision = math.max(0, math.floor(tonumber(data.revision) or 0))
local rows = Bridge.Database.Query([[
SELECT `payload`, `revision`
FROM `sky_phone_device_data`
WHERE `device_imei` = ? AND `namespace` = ?
LIMIT 1
]], { session.imei, data.namespace })
if rows[1] then
local current_revision = tonumber(rows[1].revision) or 0
if revision ~= current_revision then
refresh_source(source)
return {
success = false,
error = "conflict",
data = { payload = json.decode(rows[1].payload), revision = current_revision },
}
end
local result = Bridge.Database.Query([[
UPDATE `sky_phone_device_data`
SET `payload` = ?, `revision` = `revision` + 1
WHERE `device_imei` = ? AND `namespace` = ? AND `revision` = ?
]], { encoded, session.imei, data.namespace, revision })
if affected_rows(result) ~= 1 then
refresh_source(source)
return { success = false, error = "conflict" }
end
return { success = true, data = { revision = revision + 1 } }
end
if revision ~= 0 then
return { success = false, error = "conflict" }
end
local result = Bridge.Database.Query([[
INSERT IGNORE INTO `sky_phone_device_data` (`device_imei`, `namespace`, `payload`)
VALUES (?, ?, ?)
]], { session.imei, data.namespace, encoded })
if affected_rows(result) <= 0 then
refresh_source(source)
return { success = false, error = "conflict" }
end
return { success = true, data = { revision = 1 } }
end)
for _, endpoint in ipairs({ "account:login", "mail:login" }) do
Bridge.Callbacks.Register("sky_phone:" .. endpoint, function(source, data)
return authenticate(source, data, false)
end)
end
for _, endpoint in ipairs({ "account:register", "mail:register" }) do
Bridge.Callbacks.Register("sky_phone:" .. endpoint, function(source, data)
return authenticate(source, data, true)
end)
end
for _, endpoint in ipairs({ "account:logout", "mail:logout" }) do
Bridge.Callbacks.Register("sky_phone:" .. endpoint, function(source)
local account, error_response = SkyPhone.RequireAccount(source)
if not account then
return error_response
end
if not SkyPhoneCalls.CopyCloudToDevice(account.id, account.imei) then
return { success = false, error = "request_failed" }
end
Bridge.Database.Query("UPDATE `sky_phone_devices` SET `account_id` = NULL WHERE `imei` = ?", { account.imei })
refresh_source(source)
return { success = true }
end)
end
Bridge.Callbacks.Register("sky_phone:account:devices", function(source)
local account, error_response = SkyPhone.RequireAccount(source)
if not account then
return error_response
end
return { success = true, data = account_devices(account.id, account.imei) }
end)
Bridge.Callbacks.Register("sky_phone:account:remove-device", function(source, data)
if not SkyPhone.AllowOperation(source, "remove_device", 10, 60) then
return { success = false, error = "rate_limited" }
end
local account, error_response = SkyPhone.RequireAccount(source)
if not account then
return error_response
end
if type(data) ~= "table" or not SkyPhoneImei.IsValid(data.imei) or not valid_password(data.password) then
return { success = false, error = "invalid_request" }
end
if data.imei == account.imei then
return { success = false, error = "current_device" }
end
local passwords = Bridge.Database.Query("SELECT `id` FROM `sky_phone_accounts` WHERE `id` = ? AND `password` = ? LIMIT 1", {
account.id,
data.password,
})
if not passwords[1] then
return { success = false, error = "invalid_credentials" }
end
local result = Bridge.Database.Query(
"UPDATE `sky_phone_devices` SET `account_id` = NULL WHERE `imei` = ? AND `account_id` = ?",
{ data.imei, account.id }
)
if affected_rows(result) ~= 1 then
return { success = false, error = "device_not_found" }
end
SkyPhone.RefreshDevice(data.imei)
SkyPhone.RefreshAccount(account.id)
return { success = true, data = account_devices(account.id, account.imei) }
end)
Bridge.Callbacks.Register("sky_phone:device:factory-reset", function(source)
if not SkyPhone.AllowOperation(source, "factory_reset", 3, 60) then
return { success = false, error = "rate_limited" }
end
local session, error_response = SkyPhone.RequireSession(source)
if not session then
return error_response
end
local media_remote_ids = SkyPhoneMedia.GetDeviceRemoteIds(session.imei)
if not Bridge.Database.Transaction({
{
query = "DELETE FROM `sky_phone_device_data` WHERE `device_imei` = ?",
params = { session.imei },
},
{
query = "DELETE FROM `sky_phone_notes` WHERE `device_imei` = ? AND `account_id` IS NULL",
params = { session.imei },
},
{
query = "DELETE FROM `sky_phone_media` WHERE `device_imei` = ? AND `account_id` IS NULL",
params = { session.imei },
},
{
query = "DELETE FROM `sky_phone_contacts` WHERE `device_imei` = ? AND `account_id` IS NULL",
params = { session.imei },
},
{
query = "DELETE FROM `sky_phone_call_entries` WHERE `device_imei` = ? AND `account_id` IS NULL",
params = { session.imei },
},
{
query = "UPDATE `sky_phone_devices` SET `account_id` = NULL, `device_name` = ? WHERE `imei` = ?",
params = { Config.Phone.DeviceName, session.imei },
},
}) then
return { success = false, error = "request_failed" }
end
SkyPhoneMedia.CleanupRemoteFiles(media_remote_ids)
refresh_source(source)
return { success = true }
end)
AddEventHandler("playerDropped", function()
sessions[source] = nil
auth_attempts[source] = nil
operation_attempts[source] = nil
end)
AddEventHandler("onResourceStop", function(resource_name)
if resource_name == GetCurrentResourceName() then
sessions = {}
auth_attempts = {}
operation_attempts = {}
end
end)
end)