mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2026-03-22 04:06:18 +00:00
Compare commits
1 Commits
ebc045019a
...
refactor-b
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e4b25f0d4 |
223
lib/api.rb
223
lib/api.rb
@@ -3,7 +3,7 @@ class W3DHub
|
|||||||
|
|
||||||
LOG_TAG = "W3DHub::Api".freeze
|
LOG_TAG = "W3DHub::Api".freeze
|
||||||
|
|
||||||
API_TIMEOUT = 30 # seconds
|
API_TIMEOUT = 10 # seconds
|
||||||
USER_AGENT = "Cyberarm's Linux Friendly W3D Hub Launcher v#{W3DHub::VERSION}".freeze
|
USER_AGENT = "Cyberarm's Linux Friendly W3D Hub Launcher v#{W3DHub::VERSION}".freeze
|
||||||
DEFAULT_HEADERS = [
|
DEFAULT_HEADERS = [
|
||||||
["user-agent", USER_AGENT],
|
["user-agent", USER_AGENT],
|
||||||
@@ -25,7 +25,7 @@ class W3DHub
|
|||||||
|
|
||||||
HTTP_CLIENTS = {}
|
HTTP_CLIENTS = {}
|
||||||
|
|
||||||
def self.async_http(method, path, headers = DEFAULT_HEADERS, body = nil, backend = :w3dhub, &callback)
|
def self.async_http(method:, path:, headers:, body:, backend:, async:, &callback)
|
||||||
raise "NO CALLBACK DEFINED!" unless callback
|
raise "NO CALLBACK DEFINED!" unless callback
|
||||||
|
|
||||||
case backend
|
case backend
|
||||||
@@ -56,35 +56,20 @@ class W3DHub
|
|||||||
headers << ["authorization", "Bearer #{Store.account.access_token}"]
|
headers << ["authorization", "Bearer #{Store.account.access_token}"]
|
||||||
end
|
end
|
||||||
|
|
||||||
Store.network_manager.request(method, url, headers, body, nil, &callback)
|
Store.network_manager.request(method, url, headers, body, async, &callback)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.provision_http_client(hostname)
|
def self.post(path:, headers: DEFAULT_HEADERS, body: nil, backend: :w3dhub, async: true, &callback)
|
||||||
# Pin http clients to their host Thread so the fiber scheduler doesn't get upset and raise an error
|
async_http(method: :post, path: path, headers: headers, body: body, backend: backend, async: async, &callback)
|
||||||
HTTP_CLIENTS[Thread.current] ||= {}
|
|
||||||
return HTTP_CLIENTS[Thread.current][hostname.downcase] if HTTP_CLIENTS[Thread.current][hostname.downcase]
|
|
||||||
|
|
||||||
ssl_context = W3DHub.ca_bundle_path ? OpenSSL::SSL::SSLContext.new : nil
|
|
||||||
ssl_context&.set_params(
|
|
||||||
ca_file: W3DHub.ca_bundle_path,
|
|
||||||
verify_mode: OpenSSL::SSL::VERIFY_PEER
|
|
||||||
)
|
|
||||||
|
|
||||||
endpoint = Async::HTTP::Endpoint.parse(hostname, ssl_context: ssl_context)
|
|
||||||
HTTP_CLIENTS[Thread.current][hostname.downcase] = Async::HTTP::Client.new(endpoint)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.post(path, headers = DEFAULT_HEADERS, body = nil, backend = :w3dhub, &callback)
|
def self.get(path:, headers: DEFAULT_HEADERS, body: nil, backend: :w3dhub, async: true, &callback)
|
||||||
async_http(:post, path, headers, body, backend, &callback)
|
async_http(method: :get, path: path, headers: headers, body: body, backend: backend, async: async, &callback)
|
||||||
end
|
|
||||||
|
|
||||||
def self.get(path, headers = DEFAULT_HEADERS, body = nil, backend = :w3dhub, &callback)
|
|
||||||
async_http(:get, path, headers, body, backend, &callback)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Api.get but handles any URL instead of known hosts
|
# Api.get but handles any URL instead of known hosts
|
||||||
def self.fetch(path, headers = DEFAULT_HEADERS, body = nil, backend = nil, &callback)
|
def self.fetch(path:, headers: DEFAULT_HEADERS, body: nil, backend: :w3dhub, async: true, &callback)
|
||||||
async_http(:get, path, headers, body, backend, &callback)
|
async_http(method: :get, path: path, headers: headers, body: body, backend: backend, async: async, &callback)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Method: POST
|
# Method: POST
|
||||||
@@ -103,73 +88,76 @@ class W3DHub
|
|||||||
# On a failed login the service responds with:
|
# On a failed login the service responds with:
|
||||||
# {"error":"login-failed"}
|
# {"error":"login-failed"}
|
||||||
def self.refresh_user_login(refresh_token, backend = :w3dhub, &callback)
|
def self.refresh_user_login(refresh_token, backend = :w3dhub, &callback)
|
||||||
|
body = URI.encode_www_form("data": JSON.dump({ refreshToken: refresh_token }))
|
||||||
|
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
user_data = JSON.parse(result.data, symbolize_names: true)
|
user_data = JSON.parse(result.data, symbolize_names: true)
|
||||||
|
|
||||||
if user_data[:error]
|
if user_data[:error]
|
||||||
callback.call(false)
|
callback.call(CyberarmEngine::Result.new(data: false))
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|
||||||
user_details_data = user_details(user_data[:userid]) || {}
|
user_details_data = user_details(user_data[:userid]) || {}
|
||||||
|
|
||||||
callback.call(Account.new(user_data, user_details_data))
|
callback.call(CyberarmEngine::Result.new(data: Account.new(user_data, user_details_data)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch refresh user login:" }
|
logger.error(LOG_TAG) { "Failed to fetch refresh user login:" }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ refreshToken: refresh_token }))
|
post(path: "/apis/launcher/1/user-login", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
post("/apis/launcher/1/user-login", FORM_ENCODED_HEADERS, body, backend, &handler)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# See #user_refresh_token
|
# See #user_refresh_token
|
||||||
def self.user_login(username, password, backend = :w3dhub, &callback)
|
def self.user_login(username, password, backend = :w3dhub, &callback)
|
||||||
|
body = URI.encode_www_form("data": JSON.dump({ username: username, password: password }))
|
||||||
|
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
user_data = JSON.parse(result.data, symbolize_names: true)
|
user_data = JSON.parse(result.data, symbolize_names: true)
|
||||||
|
|
||||||
if user_data[:error]
|
if user_data[:error]
|
||||||
callback.call(false)
|
callback.call(CyberarmEngine::Result.new(data: false))
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|
||||||
user_details_data = user_details(user_data[:userid]) || {}
|
user_details_data = user_details(user_data[:userid]) || {}
|
||||||
|
|
||||||
callback.call(Account.new(user_data, user_details_data))
|
callback.call(CyberarmEngine::Result.new(data: Account.new(user_data, user_details_data)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch user login:" }
|
logger.error(LOG_TAG) { "Failed to fetch user login:" }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ username: username, password: password }))
|
post(path: "/apis/launcher/1/user-login", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
post("/apis/launcher/1/user-login", FORM_ENCODED_HEADERS, body, backend, &handler)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# /apis/w3dhub/1/get-user-details
|
# /apis/w3dhub/1/get-user-details
|
||||||
#
|
#
|
||||||
# Response: avatar-uri (Image download uri), id, username
|
# Response: avatar-uri (Image download uri), id, username
|
||||||
def self.user_details(id, backend = :w3dhub, &callback)
|
def self.user_details(id, backend = :w3dhub, &callback)
|
||||||
|
body = URI.encode_www_form("data": JSON.dump({ id: id }))
|
||||||
|
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
callback.call(JSON.parse(result.data, symbolize_names: true))
|
callback.call(CyberarmEngine::Result.new(data: JSON.parse(result.data, symbolize_names: true)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch user details:" }
|
logger.error(LOG_TAG) { "Failed to fetch user details:" }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ id: id }))
|
post(path: "/apis/w3dhub/1/get-user-details", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
post("/apis/w3dhub/1/get-user-details", FORM_ENCODED_HEADERS, body, backend, &handler)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# /apis/w3dhub/1/get-service-status
|
# /apis/w3dhub/1/get-service-status
|
||||||
@@ -178,16 +166,16 @@ class W3DHub
|
|||||||
def self.service_status(backend = :w3dhub, &callback)
|
def self.service_status(backend = :w3dhub, &callback)
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
callback.call(ServiceStatus.new(result.data))
|
callback.call(CyberarmEngine::Result.new(data: ServiceStatus.new(result.data)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch service status:" }
|
logger.error(LOG_TAG) { "Failed to fetch service status:" }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
post("/apis/w3dhub/1/get-service-status", DEFAULT_HEADERS, nil, backend, &handler)
|
post(path: "/apis/w3dhub/1/get-service-status", backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# /apis/launcher/1/get-applications
|
# /apis/launcher/1/get-applications
|
||||||
@@ -195,87 +183,104 @@ class W3DHub
|
|||||||
# Launcher sends an empty data request: data={}
|
# Launcher sends an empty data request: data={}
|
||||||
# Response is a list of applications/games
|
# Response is a list of applications/games
|
||||||
def self.applications(backend = :w3dhub, &callback)
|
def self.applications(backend = :w3dhub, &callback)
|
||||||
|
async = !callback.nil?
|
||||||
|
|
||||||
|
# Complicated why to "return" direct value
|
||||||
|
callback = ->(result) { result }
|
||||||
|
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
callback.call(Applications.new(result.data, backend))
|
callback.call(CyberarmEngine::Result.new(data: Applications.new(result.data, backend)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch applications list:" }
|
logger.error(LOG_TAG) { "Failed to fetch applications list:" }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
post("/apis/launcher/1/get-applications", DEFAULT_HEADERS, nil, backend, &handler)
|
post(path: "/apis/launcher/1/get-applications", async: async, backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Populate applications list from primary and alternate backends
|
# Populate applications list from primary and alternate backends
|
||||||
# (alternate only has latest public builds of _most_ games)
|
# (alternate only has latest public builds of _most_ games)
|
||||||
def self._applications
|
def self._applications(&callback)
|
||||||
applications_primary = Store.account ? Api.applications(:w3dhub) : false
|
handler = lambda do |result|
|
||||||
applications_alternate = Api.applications(:alt_w3dhub)
|
# nothing special on offer if we're not logged in
|
||||||
|
applications_primary = Store.account ? Api.applications(:w3dhub).data : false
|
||||||
|
applications_alternate = Api.applications(:alt_w3dhub).data
|
||||||
|
|
||||||
# Fail if we fail to fetch applications list from either backend
|
# Fail if we fail to fetch applications list from either backend
|
||||||
return false unless applications_primary || applications_alternate
|
unless applications_primary || applications_alternate
|
||||||
|
callback.call(CyberarmEngine::Result.new)
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
return applications_alternate unless applications_primary
|
unless applications_primary
|
||||||
|
callback.call(CyberarmEngine::Result.new(data: applications_alternate))
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
# Merge the two app lists together
|
# Merge the two app lists together
|
||||||
apps = applications_alternate
|
apps = applications_alternate
|
||||||
if applications_primary
|
if applications_primary
|
||||||
applications_primary.games.each do |game|
|
applications_primary.games.each do |game|
|
||||||
# Check if game exists in alternate list
|
# Check if game exists in alternate list
|
||||||
_game = apps.games.find { |g| g.id == game.id }
|
_game = apps.games.find { |g| g.id == game.id }
|
||||||
unless _game
|
unless _game
|
||||||
apps.games << game
|
apps.games << game
|
||||||
|
|
||||||
# App didn't exist in alternates list
|
# App didn't exist in alternates list
|
||||||
# comparing channels isn't useful
|
# comparing channels isn't useful
|
||||||
next
|
|
||||||
end
|
|
||||||
|
|
||||||
# If it does, check that all of its channels also exist in alternate list
|
|
||||||
# and that the primary versions are the same as the alternates list
|
|
||||||
game.channels.each do |channel|
|
|
||||||
_channel = _game.channels.find { |c| c.id == channel.id }
|
|
||||||
|
|
||||||
unless _channel
|
|
||||||
_game.channels << channel
|
|
||||||
|
|
||||||
# App didn't have channel in alternates list
|
|
||||||
# comparing channel isn't useful
|
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|
||||||
# If channel versions and access levels match then all's well
|
# If it does, check that all of its channels also exist in alternate list
|
||||||
if channel.current_version == _channel.current_version &&
|
# and that the primary versions are the same as the alternates list
|
||||||
channel.user_level == _channel.user_level
|
game.channels.each do |channel|
|
||||||
|
_channel = _game.channels.find { |c| c.id == channel.id }
|
||||||
|
|
||||||
# All's Well!
|
unless _channel
|
||||||
next
|
_game.channels << channel
|
||||||
end
|
|
||||||
|
|
||||||
# If the access levels don't match then overwrite alternate's channel with primary's channel
|
# App didn't have channel in alternates list
|
||||||
if channel.user_level != _channel.user_level
|
# comparing channel isn't useful
|
||||||
# Replace alternate's channel with primary's channel
|
next
|
||||||
_game.channels[_game.channels.index(_channel)] = channel
|
end
|
||||||
|
|
||||||
# Replaced, continue.
|
# If channel versions and access levels match then all's well
|
||||||
next
|
if channel.current_version == _channel.current_version &&
|
||||||
end
|
channel.user_level == _channel.user_level
|
||||||
|
|
||||||
# If versions don't match then pick whichever one is higher
|
# All's Well!
|
||||||
if Gem::Version.new(channel.current_version) > Gem::Version.new(_channel.current_version)
|
next
|
||||||
# Replace alternate's channel with primary's channel
|
end
|
||||||
_game.channels[_game.channels.index(_channel)] = channel
|
|
||||||
else
|
# If the access levels don't match then overwrite alternate's channel with primary's channel
|
||||||
# Do nothing, alternate backend version is greater.
|
if channel.user_level != _channel.user_level
|
||||||
|
# Replace alternate's channel with primary's channel
|
||||||
|
_game.channels[_game.channels.index(_channel)] = channel
|
||||||
|
|
||||||
|
# Replaced, continue.
|
||||||
|
next
|
||||||
|
end
|
||||||
|
|
||||||
|
# If versions don't match then pick whichever one is higher
|
||||||
|
if Gem::Version.new(channel.current_version) > Gem::Version.new(_channel.current_version)
|
||||||
|
# Replace alternate's channel with primary's channel
|
||||||
|
_game.channels[_game.channels.index(_channel)] = channel
|
||||||
|
else
|
||||||
|
# Do nothing, alternate backend version is greater.
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
callback.call(CyberarmEngine::Result.new(data: apps))
|
||||||
end
|
end
|
||||||
|
|
||||||
apps
|
# Bit hacky but we just need to run this handler from the networking thread and async reactor
|
||||||
|
get(path: "", backend: nil, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# /apis/w3dhub/1/get-news
|
# /apis/w3dhub/1/get-news
|
||||||
@@ -285,18 +290,18 @@ class W3DHub
|
|||||||
def self.news(category, backend = :w3dhub, &callback)
|
def self.news(category, backend = :w3dhub, &callback)
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
callback.call(News.new(result.data))
|
callback.call(CyberarmEngine::Result.new(data: News.new(result.data)))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch news for:" }
|
logger.error(LOG_TAG) { "Failed to fetch news for:" }
|
||||||
logger.error(LOG_TAG) { category }
|
logger.error(LOG_TAG) { category }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ category: category }))
|
body = URI.encode_www_form("data": JSON.dump({ category: category }))
|
||||||
post("/apis/w3dhub/1/get-news", FORM_ENCODED_HEADERS, body, backend, &handler)
|
post(path: "/apis/w3dhub/1/get-news", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Downloading games
|
# Downloading games
|
||||||
@@ -308,18 +313,18 @@ class W3DHub
|
|||||||
if result.okay?
|
if result.okay?
|
||||||
hash = JSON.parse(result.data, symbolize_names: true)
|
hash = JSON.parse(result.data, symbolize_names: true)
|
||||||
|
|
||||||
callback.call(hash[:packages].map { |pkg| Package.new(pkg) })
|
callback.call(CyberarmEngine::Result.new(data: hash[:packages].map { |pkg| Package.new(pkg) }))
|
||||||
else
|
else
|
||||||
logger.error(LOG_TAG) { "Failed to fetch package details for:" }
|
logger.error(LOG_TAG) { "Failed to fetch package details for:" }
|
||||||
logger.error(LOG_TAG) { packages }
|
logger.error(LOG_TAG) { packages }
|
||||||
logger.error(LOG_TAG) { result.error }
|
logger.error(LOG_TAG) { result.error }
|
||||||
|
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ packages: packages }))
|
body = URI.encode_www_form("data": JSON.dump({ packages: packages }))
|
||||||
post("/apis/launcher/1/get-package-details", FORM_ENCODED_HEADERS, body, backend, &handler)
|
post(path: "/apis/launcher/1/get-package-details", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# /apis/launcher/1/get-package
|
# /apis/launcher/1/get-package
|
||||||
@@ -337,15 +342,15 @@ class W3DHub
|
|||||||
def self.events(app_id, backend = :w3dhub, &callback)
|
def self.events(app_id, backend = :w3dhub, &callback)
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
array = JSON.parse(response.body, symbolize_names: true)
|
array = JSON.parse(result.data, symbolize_names: true)
|
||||||
callback.call(array.map { |e| Event.new(e) })
|
callback.call(CyberarmEngine::Result.new(data: array.map { |e| Event.new(e) }))
|
||||||
else
|
else
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
body = URI.encode_www_form("data": JSON.dump({ serverPath: app_id }))
|
body = URI.encode_www_form("data": JSON.dump({ serverPath: app_id }))
|
||||||
post("/apis/w3dhub/1/get-server-events", FORM_ENCODED_HEADERS, body, backend, &handler)
|
post(path: "/apis/w3dhub/1/get-server-events", headers: FORM_ENCODED_HEADERS, body: body, backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
#! === Server List API === !#
|
#! === Server List API === !#
|
||||||
@@ -375,13 +380,13 @@ class W3DHub
|
|||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
data = JSON.parse(result.data, symbolize_names: true)
|
data = JSON.parse(result.data, symbolize_names: true)
|
||||||
callback.call(data.map { |hash| ServerListServer.new(hash) })
|
callback.call(CyberarmEngine::Result.new(data: data.map { |hash| ServerListServer.new(hash) }))
|
||||||
else
|
else
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
get("/listings/getAll/v2?statusLevel=#{level}", DEFAULT_HEADERS, nil, backend, &handler)
|
get(path: "/listings/getAll/v2?statusLevel=#{level}", backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# /listings/getStatus/v2/:id?statusLevel=#{0-2}
|
# /listings/getStatus/v2/:id?statusLevel=#{0-2}
|
||||||
@@ -400,13 +405,13 @@ class W3DHub
|
|||||||
|
|
||||||
handler = lambda do |result|
|
handler = lambda do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
callback.call(JSON.parse(response.body, symbolize_names: true))
|
callback.call(CyberarmEngine::Result.new(data: JSON.parse(result.data, symbolize_names: true)))
|
||||||
else
|
else
|
||||||
callback.call(false)
|
callback.call(result)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
get("/listings/getStatus/v2/#{id}?statusLevel=#{level}", DEFAULT_HEADERS, nil, backend, &handler)
|
get(path: "/listings/getStatus/v2/#{id}?statusLevel=#{level}", backend: backend, &handler)
|
||||||
end
|
end
|
||||||
|
|
||||||
# /listings/push/v2/negotiate?negotiateVersion=1
|
# /listings/push/v2/negotiate?negotiateVersion=1
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class W3DHub
|
|||||||
if !force_fetch && File.exist?(path)
|
if !force_fetch && File.exist?(path)
|
||||||
path
|
path
|
||||||
else
|
else
|
||||||
Api.fetch(uri, W3DHub::Api::DEFAULT_HEADERS, nil, backend) do |result|
|
Api.fetch(path: uri, backend: backend) do |result|
|
||||||
if result.okay?
|
if result.okay?
|
||||||
File.open(path, "wb") { |f| f.write result.data }
|
File.open(path, "wb") { |f| f.write result.data }
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,22 +2,21 @@ class W3DHub
|
|||||||
# all http(s) requests for API calls and downloading images run through here
|
# all http(s) requests for API calls and downloading images run through here
|
||||||
class NetworkManager
|
class NetworkManager
|
||||||
NetworkEvent = Data.define(:context, :result)
|
NetworkEvent = Data.define(:context, :result)
|
||||||
Request = Struct.new(:active, :context, :callback)
|
Request = Struct.new(:active, :context, :async, :callback)
|
||||||
Context = Data.define(
|
Context = Data.define(
|
||||||
:request_id,
|
:request_id,
|
||||||
:method,
|
:method,
|
||||||
:url,
|
:url,
|
||||||
:headers,
|
:headers,
|
||||||
:body,
|
:body
|
||||||
:bearer_token
|
|
||||||
)
|
)
|
||||||
|
|
||||||
def initialize
|
def initialize
|
||||||
@requests = []
|
@requests = []
|
||||||
@running = true
|
@running = true
|
||||||
|
|
||||||
Thread.new do
|
@thread = Thread.new do
|
||||||
http_client = HttpClient.new
|
@http_client = HttpClient.new
|
||||||
|
|
||||||
Sync do
|
Sync do
|
||||||
while @running
|
while @running
|
||||||
@@ -33,18 +32,25 @@ class W3DHub
|
|||||||
|
|
||||||
Async do |task|
|
Async do |task|
|
||||||
assigned_request = request
|
assigned_request = request
|
||||||
result = http_client.handle(task, assigned_request)
|
result = if assigned_request.context.url.empty?
|
||||||
|
assigned_request.callback.call(nil)
|
||||||
|
else
|
||||||
|
@http_client.handle(task, assigned_request)
|
||||||
|
end
|
||||||
|
|
||||||
@requests.delete(assigned_request)
|
@requests.delete(assigned_request)
|
||||||
|
|
||||||
Store.main_thread_queue << -> { assigned_request.callback.call(result) }
|
# callback for this is already handled!
|
||||||
|
unless assigned_request.context.url.empty?
|
||||||
|
Store.main_thread_queue << -> { assigned_request.callback.call(result) }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def request(method, url, headers, body, bearer_token, &block)
|
def request(method, url, headers, body, async, &block)
|
||||||
request_id = SecureRandom.hex
|
request_id = SecureRandom.hex
|
||||||
|
|
||||||
request = Request.new(
|
request = Request.new(
|
||||||
@@ -54,15 +60,29 @@ class W3DHub
|
|||||||
method,
|
method,
|
||||||
url,
|
url,
|
||||||
headers,
|
headers,
|
||||||
body,
|
body
|
||||||
bearer_token
|
|
||||||
),
|
),
|
||||||
|
async,
|
||||||
block
|
block
|
||||||
)
|
)
|
||||||
|
|
||||||
@requests << request
|
@requests << request
|
||||||
|
|
||||||
request_id
|
|
||||||
|
if async
|
||||||
|
request_id
|
||||||
|
else # Not async, process immediately.
|
||||||
|
raise "WTF? This should NOT happen!" unless Async::Task.current?
|
||||||
|
|
||||||
|
Sync do |task|
|
||||||
|
assigned_request = request
|
||||||
|
result = @http_client.handle(task, assigned_request)
|
||||||
|
|
||||||
|
@requests.delete(assigned_request)
|
||||||
|
# "return" callback "value"
|
||||||
|
assigned_request.callback.call(result)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def busy?
|
def busy?
|
||||||
|
|||||||
@@ -10,22 +10,18 @@ class W3DHub
|
|||||||
result = CyberarmEngine::Result.new
|
result = CyberarmEngine::Result.new
|
||||||
context = request.context
|
context = request.context
|
||||||
|
|
||||||
task.with_timeout(30) do
|
task.with_timeout(W3DHub::Api::API_TIMEOUT) do
|
||||||
uri = URI(context.url)
|
uri = URI(context.url)
|
||||||
|
|
||||||
pp uri
|
|
||||||
|
|
||||||
response = provision_http_client(uri.origin).send(
|
response = provision_http_client(uri.origin).send(
|
||||||
context.method,
|
context.method,
|
||||||
uri.path,
|
uri.request_uri,
|
||||||
context.headers,
|
context.headers,
|
||||||
context.body
|
context.body
|
||||||
)
|
)
|
||||||
|
|
||||||
pp response
|
|
||||||
|
|
||||||
if response.success?
|
if response.success?
|
||||||
result.data = response.body.read
|
result.data = response.read
|
||||||
else
|
else
|
||||||
result.error = response
|
result.error = response
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -65,15 +65,7 @@ class W3DHub
|
|||||||
para I18n.t(:"games.fetching_news"), padding: 8
|
para I18n.t(:"games.fetching_news"), padding: 8
|
||||||
end
|
end
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(
|
fetch_w3dhub_news
|
||||||
-> { fetch_w3dhub_news },
|
|
||||||
lambda do |result|
|
|
||||||
if result
|
|
||||||
populate_w3dhub_news
|
|
||||||
Cache.release_net_lock(result)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -89,15 +81,7 @@ class W3DHub
|
|||||||
title I18n.t(:"games.fetching_news"), padding: 8
|
title I18n.t(:"games.fetching_news"), padding: 8
|
||||||
end
|
end
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(
|
fetch_w3dhub_news
|
||||||
-> { fetch_w3dhub_news },
|
|
||||||
lambda do |result|
|
|
||||||
if result
|
|
||||||
populate_w3dhub_news
|
|
||||||
Cache.release_net_lock(result)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -105,19 +89,24 @@ class W3DHub
|
|||||||
lock = Cache.acquire_net_lock("w3dhub_news")
|
lock = Cache.acquire_net_lock("w3dhub_news")
|
||||||
return false unless lock
|
return false unless lock
|
||||||
|
|
||||||
news = Api.news("launcher-home")
|
Api.news("launcher-home") do |result|
|
||||||
Cache.release_net_lock("w3dhub_news") unless news
|
news = result.data
|
||||||
|
|
||||||
return unless news
|
Cache.release_net_lock("w3dhub_news") unless news
|
||||||
|
|
||||||
news.items[0..15].each do |item|
|
next false unless news
|
||||||
Cache.fetch(uri: item.image, async: false, backend: :w3dhub)
|
|
||||||
|
news.items[0..15].each do |item|
|
||||||
|
Cache.fetch(uri: item.image, backend: :w3dhub)
|
||||||
|
end
|
||||||
|
|
||||||
|
@w3dhub_news = news
|
||||||
|
@w3dhub_news_expires = Gosu.milliseconds + (60 * 60 * 1000) # 1 hour (in ms)
|
||||||
|
|
||||||
|
populate_w3dhub_news
|
||||||
|
ensure
|
||||||
|
Cache.release_net_lock("w3dhub_news")
|
||||||
end
|
end
|
||||||
|
|
||||||
@w3dhub_news = news
|
|
||||||
@w3dhub_news_expires = Gosu.milliseconds + (60 * 60 * 1000) # 1 hour (in ms)
|
|
||||||
|
|
||||||
"w3dhub_news"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def populate_w3dhub_news
|
def populate_w3dhub_news
|
||||||
@@ -125,37 +114,7 @@ class W3DHub
|
|||||||
|
|
||||||
if (feed = @w3dhub_news)
|
if (feed = @w3dhub_news)
|
||||||
@wd3hub_news_container.clear do
|
@wd3hub_news_container.clear do
|
||||||
# feed.items.sort_by { |i| i.timestamp }.reverse[0..9].each do |item|
|
feed.items.sort_by(&:timestamp).reverse[0..9].each do |item|
|
||||||
# flow(width: 0.5, max_width: 312, height: 128, margin: 4) do
|
|
||||||
# # background 0x88_000000
|
|
||||||
|
|
||||||
# path = Cache.path(item.image)
|
|
||||||
|
|
||||||
# if File.exist?(path)
|
|
||||||
# image path, height: 1.0, padding: 4
|
|
||||||
# else
|
|
||||||
# image BLACK_IMAGE, height: 1.0, padding: 4
|
|
||||||
# end
|
|
||||||
|
|
||||||
# stack(width: 0.6, height: 1.0) do
|
|
||||||
# stack(width: 1.0, height: 112) do
|
|
||||||
# link "<b>#{item.title}</b>", text_size: 22 do
|
|
||||||
# W3DHub.url(item.uri)
|
|
||||||
# end
|
|
||||||
# para item.blurb.gsub(/\n+/, "\n").strip[0..180]
|
|
||||||
# end
|
|
||||||
|
|
||||||
# flow(width: 1.0) do
|
|
||||||
# para item.timestamp.strftime("%Y-%m-%d"), width: 0.499
|
|
||||||
# link I18n.t(:"games.read_more"), width: 0.5, text_align: :right, text_size: 22 do
|
|
||||||
# W3DHub.url(item.uri)
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
|
|
||||||
feed.items.sort_by { |i| i.timestamp }.reverse[0..9].each do |item|
|
|
||||||
image_path = Cache.path(item.image)
|
image_path = Cache.path(item.image)
|
||||||
|
|
||||||
flow(width: 1.0, max_width: 1230, height: 200, margin: 8, border_thickness: 1, border_color: lighten(Gosu::Color.new(0xff_252525))) do
|
flow(width: 1.0, max_width: 1230, height: 200, margin: 8, border_thickness: 1, border_color: lighten(Gosu::Color.new(0xff_252525))) do
|
||||||
|
|||||||
@@ -31,30 +31,16 @@ class W3DHub
|
|||||||
def update
|
def update
|
||||||
super
|
super
|
||||||
|
|
||||||
|
|
||||||
@game_news.each do |key, value|
|
@game_news.each do |key, value|
|
||||||
next if key.end_with?("_expires")
|
next unless key.end_with?("_expires")
|
||||||
|
|
||||||
if Gosu.milliseconds >= @game_news["#{key}_expires"]
|
next unless Gosu.milliseconds >= value
|
||||||
@game_news.delete(key)
|
|
||||||
@game_news["#{key}_expires"] = Gosu.milliseconds + 30_000 # seconds
|
|
||||||
|
|
||||||
if @focused_game && @focused_game.id == key
|
# try to refresh game news after last data 'expired', every 30 seconds until success
|
||||||
@game_news_container.clear do
|
@game_news[key] = Gosu.milliseconds + 30_000 # seconds
|
||||||
title I18n.t(:"games.fetching_news"), padding: 8
|
|
||||||
end
|
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(
|
game = Store.applications.games.find { |g| g.id == key.split("_").first }
|
||||||
-> { fetch_game_news(@focused_game) },
|
fetch_game_news(game)
|
||||||
lambda do |result|
|
|
||||||
if result
|
|
||||||
populate_game_news(@focused_game)
|
|
||||||
Cache.release_net_lock(result)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -292,22 +278,6 @@ class W3DHub
|
|||||||
return if Store.offline_mode
|
return if Store.offline_mode
|
||||||
|
|
||||||
unless Cache.net_lock?("game_news_#{game.id}")
|
unless Cache.net_lock?("game_news_#{game.id}")
|
||||||
if @game_events[game.id]
|
|
||||||
populate_game_events(game)
|
|
||||||
else
|
|
||||||
# BackgroundWorker.foreground_job(
|
|
||||||
# -> { fetch_game_events(game) },
|
|
||||||
# lambda do |result|
|
|
||||||
# if result
|
|
||||||
# populate_game_events(game)
|
|
||||||
# Cache.release_net_lock(result)
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# )
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
unless Cache.net_lock?("game_events_#{game.id}")
|
|
||||||
if @game_news[game.id]
|
if @game_news[game.id]
|
||||||
populate_game_news(game)
|
populate_game_news(game)
|
||||||
else
|
else
|
||||||
@@ -315,15 +285,15 @@ class W3DHub
|
|||||||
title I18n.t(:"games.fetching_news"), padding: 8
|
title I18n.t(:"games.fetching_news"), padding: 8
|
||||||
end
|
end
|
||||||
|
|
||||||
# BackgroundWorker.foreground_job(
|
fetch_game_news(game)
|
||||||
# -> { fetch_game_news(game) },
|
end
|
||||||
# lambda do |result|
|
end
|
||||||
# if result
|
|
||||||
# populate_game_news(game)
|
unless Cache.net_lock?("game_events_#{game.id}")
|
||||||
# Cache.release_net_lock(result)
|
if @game_events[game.id]
|
||||||
# end
|
populate_game_events(game)
|
||||||
# end
|
else
|
||||||
# )
|
fetch_game_events(game)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -413,19 +383,25 @@ class W3DHub
|
|||||||
lock = Cache.acquire_net_lock("game_news_#{game.id}")
|
lock = Cache.acquire_net_lock("game_news_#{game.id}")
|
||||||
return false unless lock
|
return false unless lock
|
||||||
|
|
||||||
news = Api.news(game.id)
|
Api.news(game.id) do |result|
|
||||||
Cache.release_net_lock("game_news_#{game.id}") unless news
|
news = result.data
|
||||||
|
|
||||||
return false unless news
|
unless news
|
||||||
|
@game_news["#{game.id}_expires"] = Gosu.milliseconds + 30_000 # retry in 30 seconds
|
||||||
|
next false
|
||||||
|
end
|
||||||
|
|
||||||
news.items[0..15].each do |item|
|
news.items[0..15].each do |item|
|
||||||
Cache.fetch(uri: item.image, async: false, backend: :w3dhub)
|
Cache.fetch(uri: item.image, backend: :w3dhub)
|
||||||
|
end
|
||||||
|
|
||||||
|
@game_news[game.id] = news
|
||||||
|
@game_news["#{game.id}_expires"] = Gosu.milliseconds + (60 * 60 * 1000) # 1 hour (in ms)
|
||||||
|
|
||||||
|
populate_game_news(@focused_game)
|
||||||
|
ensure
|
||||||
|
Cache.release_net_lock("game_news_#{game.id}")
|
||||||
end
|
end
|
||||||
|
|
||||||
@game_news[game.id] = news
|
|
||||||
@game_news["#{game.id}_expires"] = Gosu.milliseconds + (60 * 60 * 1000) # 1 hour (in ms)
|
|
||||||
|
|
||||||
"game_news_#{game.id}"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def populate_game_news(game)
|
def populate_game_news(game)
|
||||||
@@ -436,38 +412,11 @@ class W3DHub
|
|||||||
game_color.alpha = 0xaa
|
game_color.alpha = 0xaa
|
||||||
|
|
||||||
@game_news_container.clear do
|
@game_news_container.clear do
|
||||||
# Patch Notes
|
feed.items.sort_by(&:timestamp).reverse[0..9].each do |item|
|
||||||
if false # Patch notes
|
|
||||||
flow(width: 1.0, max_width: 346 * 3 + (8 * 4), height: 346, margin: 8, margin_right: 32, border_thickness: 1, border_color: darken(Gosu::Color.new(game.color))) do
|
|
||||||
background darken(Gosu::Color.new(game.color), 10)
|
|
||||||
|
|
||||||
stack(width: 346, height: 1.0, padding: 8) do
|
|
||||||
background 0xff_181d22
|
|
||||||
|
|
||||||
para "Patch Notes"
|
|
||||||
|
|
||||||
tagline "<b>Patch 2.0 is now out!</b>"
|
|
||||||
|
|
||||||
para "words go here " * 20
|
|
||||||
|
|
||||||
flow(fill: true)
|
|
||||||
|
|
||||||
button "Read More", width: 1.0
|
|
||||||
end
|
|
||||||
|
|
||||||
flow(fill: true)
|
|
||||||
|
|
||||||
title "Eye Candy Banner Goes Here."
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
feed.items.sort_by { |i| i.timestamp }.reverse[0..9].each do |item|
|
|
||||||
image_path = Cache.path(item.image)
|
image_path = Cache.path(item.image)
|
||||||
|
|
||||||
flow(width: 1.0, max_width: 869, height: 200, margin: 8, background: game_color, border_thickness: 1, border_color: lighten(Gosu::Color.new(game.color))) do
|
flow(width: 1.0, max_width: 869, height: 200, margin: 8, background: game_color, border_thickness: 1, border_color: lighten(Gosu::Color.new(game.color))) do
|
||||||
if File.file?(image_path)
|
image image_path, height: 1.0 if File.file?(image_path)
|
||||||
image image_path, height: 1.0
|
|
||||||
end
|
|
||||||
|
|
||||||
stack(fill: true, height: 1.0, padding: 4, border_thickness_left: 1, border_color_left: lighten(Gosu::Color.new(game.color))) do
|
stack(fill: true, height: 1.0, padding: 4, border_thickness_left: 1, border_color_left: lighten(Gosu::Color.new(game.color))) do
|
||||||
tagline "<b>#{item.title}</b>", width: 1.0
|
tagline "<b>#{item.title}</b>", width: 1.0
|
||||||
@@ -494,14 +443,14 @@ class W3DHub
|
|||||||
lock = Cache.acquire_net_lock("game_events_#{game.id}")
|
lock = Cache.acquire_net_lock("game_events_#{game.id}")
|
||||||
return false unless lock
|
return false unless lock
|
||||||
|
|
||||||
events = Api.events(game.id)
|
Api.events(game.id) do |result|
|
||||||
Cache.release_net_lock("game_events_#{game.id}") unless events
|
next unless result.okay?
|
||||||
|
|
||||||
return false unless events
|
@game_events[game.id] = result.data
|
||||||
|
populate_game_events(game)
|
||||||
@game_events[game.id] = events
|
ensure
|
||||||
|
Cache.release_net_lock("game_events_#{game.id}")
|
||||||
"game_events_#{game.id}"
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def populate_game_events(game)
|
def populate_game_events(game)
|
||||||
|
|||||||
@@ -145,15 +145,7 @@ class W3DHub
|
|||||||
reorder_server_list
|
reorder_server_list
|
||||||
|
|
||||||
if @selected_server&.id == @refresh_server&.id
|
if @selected_server&.id == @refresh_server&.id
|
||||||
if @refresh_server
|
fetch_server_details(@refresh_server) if @refresh_server
|
||||||
BackgroundWorker.foreground_job(
|
|
||||||
-> { fetch_server_details(@refresh_server) },
|
|
||||||
->(result) {
|
|
||||||
populate_server_info(@refresh_server) if @refresh_server == @selected_server
|
|
||||||
@refresh_server = nil
|
|
||||||
}
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -353,10 +345,7 @@ class W3DHub
|
|||||||
|
|
||||||
reorder_server_list if @selected_server_container
|
reorder_server_list if @selected_server_container
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(
|
fetch_server_details(server)
|
||||||
-> { fetch_server_details(server) },
|
|
||||||
->(result) { populate_server_info(server) if server == @selected_server }
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
stylize_selected_server(server_container) if server.id == @selected_server&.id
|
stylize_selected_server(server_container) if server.id == @selected_server&.id
|
||||||
@@ -523,10 +512,13 @@ class W3DHub
|
|||||||
end
|
end
|
||||||
|
|
||||||
def fetch_server_details(server)
|
def fetch_server_details(server)
|
||||||
BackgroundWorker.foreground_job(
|
Api.server_details(server.id, 2) do |result|
|
||||||
-> { Api.server_details(server.id, 2) },
|
if result.okay?
|
||||||
->(server_data) { server.update(server_data) if server_data }
|
server.update(result.data)
|
||||||
)
|
populate_server_info(server) if server == @selected_server
|
||||||
|
@refresh_server = nil
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def game_icon(server)
|
def game_icon(server)
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ class W3DHub
|
|||||||
|
|
||||||
Store.settings[:account][:data] = account
|
Store.settings[:account][:data] = account
|
||||||
|
|
||||||
Cache.fetch(uri: account.avatar_uri, force_fetch: true, async: false, backend: :w3dhub)
|
Cache.fetch(uri: account.avatar_uri, force_fetch: true, backend: :w3dhub)
|
||||||
else
|
else
|
||||||
Store.settings[:account] = {}
|
Store.settings[:account] = {}
|
||||||
end
|
end
|
||||||
@@ -176,10 +176,8 @@ class W3DHub
|
|||||||
def service_status
|
def service_status
|
||||||
@status_label.value = "Checking service status..." #I18n.t(:"server_browser.fetching_server_list")
|
@status_label.value = "Checking service status..." #I18n.t(:"server_browser.fetching_server_list")
|
||||||
|
|
||||||
Api.on_thread(:service_status) do |service_status|
|
Api.on_thread(:service_status) do |result|
|
||||||
pp service_status
|
@service_status = result.okay? ? result.data : nil
|
||||||
|
|
||||||
@service_status = service_status
|
|
||||||
|
|
||||||
if @service_status
|
if @service_status
|
||||||
Store.service_status = @service_status
|
Store.service_status = @service_status
|
||||||
@@ -190,9 +188,7 @@ class W3DHub
|
|||||||
|
|
||||||
@tasks[:service_status][:complete] = true
|
@tasks[:service_status][:complete] = true
|
||||||
else
|
else
|
||||||
BackgroundWorker.foreground_job(-> {}, lambda { |_|
|
Store.main_thread_queue << -> { @status_label.value = I18n.t(:"boot.w3dhub_service_is_down") }
|
||||||
@status_label.value = I18n.t(:"boot.w3dhub_service_is_down")
|
|
||||||
})
|
|
||||||
@tasks[:service_status][:complete] = true
|
@tasks[:service_status][:complete] = true
|
||||||
|
|
||||||
@offline_mode = true
|
@offline_mode = true
|
||||||
@@ -204,9 +200,9 @@ class W3DHub
|
|||||||
def launcher_updater
|
def launcher_updater
|
||||||
@status_label.value = "Checking for Launcher updates..." # I18n.t(:"boot.checking_for_updates")
|
@status_label.value = "Checking for Launcher updates..." # I18n.t(:"boot.checking_for_updates")
|
||||||
|
|
||||||
Api.on_thread(:fetch, "https://api.github.com/repos/cyberarm/w3d_hub_linux_launcher/releases/latest") do |response|
|
Api.on_thread(:fetch, "https://api.github.com/repos/cyberarm/w3d_hub_linux_launcher/releases/latest") do |result|
|
||||||
if response.status == 200
|
if result.okay?
|
||||||
hash = JSON.parse(response.body, symbolize_names: true)
|
hash = JSON.parse(result.data, symbolize_names: true)
|
||||||
available_version = hash[:tag_name].downcase.sub("v", "")
|
available_version = hash[:tag_name].downcase.sub("v", "")
|
||||||
|
|
||||||
pp Gem::Version.new(available_version) > Gem::Version.new(W3DHub::VERSION)
|
pp Gem::Version.new(available_version) > Gem::Version.new(W3DHub::VERSION)
|
||||||
@@ -230,14 +226,13 @@ class W3DHub
|
|||||||
def applications
|
def applications
|
||||||
@status_label.value = I18n.t(:"boot.checking_for_updates")
|
@status_label.value = I18n.t(:"boot.checking_for_updates")
|
||||||
|
|
||||||
# Api.on_thread(:_applications) do |applications|
|
Api.on_thread(:_applications) do |result|
|
||||||
Api.on_thread(:applications, :alt_w3dhub) do |applications|
|
if result.okay?
|
||||||
if applications
|
Store.applications = result.data
|
||||||
Store.applications = applications
|
Store.settings.save_application_cache(Store.applications.data.to_json)
|
||||||
Store.settings.save_application_cache(applications.data.to_json)
|
|
||||||
@tasks[:applications][:complete] = true
|
@tasks[:applications][:complete] = true
|
||||||
else
|
else
|
||||||
@status_label.value = "FAILED TO RETREIVE APPS LIST"
|
@status_label.value = "FAILED TO RETRIEVE APPS LIST"
|
||||||
|
|
||||||
@offline_mode = true
|
@offline_mode = true
|
||||||
Store.offline_mode = true
|
Store.offline_mode = true
|
||||||
@@ -256,40 +251,39 @@ class W3DHub
|
|||||||
packages << { category: app.category, subcategory: app.id, name: "#{app.id}.ico", version: "" }
|
packages << { category: app.category, subcategory: app.id, name: "#{app.id}.ico", version: "" }
|
||||||
end
|
end
|
||||||
|
|
||||||
Api.on_thread(:package_details, packages, :alt_w3dhub) do |package_details|
|
Api.on_thread(:package_details, packages, :alt_w3dhub) do |result|
|
||||||
package_details ||= nil
|
if result.okay?
|
||||||
|
result.data.each do |package|
|
||||||
|
next if package.error?
|
||||||
|
|
||||||
package_details&.each do |package|
|
path = Cache.package_path(package.category, package.subcategory, package.name, package.version)
|
||||||
next if package.error?
|
generated_icon_path = "#{CACHE_PATH}/#{package.subcategory}.png"
|
||||||
|
|
||||||
path = Cache.package_path(package.category, package.subcategory, package.name, package.version)
|
regenerate = false
|
||||||
generated_icon_path = "#{CACHE_PATH}/#{package.subcategory}.png"
|
|
||||||
|
|
||||||
regenerate = false
|
if File.exist?(path)
|
||||||
|
broken_or_out_dated_icon = Digest::SHA256.new.hexdigest(File.binread(path)).upcase != package.checksum.upcase
|
||||||
if File.exist?(path)
|
|
||||||
broken_or_out_dated_icon = Digest::SHA256.new.hexdigest(File.binread(path)).upcase != package.checksum.upcase
|
|
||||||
end
|
|
||||||
|
|
||||||
if File.exist?(path) && !broken_or_out_dated_icon
|
|
||||||
regenerate = !File.exist?(generated_icon_path)
|
|
||||||
else
|
|
||||||
begin
|
|
||||||
Cache.fetch_package(package, proc {})
|
|
||||||
regenerate = true
|
|
||||||
rescue Errno::EACCES => e
|
|
||||||
failure = true
|
|
||||||
push_state(MessageDialog, title: "Fatal Error",
|
|
||||||
message: "Directory Permission Error (#{e.class}):\n#{e}.\n\nIs the required drive mounted?",
|
|
||||||
accept_callback: -> { window.close })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if File.exist?(path) && !broken_or_out_dated_icon
|
||||||
|
regenerate = !File.exist?(generated_icon_path)
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Cache.fetch_package(package, proc {})
|
||||||
|
regenerate = true
|
||||||
|
rescue Errno::EACCES => e
|
||||||
|
failure = true
|
||||||
|
push_state(MessageDialog, title: "Fatal Error",
|
||||||
|
message: "Directory Permission Error (#{e.class}):\n#{e}.\n\nIs the required drive mounted?",
|
||||||
|
accept_callback: -> { window.close })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
next unless regenerate
|
||||||
|
|
||||||
|
icon = ICO.new(file: path)
|
||||||
|
icon.save(icon.images.max_by(&:width), generated_icon_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
next unless regenerate
|
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(-> { ICO.new(file: path) }, lambda { |result|
|
|
||||||
result.save(result.images.max_by(&:width), generated_icon_path)
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
@tasks[:app_icons][:complete] = true unless failure
|
@tasks[:app_icons][:complete] = true unless failure
|
||||||
@@ -307,18 +301,18 @@ class W3DHub
|
|||||||
packages << { category: app.category, subcategory: app.id, name: "background.png", version: "" }
|
packages << { category: app.category, subcategory: app.id, name: "background.png", version: "" }
|
||||||
end
|
end
|
||||||
|
|
||||||
Api.on_thread(:package_details, packages, :alt_w3dhub) do |package_details|
|
Api.on_thread(:package_details, packages, :alt_w3dhub) do |result|
|
||||||
package_details ||= nil
|
if result.okay?
|
||||||
|
result.data.each do |package|
|
||||||
|
next if package.error?
|
||||||
|
|
||||||
package_details&.each do |package|
|
package_cache_path = Cache.package_path(package.category, package.subcategory, package.name,
|
||||||
next if package.error?
|
package.version)
|
||||||
|
|
||||||
package_cache_path = Cache.package_path(package.category, package.subcategory, package.name,
|
missing_or_broken_image = File.exist?(package_cache_path) ? Digest::SHA256.new.hexdigest(File.binread(package_cache_path)).upcase != package.checksum.upcase : true
|
||||||
package.version)
|
|
||||||
|
|
||||||
missing_or_broken_image = File.exist?(package_cache_path) ? Digest::SHA256.new.hexdigest(File.binread(package_cache_path)).upcase != package.checksum.upcase : true
|
Cache.fetch_package(package, proc {}) if missing_or_broken_image
|
||||||
|
end
|
||||||
Cache.fetch_package(package, proc {}) if missing_or_broken_image
|
|
||||||
end
|
end
|
||||||
|
|
||||||
@tasks[:app_logos_and_backgrounds][:complete] = true
|
@tasks[:app_logos_and_backgrounds][:complete] = true
|
||||||
@@ -328,15 +322,15 @@ class W3DHub
|
|||||||
def server_list
|
def server_list
|
||||||
@status_label.value = I18n.t(:"server_browser.fetching_server_list")
|
@status_label.value = I18n.t(:"server_browser.fetching_server_list")
|
||||||
|
|
||||||
Api.on_thread(:server_list, 2) do |list|
|
Api.on_thread(:server_list, 2) do |result|
|
||||||
if list
|
if result.okay?
|
||||||
Store.server_list = list.sort_by! { |s| s&.status&.players&.size }.reverse
|
Store.server_list = result.data.sort_by! { |s| s&.status&.players&.size }.reverse
|
||||||
|
|
||||||
Store.server_list_last_fetch = Gosu.milliseconds
|
Store.server_list_last_fetch = Gosu.milliseconds
|
||||||
|
|
||||||
Api::ServerListUpdater.instance
|
Api::ServerListUpdater.instance
|
||||||
|
|
||||||
list.each do |server|
|
Store.server_list.each do |server|
|
||||||
server.send_ping(true)
|
server.send_ping(true)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -164,15 +164,15 @@ class W3DHub
|
|||||||
if Gosu.milliseconds >= @server_list_expire
|
if Gosu.milliseconds >= @server_list_expire
|
||||||
@server_list_expire = Gosu.milliseconds + 30_000
|
@server_list_expire = Gosu.milliseconds + 30_000
|
||||||
|
|
||||||
Api.on_thread(:server_list, 2) do |list|
|
Api.on_thread(:server_list, 2) do |result|
|
||||||
if list
|
if result.okay?
|
||||||
@server_list_expire = Gosu.milliseconds + SERVER_LIST_UPDATE_INTERVAL # five minutes
|
@server_list_expire = Gosu.milliseconds + SERVER_LIST_UPDATE_INTERVAL # five minutes
|
||||||
|
|
||||||
Store.server_list_last_fetch = Gosu.milliseconds
|
Store.server_list_last_fetch = Gosu.milliseconds
|
||||||
|
|
||||||
Api::ServerListUpdater.instance.refresh_server_list(list)
|
Api::ServerListUpdater.instance.refresh_server_list(result.data)
|
||||||
|
|
||||||
BackgroundWorker.foreground_job(-> {}, ->(_) { States::Interface.instance&.update_server_browser(nil, :refresh_all) })
|
Store.main_thread_queue << -> { States::Interface.instance&.update_server_browser(nil, :refresh_all) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user