tramway-api 1.8.6.13 → 1.8.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ca5bbce598b65c6fb0dec505e188231b9c54d58b0969d051c86d6db6036d20b
4
- data.tar.gz: ffe9fcb8a71069a74053d894738d61b45b214d232514296cb48323be9cfb3e8f
3
+ metadata.gz: 3ae1c864b0adbd268a320967b353e9e4dafd1229927a1446f7970712e09b7e14
4
+ data.tar.gz: 9a181d73ef86e3938e6a39116393c49ed32ffef83b23e65b54077e2112875171
5
5
  SHA512:
6
- metadata.gz: db32e275c1fe0475cc0207b8b43d6789f5d611b5210863389e151a165171645e235d9b7f101a8494035378f9d7eba743c5c84de8b24f83709066ef5e986d50db
7
- data.tar.gz: 50683c4c9c361680a73faba41569e72d660060e0111e2c6f447b3ae496f59745142712b8291ed292d0de577f1151254a7c523f785e69265cd72c6950a01783c2
6
+ metadata.gz: 9bcef82854507a041424b52ea238316a4ee730b93f315de4f3e9581664af043713171a4ced01504bf3311ba854701711c3ecbb9884a5ec4806ce04b30f054180
7
+ data.tar.gz: f945e100c867be14f73423d23d40b0aaca80479ab7ea7e5170cb6494dcbafe63608bc7ebfda9310efcdeeaa798ff8cf1f3dbfad575482b9dab60fd7fa3bf3443
@@ -6,37 +6,6 @@ module Tramway
6
6
  include ::Knock::Authenticable
7
7
  protect_from_forgery with: :null_session, if: proc { |c| c.request.format == 'application/json' }
8
8
  rescue_from ActiveRecord::RecordNotFound, with: :not_found if Rails.env.production?
9
- before_action :load_application
10
-
11
- def load_application
12
- if engine_loaded(request).present?
13
- build_application_with_engine engine_loaded request
14
- elsif application_class(request).present?
15
- @application = application_class(request).camelize.constantize.first
16
- else
17
- @application = application_object request
18
- end
19
- end
20
-
21
- private
22
-
23
- def build_application_with_engine(engine_loaded)
24
- engine_module = "::Tramway::#{engine_loaded.camelize}".constantize
25
- @application = "#{engine_module}::#{engine_module.application.to_s.camelize}".constantize.first
26
- @application_engine = engine_loaded
27
- end
28
-
29
- def application_class(request)
30
- Constraints::DomainConstraint.new(request.domain).application_class
31
- end
32
-
33
- def engine_loaded(request)
34
- Constraints::DomainConstraint.new(request.domain).engine_loaded
35
- end
36
-
37
- def application_object(request)
38
- Constraints::DomainConstraint.new(request.domain).application_object
39
- end
40
9
 
41
10
  def not_found
42
11
  render json: { data: [] }, status: :not_found
@@ -74,7 +43,7 @@ module Tramway
74
43
 
75
44
  def find_user_by_auth_attributes
76
45
  user_based_model = params[:user_based_model].constantize
77
- Tramway::Api.auth_attributes[user_based_model].each do |attribute|
46
+ Tramway::Api.auth_attributes[params[:user_based_model]].each do |attribute|
78
47
  object = user_based_model.active.where.not(attribute => nil).find_by(attribute => auth_params[:login])
79
48
  return object if object
80
49
  end
@@ -87,7 +56,7 @@ module Tramway
87
56
 
88
57
  def current_user
89
58
  Tramway::Api.user_based_models.map do |user_based_model|
90
- send("current_#{user_based_model.name.underscore}") unless user_based_model == User
59
+ send("current_#{user_based_model.constantize.name.underscore}") unless user_based_model == User
91
60
  end.compact.first
92
61
  end
93
62
  end
@@ -8,9 +8,11 @@ module Tramway::Api::V1
8
8
  before_action :application
9
9
 
10
10
  def index
11
- collection = available_action_for_collection
11
+ @collection = available_action_for_collection
12
12
 
13
- render json: collection,
13
+ raise 'Collection has empty uuid. It should not be empty, because all records with empty uuid will not be rendered' if @collection.map(&:uuid).map(&:empty?).include? true
14
+
15
+ render json: @collection,
14
16
  each_serializer: serializer_class,
15
17
  include: '*',
16
18
  status: :ok
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Api
5
- VERSION = '1.8.6.13'
5
+ VERSION = '1.8.7.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.6.13
4
+ version: 1.8.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-07 00:00:00.000000000 Z
11
+ date: 2021-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_model_serializers
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.10.5
19
+ version: 0.10.12
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.10.5
26
+ version: 0.10.12
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: knock
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  requirements: []
119
- rubygems_version: 3.1.4
119
+ rubygems_version: 3.0.3.1
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: Engine for api