1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/app/services/health_service.rb

89 lines
2.6 KiB
Ruby

# frozen_string_literal: true
# Various methods to check the application status
class HealthService
def self.database?
ActiveRecord::Base.establish_connection
ActiveRecord::Base.connection
ActiveRecord::Base.connected?
rescue ActiveRecord::ActiveRecordError
false
end
def self.redis?
!!Sidekiq.redis(&:info)
rescue Redis::CannotConnectError
false
end
def self.elasticsearch?
require 'elasticsearch/transport'
client = Elasticsearch::Client.new host: "http://#{Rails.application.secrets.elaticsearch_host}:9200"
response = client.perform_request 'GET', '_cluster/health'
!!response.body
rescue Elasticsearch::Transport::Transport::Error, Faraday::ConnectionFailed
false
end
def self.migrations?
!ActiveRecord::Base.connection.migration_context.needs_migration?
end
def self.row_stats
require 'version'
{
version: Version.current,
members: User.members.count,
admins: User.admins.count,
managers: User.managers.count,
availabilities: last_week_availabilities,
reservations: last_week_new_reservations,
orders: last_week_orders,
plans: Setting.get('plans_module'),
spaces: Setting.get('spaces_module'),
online_payment: Setting.get('online_payment_module'),
gateway: Setting.get('payment_gateway'),
wallet: Setting.get('wallet_module'),
statistics: Setting.get('statistics_module'),
trainings: Setting.get('trainings_module'),
public_agenda: Setting.get('public_agenda_module'),
machines: Setting.get('machines_module'),
store: Setting.get('store_module'),
invoices: Setting.get('invoicing_module'),
openlab: Setting.get('openlab_app_secret').present?
}
end
def self.stats
enable = Setting.get('fab_analytics')
return false if enable == 'false'
require 'openssl'
require 'base64'
row_stats.to_json.to_s
key = Setting.get('hub_public_key')
return false unless key
public_key = OpenSSL::PKey::RSA.new(key)
Base64.encode64(public_key.public_encrypt(row_stats.to_json.to_s))
end
# availabilities for the last week
def self.last_week_availabilities
Availability.where('start_at >= ? AND end_at <= ?', 7.days.ago, Time.current).count
end
# reservations made during the last week
def self.last_week_new_reservations
Reservation.where('created_at >= ? AND created_at < ?', 7.days.ago, Time.current).count
end
def self.last_week_orders
Order.where('created_at >= ? AND created_at < ?', 7.days.ago, Time.current).where.not(state: 'cart').count
end
end