mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Use mastodon.yml to load software update default value
This commit is contained in:
parent
b42661ba95
commit
8402f1800f
7 changed files with 25 additions and 12 deletions
|
@ -24,7 +24,7 @@ class SoftwareUpdate < ApplicationRecord
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def check_enabled?
|
def check_enabled?
|
||||||
ENV['UPDATE_CHECK_URL'] != ''
|
Rails.configuration.x.mastodon.software_update_url.present?
|
||||||
end
|
end
|
||||||
|
|
||||||
def pending_to_a
|
def pending_to_a
|
||||||
|
|
|
@ -27,7 +27,7 @@ class SoftwareUpdateCheckService < BaseService
|
||||||
end
|
end
|
||||||
|
|
||||||
def api_url
|
def api_url
|
||||||
ENV.fetch('UPDATE_CHECK_URL', 'https://api.joinmastodon.org/update-check')
|
Rails.configuration.x.mastodon.software_update_url
|
||||||
end
|
end
|
||||||
|
|
||||||
def version
|
def version
|
||||||
|
|
|
@ -112,6 +112,9 @@ module Mastodon
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Load defaults from config/mastodon.yml
|
||||||
|
config.x.mastodon = config_for(:mastodon)
|
||||||
|
|
||||||
config.to_prepare do
|
config.to_prepare do
|
||||||
Doorkeeper::AuthorizationsController.layout 'modal'
|
Doorkeeper::AuthorizationsController.layout 'modal'
|
||||||
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
||||||
|
|
3
config/mastodon.yml
Normal file
3
config/mastodon.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
shared:
|
||||||
|
software_update_url: <%= ENV.fetch('UPDATE_CHECK_URL', 'https://api.joinmastodon.org/update-check') %>
|
|
@ -6,7 +6,11 @@ SimpleNavigation::Configuration.run do |navigation|
|
||||||
navigation.items do |n|
|
navigation.items do |n|
|
||||||
n.item :web, safe_join([material_symbol('chevron_left'), t('settings.back')]), root_path
|
n.item :web, safe_join([material_symbol('chevron_left'), t('settings.back')]), root_path
|
||||||
|
|
||||||
n.item :software_updates, safe_join([material_symbol('report'), t('admin.critical_update_pending')]), admin_software_updates_path, if: -> { ENV['UPDATE_CHECK_URL'] != '' && current_user.can?(:view_devops) && SoftwareUpdate.urgent_pending? }, html: { class: 'warning' }
|
n.item :software_updates,
|
||||||
|
safe_join([material_symbol('report'), t('admin.critical_update_pending')]),
|
||||||
|
admin_software_updates_path,
|
||||||
|
if: -> { Rails.configuration.x.mastodon.software_update_url.present? && current_user.can?(:view_devops) && SoftwareUpdate.urgent_pending? },
|
||||||
|
html: { class: 'warning' }
|
||||||
|
|
||||||
n.item :profile, safe_join([material_symbol('person'), t('settings.profile')]), settings_profile_path, if: -> { current_user.functional? && !self_destruct }, highlights_on: %r{/settings/profile|/settings/featured_tags|/settings/verification|/settings/privacy}
|
n.item :profile, safe_join([material_symbol('person'), t('settings.profile')]), settings_profile_path, if: -> { current_user.functional? && !self_destruct }, highlights_on: %r{/settings/profile|/settings/featured_tags|/settings/verification|/settings/privacy}
|
||||||
|
|
||||||
|
|
|
@ -27,9 +27,10 @@ describe Admin::SystemCheck::SoftwareVersionCheck do
|
||||||
|
|
||||||
context 'when checks are disabled' do
|
context 'when checks are disabled' do
|
||||||
around do |example|
|
around do |example|
|
||||||
ClimateControl.modify UPDATE_CHECK_URL: '' do
|
original = Rails.configuration.x.mastodon.software_update_url
|
||||||
example.run
|
Rails.configuration.x.mastodon.software_update_url = ''
|
||||||
end
|
example.run
|
||||||
|
Rails.configuration.x.mastodon.software_update_url = original
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns true' do
|
it 'returns true' do
|
||||||
|
|
|
@ -124,9 +124,10 @@ RSpec.describe SoftwareUpdateCheckService do
|
||||||
|
|
||||||
context 'when update checking is disabled' do
|
context 'when update checking is disabled' do
|
||||||
around do |example|
|
around do |example|
|
||||||
ClimateControl.modify UPDATE_CHECK_URL: '' do
|
original = Rails.configuration.x.mastodon.software_update_url
|
||||||
example.run
|
Rails.configuration.x.mastodon.software_update_url = ''
|
||||||
end
|
example.run
|
||||||
|
Rails.configuration.x.mastodon.software_update_url = original
|
||||||
end
|
end
|
||||||
|
|
||||||
before do
|
before do
|
||||||
|
@ -148,9 +149,10 @@ RSpec.describe SoftwareUpdateCheckService do
|
||||||
let(:update_check_url) { 'https://api.example.com/update_check' }
|
let(:update_check_url) { 'https://api.example.com/update_check' }
|
||||||
|
|
||||||
around do |example|
|
around do |example|
|
||||||
ClimateControl.modify UPDATE_CHECK_URL: 'https://api.example.com/update_check' do
|
original = Rails.configuration.x.mastodon.software_update_url
|
||||||
example.run
|
Rails.configuration.x.mastodon.software_update_url = 'https://api.example.com/update_check'
|
||||||
end
|
example.run
|
||||||
|
Rails.configuration.x.mastodon.software_update_url = original
|
||||||
end
|
end
|
||||||
|
|
||||||
it_behaves_like 'when the feature is enabled'
|
it_behaves_like 'when the feature is enabled'
|
||||||
|
|
Loading…
Reference in a new issue