Sha256: 94d251a51475b7db8b5b4609025c8d325ecd805b9c524a6f1ddc1751a0fffe6f
Contents?: true
Size: 1.3 KB
Versions: 15
Compression:
Stored size: 1.3 KB
Contents
require_dependency "avo/application_controller" module Avo class DebugController < ApplicationController before_action :authenticate_developer_or_admin! def status respond_to do |format| format.html { render :status } format.text { render :status } end end def send_to_hq url = "#{ENV["HQ_URL"]}/api/v3/debug_requests" timeout = 10 # seconds license_key = Avo::Services::DebugService.debug_report(request)[:hq_payload][:license_key] body = params[:body] body = {license_key: license_key, body: body, payload: Avo::Services::DebugService.debug_report(request).to_json}.to_json Avo::Licensing::Request.post(url, body:, timeout:) render turbo_stream: turbo_stream.replace(:send_to_hq, plain: "Payload sent to Avo HQ.") end def report end def refresh_license license = Licensing::LicenseManager.refresh_license request if license.valid? flash[:notice] = "avohq.io responded: \"#{license.id.humanize} license is valid\"." elsif license.response["reason"].present? flash[:error] = "avohq.io responded: \"#{license.response["reason"]}\"." else flash[:error] = license.response["error"] end redirect_back fallback_location: avo.avo_private_status_path end end end
Version data entries
15 entries across 15 versions & 1 rubygems