Sha256: 321c6ceac9d0eca8b0fb40e9bb6785dc5dc37a47e6668a83bc833d9b8dae7be0
Contents?: true
Size: 1.66 KB
Versions: 5
Compression:
Stored size: 1.66 KB
Contents
require "grape" require 'grape-swagger' # require 'grape-swagger/entity' # require 'grape-swagger/representable' module RestFtpDaemon module API class Root < Grape::API include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation ### LOGGING & HELPERS helpers RestFtpDaemon::CommonHelpers helpers RestFtpDaemon::ApiHelpers helpers BmcDaemonLib::LoggerHelper helpers do def log_prefix ['API', nil, nil] end def logger Root.logger end end before do log_request end ### CLASS CONFIG logger BmcDaemonLib::LoggerPool.instance.get :api do_not_route_head! do_not_route_options! # version 'v1' format :json content_type :json, 'application/json; charset=utf-8' ### MOUNTPOINTS mount RestFtpDaemon::API::Status => MOUNT_STATUS mount RestFtpDaemon::API::Jobs => MOUNT_JOBS mount RestFtpDaemon::API::Dashbaord => MOUNT_BOARD mount RestFtpDaemon::API::Config => MOUNT_CONFIG mount RestFtpDaemon::API::Debug => MOUNT_DEBUG ### API Documentation add_swagger_documentation hide_documentation_path: true, api_version: Conf.app_ver, doc_version: Conf.app_ver, mount_path: MOUNT_SWAGGER_JSON, info: { title: Conf.app_name, version: Conf.app_ver, description: "API description for #{Conf.app_name} #{Conf.app_ver}", } ### INITIALIZATION def initialize super end ### ENDPOINTS get "/" do redirect dashboard_url() end end end end
Version data entries
5 entries across 5 versions & 1 rubygems