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
# File 'app/controllers/naf/log_parsers_controller.rb', line 4

def logs
  if naf_cookie_valid?
    response = params['logical_type'].constantize.new(params).logs
    if response.present?
      success = true
    else
      success = false
    end

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