# frozen_string_literal: true module Projects class LogsController < Projects::ApplicationController before_action :authorize_read_pod_logs! before_action :environment before_action :ensure_deployments, only: %i(k8s elasticsearch) def index if environment.nil? render :empty_logs else render :index end end def k8s render_logs(::PodLogs::KubernetesService, k8s_params) end def elasticsearch render_logs(::PodLogs::ElasticsearchService, elasticsearch_params) end private def render_logs(service, permitted_params) ::Gitlab::UsageCounters::PodLogs.increment(project.id) ::Gitlab::PollingInterval.set_header(response, interval: 3_000) result = service.new(cluster, namespace, params: permitted_params).execute if result.nil? head :accepted elsif result[:status] == :success render json: result else render status: :bad_request, json: result end end def index_params params.permit(:environment_name) end def k8s_params params.permit(:container_name, :pod_name) end def elasticsearch_params params.permit(:container_name, :pod_name, :search, :start_time, :end_time, :cursor) end def environment @environment ||= if index_params.key?(:environment_name) EnvironmentsFinder.new(project, current_user, name: index_params[:environment_name]).find.first else project.default_environment end end def cluster environment.deployment_platform&.cluster end def namespace environment.deployment_namespace end def ensure_deployments return if cluster && namespace.present? render status: :bad_request, json: { status: :error, message: _('Environment does not have deployments') } end end end