2018-10-04 14:05:54 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative '../../config/boot'
|
|
|
|
require_relative '../../config/environment'
|
|
|
|
require_relative 'cli_helper'
|
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class RegistrationsCLI < Thor
|
2018-10-25 14:05:33 +00:00
|
|
|
def self.exit_on_failure?
|
|
|
|
true
|
|
|
|
end
|
2018-10-27 20:56:16 +00:00
|
|
|
|
2018-10-04 14:05:54 +00:00
|
|
|
desc 'open', 'Open registrations'
|
|
|
|
def open
|
2019-03-14 04:28:30 +00:00
|
|
|
Setting.registrations_mode = 'open'
|
2018-10-04 14:05:54 +00:00
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
|
2022-05-02 15:41:34 +00:00
|
|
|
desc 'approved', 'Open approval-based registrations'
|
|
|
|
option :require_reason, type: :boolean, aliases: [:require_invite_text]
|
|
|
|
long_desc <<~LONG_DESC
|
|
|
|
Set registrations to require review from staff.
|
|
|
|
|
|
|
|
With --require-reason, require users to enter a reason when registering,
|
|
|
|
otherwise this field is optional.
|
|
|
|
LONG_DESC
|
|
|
|
def approved
|
|
|
|
Setting.registrations_mode = 'approved'
|
|
|
|
Setting.require_invite_text = options[:require_reason] unless options[:require_reason].nil?
|
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
|
2018-10-04 14:05:54 +00:00
|
|
|
desc 'close', 'Close registrations'
|
|
|
|
def close
|
2019-03-14 04:28:30 +00:00
|
|
|
Setting.registrations_mode = 'none'
|
2018-10-04 14:05:54 +00:00
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class SettingsCLI < Thor
|
|
|
|
desc 'registrations SUBCOMMAND ...ARGS', 'Manage state of registrations'
|
|
|
|
subcommand 'registrations', RegistrationsCLI
|
|
|
|
end
|
|
|
|
end
|