You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
841 B

  1. # frozen_string_literal: true
  2. class HomeController < ApplicationController
  3. before_action :authenticate_user!
  4. def index
  5. @body_classes = 'app-body'
  6. @token = find_or_create_access_token.token
  7. @web_settings = Web::Setting.find_by(user: current_user)&.data || {}
  8. @streaming_api_base_url = Rails.configuration.x.streaming_api_base_url
  9. end
  10. private
  11. def authenticate_user!
  12. redirect_to(Rails.configuration.x.single_user_mode ? account_path(Account.first) : about_path) unless user_signed_in?
  13. end
  14. def find_or_create_access_token
  15. Doorkeeper::AccessToken.find_or_create_for(Doorkeeper::Application.where(superapp: true).first, current_user.id, 'read write follow', Doorkeeper.configuration.access_token_expires_in, Doorkeeper.configuration.refresh_token_enabled?)
  16. end
  17. end