Class: ForestLiana::ApplicationController
- Inherits:
-
BaseController
- Object
- ActionController::Base
- BaseController
- ForestLiana::ApplicationController
show all
- Defined in:
- app/controllers/forest_liana/application_controller.rb
Class Method Summary
collapse
Instance Method Summary
collapse
#route_not_found
Class Method Details
.papertrail? ⇒ Boolean
12
13
14
|
# File 'app/controllers/forest_liana/application_controller.rb', line 12
def self.papertrail?
Object.const_get('PaperTrail::Version').is_a?(Class) rescue false
end
|
Instance Method Details
#authenticate_user_from_jwt ⇒ Object
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# File 'app/controllers/forest_liana/application_controller.rb', line 64
def authenticate_user_from_jwt
begin
if request.
if request.['Authorization']
token = request.['Authorization'].split.second
elsif request.['cookie']
match = ForestLiana::Token::REGEX_COOKIE_SESSION_TOKEN.match(request.['cookie'])
token = match[1] if match && match[1]
end
@jwt_decoded_token = JWT.decode(token, ForestLiana.auth_secret, true,
{ algorithm: 'HS256' }).try(:first)
if @jwt_decoded_token['data']
raise ForestLiana::Errors::HTTP401Error.new("Your token format is invalid, please login again.")
end
@rendering_id = @jwt_decoded_token['rendering_id']
else
head :unauthorized
end
rescue JWT::ExpiredSignature, JWT::VerificationError
render json: { error: 'expired_token' }, status: :unauthorized,
serializer: nil
rescue
head :unauthorized
end
end
|
#deactivate_count_response ⇒ Object
99
100
101
|
# File 'app/controllers/forest_liana/application_controller.rb', line 99
def deactivate_count_response
render serializer: nil, json: { meta: { count: 'deactivated'} }
end
|
#forest_user ⇒ Object
NOTICE: Helper method for Smart Routes logic based on current user info.
37
38
39
|
# File 'app/controllers/forest_liana/application_controller.rb', line 37
def forest_user
@jwt_decoded_token
end
|
#internal_server_error ⇒ Object
95
96
97
|
# File 'app/controllers/forest_liana/application_controller.rb', line 95
def internal_server_error
head :internal_server_error
end
|
#serialize_model(record, options = {}) ⇒ Object
41
42
43
44
45
46
|
# File 'app/controllers/forest_liana/application_controller.rb', line 41
def serialize_model(record, options = {})
options[:is_collection] = false
json = ForestAdmin::JSONAPI::Serializer.serialize(record, options)
force_utf8_encoding(json)
end
|
#serialize_models(records, options = {}, fields_searched = []) ⇒ Object
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'app/controllers/forest_liana/application_controller.rb', line 48
def serialize_models(records, options = {}, fields_searched = [])
options[:is_collection] = true
json = ForestAdmin::JSONAPI::Serializer.serialize(records, options)
if options[:params] && options[:params][:search]
fields_searched.concat(get_collection.string_smart_fields_names).uniq!
json['meta'] = {
decorators: ForestLiana::DecorationHelper
.decorate_for_search(json, fields_searched, options[:params][:search])
}
end
force_utf8_encoding(json)
end
|