decidim-api 0.31.6 → 0.31.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/concerns/decidim/api/user_extension.rb +19 -0
- data/lib/decidim/api/engine.rb +39 -0
- data/lib/decidim/api/version.rb +1 -1
- metadata +13 -13
- data/config/initializers/devise.rb +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28514d8d25459800a73dd93cb126d49e8c8cab02ce012bf7b3b2ac40f4689bfc
|
|
4
|
+
data.tar.gz: 43acbee1f49a0fbb17d77f3fdec0221461dd7bbe3dc5569458f9f98921ca92d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67b9f489204276a4c5e5bef80b41beefa8c2b0743097191478fd4d686d4e0fc007097a9db5f096476f7084b66ee55adce70ef157f592bc7004d9123b63f39f8a
|
|
7
|
+
data.tar.gz: b15628e679475a9ecbdb6582bec1219c8c1397b0d41f3b2cd357236dc9ea14fab7118a4209c4dc25fff555160b9cebc3c71363ba8bbc53e76281d1838a7370b5
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "active_support/concern"
|
|
4
|
+
|
|
5
|
+
module Decidim
|
|
6
|
+
module Api
|
|
7
|
+
# This concern adds the JWT authenticable strategy for the User models to
|
|
8
|
+
# allow regular users to sign in through the API (if configured from the
|
|
9
|
+
# system panel). Allows normal users to utilize the API e.g. through mobile
|
|
10
|
+
# applications.
|
|
11
|
+
module UserExtension
|
|
12
|
+
extend ActiveSupport::Concern
|
|
13
|
+
|
|
14
|
+
included do
|
|
15
|
+
devise :jwt_authenticatable, jwt_revocation_strategy: Decidim::Api::JwtDenylist
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
data/lib/decidim/api/engine.rb
CHANGED
|
@@ -41,6 +41,45 @@ module Decidim
|
|
|
41
41
|
end
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
initializer "decidim_api.devise", before: "add_routing_paths" do |app|
|
|
45
|
+
config.to_prepare do
|
|
46
|
+
Decidim::User.include Decidim::Api::UserExtension
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Required for the development environment because otherwise the JWT
|
|
50
|
+
# authentication strategy would be lost during code reloads.
|
|
51
|
+
app.reloader.after_class_unload do
|
|
52
|
+
Decidim::User.include Decidim::Api::UserExtension
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
initializer "decidim_api.devise_jwt", after: "devise.secret_key" do
|
|
57
|
+
Devise.jwt do |jwt|
|
|
58
|
+
# In order to be compatible with the JWT authentication, we need to set these
|
|
59
|
+
# configurations. JWT secret is being used by the devise-jwt to sign the
|
|
60
|
+
# tokens, once the user authenticated. The token signature ensures the
|
|
61
|
+
# validity of the token and that the user has not tampered with it. If the
|
|
62
|
+
# secret is not set correctly, the API authentication does not work.
|
|
63
|
+
#
|
|
64
|
+
# Note that the `dispatch_requests` and `revocation_requests` paths are the
|
|
65
|
+
# full paths because we do not want the JWT tokens to be dispatched or revoked
|
|
66
|
+
# during normal Decidim user sign ins or sign outs. This also requires a small
|
|
67
|
+
# override to `Warden::JWTAuth` which is defined at
|
|
68
|
+
# `decidim-api/lib/warden/jwt_auth/decidim_overrides.rb`.
|
|
69
|
+
jwt.secret = Decidim::Env.new("DECIDIM_API_JWT_SECRET").value || Devise.secret_key
|
|
70
|
+
raise "Please define the secret key for Devise" unless jwt.secret
|
|
71
|
+
|
|
72
|
+
jwt.dispatch_requests = [
|
|
73
|
+
["POST", %r{^/api/sign_in$}]
|
|
74
|
+
]
|
|
75
|
+
jwt.revocation_requests = [
|
|
76
|
+
["DELETE", %r{^/api/sign_out$}]
|
|
77
|
+
]
|
|
78
|
+
jwt.expiration_time = Decidim::Api.jwt_expires_in.minutes.to_i
|
|
79
|
+
jwt.aud_header = "X_JWT_AUD"
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
44
83
|
initializer "decidim_api.data_migrate", after: "decidim_core.data_migrate" do
|
|
45
84
|
DataMigrate.configure do |config|
|
|
46
85
|
config.data_migrations_path << root.join("db/data").to_s
|
data/lib/decidim/api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2026-07-
|
|
13
|
+
date: 2026-07-30 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.31.
|
|
21
|
+
version: 0.31.7
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.31.
|
|
28
|
+
version: 0.31.7
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: devise-jwt
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -94,56 +94,56 @@ dependencies:
|
|
|
94
94
|
requirements:
|
|
95
95
|
- - '='
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 0.31.
|
|
97
|
+
version: 0.31.7
|
|
98
98
|
type: :development
|
|
99
99
|
prerelease: false
|
|
100
100
|
version_requirements: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
102
|
- - '='
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.31.
|
|
104
|
+
version: 0.31.7
|
|
105
105
|
- !ruby/object:Gem::Dependency
|
|
106
106
|
name: decidim-comments
|
|
107
107
|
requirement: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
109
|
- - '='
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 0.31.
|
|
111
|
+
version: 0.31.7
|
|
112
112
|
type: :development
|
|
113
113
|
prerelease: false
|
|
114
114
|
version_requirements: !ruby/object:Gem::Requirement
|
|
115
115
|
requirements:
|
|
116
116
|
- - '='
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: 0.31.
|
|
118
|
+
version: 0.31.7
|
|
119
119
|
- !ruby/object:Gem::Dependency
|
|
120
120
|
name: decidim-dev
|
|
121
121
|
requirement: !ruby/object:Gem::Requirement
|
|
122
122
|
requirements:
|
|
123
123
|
- - '='
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: 0.31.
|
|
125
|
+
version: 0.31.7
|
|
126
126
|
type: :development
|
|
127
127
|
prerelease: false
|
|
128
128
|
version_requirements: !ruby/object:Gem::Requirement
|
|
129
129
|
requirements:
|
|
130
130
|
- - '='
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 0.31.
|
|
132
|
+
version: 0.31.7
|
|
133
133
|
- !ruby/object:Gem::Dependency
|
|
134
134
|
name: decidim-participatory_processes
|
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
|
137
137
|
- - '='
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 0.31.
|
|
139
|
+
version: 0.31.7
|
|
140
140
|
type: :development
|
|
141
141
|
prerelease: false
|
|
142
142
|
version_requirements: !ruby/object:Gem::Requirement
|
|
143
143
|
requirements:
|
|
144
144
|
- - '='
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
|
-
version: 0.31.
|
|
146
|
+
version: 0.31.7
|
|
147
147
|
description: API engine for decidim
|
|
148
148
|
email:
|
|
149
149
|
- josepjaume@gmail.com
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- app/controllers/decidim/api/graphiql_controller.rb
|
|
161
161
|
- app/controllers/decidim/api/queries_controller.rb
|
|
162
162
|
- app/controllers/decidim/api/sessions_controller.rb
|
|
163
|
+
- app/models/concerns/decidim/api/user_extension.rb
|
|
163
164
|
- app/models/decidim/api/api_user.rb
|
|
164
165
|
- app/models/decidim/api/jwt_denylist.rb
|
|
165
166
|
- app/packs/entrypoints/decidim_api_docs.js
|
|
@@ -172,7 +173,6 @@ files:
|
|
|
172
173
|
- app/views/decidim/api/graphiql/show.html.erb
|
|
173
174
|
- app/views/layouts/decidim/api/documentation.html.erb
|
|
174
175
|
- config/assets.rb
|
|
175
|
-
- config/initializers/devise.rb
|
|
176
176
|
- config/locales/am-ET.yml
|
|
177
177
|
- config/locales/ar.yml
|
|
178
178
|
- config/locales/bg.yml
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
Devise.jwt do |jwt|
|
|
4
|
-
# In order to be compatible with the JWT authentication, we need to set these
|
|
5
|
-
# configurations. JWT secret is being used by the devise-jwt to sign the
|
|
6
|
-
# tokens, once the user authenticated. The token signature ensures the
|
|
7
|
-
# validity of the token and that the user has not tampered with it. If the
|
|
8
|
-
# secret is not set correctly, the API authentication does not work.
|
|
9
|
-
#
|
|
10
|
-
# Note that the `dispatch_requests` and `revocation_requests` paths are the
|
|
11
|
-
# full paths because we do not want the JWT tokens to be dispatched or revoked
|
|
12
|
-
# during normal Decidim user sign ins or sign outs. This also requires a small
|
|
13
|
-
# override to `Warden::JWTAuth` which is defined at
|
|
14
|
-
# `decidim-api/lib/warden/jwt_auth/decidim_overrides.rb`.
|
|
15
|
-
jwt.secret = Decidim::Env.new("DECIDIM_API_JWT_SECRET").value
|
|
16
|
-
next unless jwt.secret
|
|
17
|
-
|
|
18
|
-
jwt.dispatch_requests = [
|
|
19
|
-
["POST", %r{^/api/sign_in$}]
|
|
20
|
-
]
|
|
21
|
-
jwt.revocation_requests = [
|
|
22
|
-
["DELETE", %r{^/api/sign_out$}]
|
|
23
|
-
]
|
|
24
|
-
jwt.expiration_time = Decidim::Api.jwt_expires_in.minutes.to_i
|
|
25
|
-
jwt.aud_header = "X_JWT_AUD"
|
|
26
|
-
end
|