Add the Companies app, resilient call handling, custom app registry, vendor compatibility, storage policies, frontend bridge, tests, documentation, config, locale, and SQL migrations.
13 KiB
sky_phone
Custom Apps
sky_phone erkennt Registrierungen gestarteter Fremd-App-Ressourcen über integrierte
Hersteller-Aliase und übernimmt unterstützte Apps automatisch in Springboard und App Store. In
App-Ressourcen müssen dafür keine Sky-Vorlagen abgelegt werden. Unterstützt werden die
dokumentierten Basisverträge von LB Phone, 17Movement, High Phone, Quasar Smartphone V3 und
YSeries; die Aliase lb-phone, 17mov_Phone, high-phone, qs-smartphone und yseries werden
direkt von sky_phone bereitgestellt. Einrichtung und ehrliche Kompatibilitätsgrenzen stehen in der
deutschen Custom-App-Anleitung.
FlipTok verification
FlipTok verification is server-authoritative and limited to the framework groups configured in
Config.FlipTok.AdminGroups; no command ACE is required. Use
/fliptokverify <@handle> [on|off]. Without on or off, the current blue-check state is toggled.
The command name is configurable through Config.FlipTok.VerifyCommand.
Verification command access uses Config.FlipTok.AdminGroups. The report moderation overview is
server-authoritative and independently restricted through Config.FlipTok.ReportAdminGroups.
FlipTok music
Licensed music can be exposed in the composer through Config.FlipTok.MusicTracks. Keep the IDs
stable because published videos store the selected ID; URLs must be directly playable by the NUI.
MusicTracks = {
{ Id = "night-drive", Title = "Night Drive", Artist = "Sky Radio", Url = "https://cdn.example.com/night-drive.ogg" },
}
Music app
The standalone Music app plays audio only inside the current player's NUI. It never creates a
world sound, voice channel, positional event, or 3D-audio state that another player can hear.
Server-owned MP3/OGG tracks and their optional artwork live directly in
sky_phone/config/music. Define only their stable ID, title, and artist in
sky_phone/config/music.lua:
Tracks = {
{
Id = "night-drive",
Title = "Night Drive",
Artist = "Sky Records",
},
}
The resource searches config/music and all of its subdirectories for files whose name matches
the ID. For the example above, place night-drive.ogg or night-drive.mp3 anywhere below that
directory. Optional artwork uses the same name with .webp, .png, .jpg, or .jpeg. If both
audio formats exist, OGG wins; artwork priority is WEBP, PNG, JPG, then JPEG. More than one file
with the selected extension and ID is ambiguous and the server reports it in the console. Folder
names may contain spaces, but must not contain path separators or control characters. Do not name
a folder itself with a supported audio or artwork extension.
No frontend build is needed when tracks change. Restart the resource so FiveM republishes the files and reloads the track configuration. Keep existing track IDs stable because playlists store those IDs. Moving matching files between subdirectories does not affect playlists.
When upgrading from the previous path-based configuration, rename each audio and artwork file to
its existing ID and remove the File and Artwork fields. Do not change the ID itself, otherwise
existing playlist entries can no longer resolve the track.
Players can add public YouTube video links to their own library. Metadata is requested through
YouTube's oEmbed endpoint on the server, while playback uses the embedded YouTube player only on
that player's NUI. Personal songs and playlists are stored per linked iFruit account, or per phone
IMEI while signed out, in the sky_phone_music_* tables. Limits and rate controls are configured in
config/music.lua.
FlipTok accounts
FlipTok profiles use their own username and password login. Registration requires a linked iFruit account once so an existing creator profile, videos, followers, and verification can be claimed without data loss. Login sessions are stored per phone IMEI and survive resource or server restarts; signing out removes only that device session.
Set a private, stable password pepper in server.cfg before players register. Changing it later
invalidates every existing FlipTok password:
set sky_phone_fliptok_password_pepper "replace-with-a-long-random-secret"
Passwords are stored as salted hashes. The pepper is read server-side from the convar and is never included in the NUI bundle.
Standalone FiveM phone built with Vue 3, TypeScript, Pinia, Vue Router, Konsta UI 5, and Tailwind CSS 4. Each non-stackable phone item receives a unique 15-digit IMEI and owns its server-persisted device state. The phone opens through the usable item; /phone is disabled unless Config.Phone.DevelopmentCommand is enabled explicitly.
An iFruit account is optional. Unlinked devices retain local settings, alarms, media, apps, notes, contacts, and recent calls. Linking from Mail or Settings moves local data into an empty cloud account; an existing cloud dataset wins over local contacts and recents. Signing out keeps an editable local snapshot without deleting cloud data.
Requirements
- ESX Legacy (
es_extended), Qbox (qbx_core), or QBCore (qb-core). The bridge selects a running supported framework whenConfig.Bridge.Frameworkis set to"auto". - A supported inventory:
ox_inventory,qb-inventory,lj-inventory,qs-inventory,codem-inventory,core_inventory,mf-inventory, orsmx-inventory. The bridge auto-detects a running provider and normalizes metadata, slots, counts, item mutations, and usable-item callbacks.mf-inventoryandsmx-inventoryrequire ESX. Because SMX stores standard ESX items as stacks, its adapter persists one active Phone/SIM metadata record per player and item type in ESX player metadata. - A non-stackable inventory item named
phone. - Two unique, non-stackable inventory items named
sky_phone_sim_registeredandsky_phone_sim_anonymous. Their metadata is initialized automatically on first use, so shops and crafting recipes add plain items without supplying a number. oxmysqlwith MySQL/MariaDB.pma-voicewhenConfig.Calls.VoiceProvideris set to"pma".- A FiveManage V3 Media API token for Camera photo/video uploads and Gallery deletion. Set the
server-only
Config.Media.FiveManage.ApiKeyinsky_phone/config/media.lua; the token is never sent to NUI because clients receive temporary presigned upload URLs instead. yaca-voice,pma-voice, orsaltychatwhen the Radio app is enabled.Config.Radio.VoiceProvider = "auto"selects the first running provider in that order.
Messages GIF provider
Configure GIF search in sky_phone/config/config.lua:
Config.Media.GiphyApiKey = "YOUR_GIPHY_API_KEY"
GIPHY provides trending and searched GIFs through a paginated server-side proxy. The shared
config.lua is loaded by both FiveM runtimes, so its values are available to clients even though
only the server uses the GIPHY key. Photo and video actions in Messages are intentionally inactive
until their dedicated implementation is available.
Database migrations run automatically. Existing sky_phone_mail_accounts installations are renamed to sky_phone_accounts while preserving account IDs and mail foreign keys. iFruit passwords are intentional in-character credentials and remain plaintext VARCHAR(64) values; registration screens warn players never to reuse a real password.
Camera and Gallery media is stored in sky_phone_media. Signed-out captures belong to the current
IMEI; linking an iFruit account moves those rows into the account gallery so every linked phone sees
them. Signing out hides cloud media without deleting it. Factory reset removes device-local media
and attempts to delete its remote FiveManage files, while account-owned media remains in the cloud.
For a fresh manual database installation, import sky_phone/sql/install.sql. It contains the complete current table, key, index, collation, and foreign-key schema. Runtime migrations remain authoritative for upgrading an existing installation and must stay enabled.
Framework, inventory, callback, notification, and database integrations live under sky_phone/source/bridge. The resource has no dependency on any other Sky resource.
Radio app
The built-in Radio app supports a primary frequency, volume, recent channels, participant lists, automatic rejoin, join/leave notifications, and an optional service number. YACA and SaltyChat support the configured secondary frequency; PMA Voice exposes one radio channel, so the secondary input is hidden automatically.
Configure frequency bounds and precision, restricted channel ranges and allowed jobs, history length, defaults, badge validation, radio display-name permissions, and the built-in speaker HUD under Config.Radio. Config.Radio.DisplayName.AllowedJobs maps authoritative framework job names to their minimum grade. Unlisted jobs cannot change the name; an empty name restores the normal player or character name. Channel and display-name access are always checked server-side. Config.Radio.Hud controls the phone-owned overlay, its screen edge, offsets, and recent-speaker duration without depending on another HUD resource. Active-speaker highlighting uses the YACA radio events; the Radio app itself continues to support every configured voice provider.
Radio profiles are stored in sky_phone_radio_profiles. Runtime migration creates the table automatically; fresh installations receive it through sky_phone/sql/install.sql.
Inventory metadata has no framework-wide standard: providers differ in export names, callback payloads, slot handling, and whether metadata is called metadata or info. For that reason, sky_phone uses explicit provider adapters instead of guessing exports at runtime. Every supported adapter implements slot lookup, item lookup, metadata replacement, capacity handling, add/remove operations, and usable-item registration. Providers without a separate capacity export use their authoritative add operation as the final capacity gate.
When a SIM is ejected or replaced, the returned inventory item is rebuilt from the authoritative sky_phone_sims row. Its metadata contains sim_metadata_version, sim_id, phone_number, formatted_number, and sim_type. Registered SIMs additionally contain firstname, lastname, birthdate, and registered_at. The internal framework owner identifier remains database-only. Inserting the item again resolves the SIM by sim_id; contacts and device/cloud data remain attached to their existing phone-owned persistence instead of being copied into inventory metadata.
For ox_inventory, configure all three items with stack = false and consume = 0. Do not configure a client event or export. Ox then completes its normal server-authoritative use flow and emits ox_inventory:usedItem; the bridge resolves the authoritative slot again and only opens the matching device or SIM. A client export would return before Ox calls useItem and therefore prevent ox_inventory:usedItem from being emitted.
Example ox_inventory/data/items.lua entries:
["phone"] = {
label = "iFruit Phone",
weight = 200,
stack = false,
close = true,
consume = 0,
},
["sky_phone_sim_registered"] = {
label = "Registered SIM",
weight = 5,
stack = false,
close = true,
consume = 0,
},
["sky_phone_sim_anonymous"] = {
label = "Anonymous SIM",
weight = 5,
stack = false,
close = true,
consume = 0,
},
For QBCore-style item tables, define the same names with unique = true, useable = true, and shouldClose = true. The provider adapter registers the server-side usable callbacks; no lb-phone event or export is used.
The homescreen is an original implementation inspired by the interaction and layout concepts in lukejacksonn/homescreen, inspected at commit 98a812f. No source code or image assets from that project are included.
Development
From frontend/, run pnpm dev for browser development. The phone opens automatically and NUI callbacks are mocked. Feather can be opened directly with the following browser scenarios:
- Full data:
http://localhost:5174/?apiPort=3002#/apps/feather - Login and registration:
http://localhost:5174/?apiPort=3002&testScenario=feather-login#/apps/feather - Profile onboarding:
http://localhost:5174/?apiPort=3002&testScenario=feather-onboarding#/apps/feather - Empty states:
http://localhost:5174/?apiPort=3002&testScenario=feather-empty#/apps/feather
The full-data scenario includes posts, replies, quotes, media grids, profiles, ranked hashtags, network search results, and every notification type. Run pnpm test, pnpm typecheck, pnpm lint, and pnpm build before packaging.
pnpm build uses build.cjs to replace sky_phone/source/html deterministically with the Vite output. Production assets use relative paths so they work through the FiveM NUI protocol.