openc3-cosmos-cmd-tlm-api/app/controllers/screens_controller.rb
# encoding: ascii-8bit
# Copyright 2024 OpenC3, Inc.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# This file may also be used under the terms of a commercial license
# if purchased from OpenC3, Inc.
class ScreensController < ApplicationController
def index
return unless authorization('system')
scope = sanitize_params([:scope])
return unless scope
scope = scope[0]
render json: Screen.all(scope)
end
def show
return unless authorization('system')
result = sanitize_params([:scope, :target, :screen])
return unless result
screen = Screen.find(*result)
if screen
render json: screen
else
head :not_found
end
end
def create
return unless authorization('system_set')
result = sanitize_params([:scope, :target, :screen])
return unless result
text = params.require([:text])[0]
result << text
screen = Screen.create(*result)
OpenC3::Logger.info("Screen saved: #{params[:target]} #{params[:screen]}", scope: params[:scope], user: username())
render json: screen
rescue => e
logger.error(e.formatted)
render json: { status: 'error', message: e.message }, status: 500
end
def destroy
return unless authorization('system_set')
result = sanitize_params([:scope, :target, :screen])
return unless result
screen = Screen.destroy(*result)
OpenC3::Logger.info("Screen deleted: #{params[:target]} #{params[:screen]}", scope: params[:scope], user: username())
head :ok
rescue => e
logger.error(e.formatted)
render json: { status: 'error', message: e.message }, status: 500
end
end