Class: Naf::LogParsersController

Inherits:
ApiSimpleClusterAuthenticatorApplicationController show all
Defined in:
app/controllers/naf/log_parsers_controller.rb

Instance Method Summary collapse

Methods inherited from ApiSimpleClusterAuthenticatorApplicationController

#naf_cookie_valid?

Instance Method Details

#logsObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/naf/log_parsers_controller.rb', line 4

def logs
  if naf_cookie_valid?
    if params['record_id'].present?
      response = params['logical_type'].constantize.new(params).logs

      if response.present?
        success = true
      else
        success = false
      end
    else
      response = {
        logs: '&nbsp;&nbsp;<span>Record id is not present</br></span>'
      }
      success = false
    end

    render json: "convertToJsonCallback(" + { success: success }.merge(response).to_json + ")"
  else
    render json: "convertToJsonCallback(" + { success: false }.to_json + ")"
  end
end