aws-actiondispatch-dynamodb 0.1.0
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 +7 -0
- data/CHANGELOG.md +4 -0
- data/LICENSE +175 -0
- data/VERSION +1 -0
- data/lib/action_dispatch/session/dynamo_db_store.rb +84 -0
- data/lib/aws-actiondispatch-dynamodb.rb +18 -0
- data/lib/generators/dynamo_db/session_store_config/USAGE +16 -0
- data/lib/generators/dynamo_db/session_store_config/session_store_config_generator.rb +25 -0
- data/lib/generators/dynamo_db/session_store_config/templates/aws_dynamo_db_session_store.yml +70 -0
- data/lib/generators/dynamo_db/session_store_migration/USAGE +17 -0
- data/lib/generators/dynamo_db/session_store_migration/session_store_migration_generator.rb +40 -0
- data/lib/generators/dynamo_db/session_store_migration/templates/session_store_migration.erb +13 -0
- data/lib/tasks/dynamo_db/session_store.rake +23 -0
- metadata +97 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fbf249640ad7b03a6ee1b2d8617224d845e34b9b4d59863fcc5f12aac4063ca6
|
|
4
|
+
data.tar.gz: 959dcfeb5068909a0ef6ea3df0c91231655cf3661938acb3ce2beec3e735f2ba
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b86ef4c100aa1e1977044e7152ec8ba37103838e164301cb5835dbdbe05fa295aa6b51e289e884af8d3dd4a28869d4672e14cff8ba3194da845fda7817defeef
|
|
7
|
+
data.tar.gz: bccc2d67979b16ead29e8546412ca0ce10635e3953f00664a440c1b6ba825e467d7ba052e50bb56be7f41da6eeb1acedf90c764f761e9f5b01243eff11f8d268
|
data/CHANGELOG.md
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.1.0
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'action_dispatch/middleware/session/abstract_store'
|
|
4
|
+
require 'aws-sessionstore-dynamodb'
|
|
5
|
+
|
|
6
|
+
module ActionDispatch
|
|
7
|
+
module Session
|
|
8
|
+
# Uses the DynamoDB Session Store implementation to create a class that
|
|
9
|
+
# extends `ActionDispatch::Session`. Rails will create a `:dynamo_db_store`
|
|
10
|
+
# configuration for `:session_store` from this class name.
|
|
11
|
+
#
|
|
12
|
+
# This class will use `Rails.application.secret_key_base` as the secret key
|
|
13
|
+
# unless otherwise provided.
|
|
14
|
+
#
|
|
15
|
+
# Configuration can also be provided in YAML files from Rails config, either
|
|
16
|
+
# in `config/dynamo_db_session_store.yml` or `config/dynamo_db_session_store/{Rails.env}.yml`.
|
|
17
|
+
# Configuration files that are environment-specific will take precedence.
|
|
18
|
+
#
|
|
19
|
+
# @see https://docs.aws.amazon.com/sdk-for-ruby/aws-sessionstore-dynamodb/api/Aws/SessionStore/DynamoDB/Configuration.html
|
|
20
|
+
class DynamoDbStore < ActionDispatch::Session::AbstractStore
|
|
21
|
+
def initialize(app, options = {})
|
|
22
|
+
Rails.logger.warn('** Dynamo DB Session Storage no longer lives in aws-sdk-rails. ' \
|
|
23
|
+
'To avoid disruption, please add aws-actiondispatch-dynamodb ~> 0 to your Gemfile to ' \
|
|
24
|
+
'enable this feature when upgrading to aws-sdk-rails ~> 5. **')
|
|
25
|
+
options[:config_file] ||= config_file
|
|
26
|
+
options[:secret_key] ||= Rails.application.secret_key_base
|
|
27
|
+
@middleware = Aws::SessionStore::DynamoDB::RackMiddleware.new(app, options)
|
|
28
|
+
config.dynamo_db_client.config.user_agent_frameworks << 'aws-actiondispatch-dynamodb'
|
|
29
|
+
super
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# @return [Aws::SessionStore::DynamoDB::Configuration]
|
|
33
|
+
def config
|
|
34
|
+
@middleware.config
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
private
|
|
38
|
+
|
|
39
|
+
# Required by `ActionDispatch::Session::AbstractStore`
|
|
40
|
+
def find_session(req, sid)
|
|
41
|
+
@middleware.find_session(req, sid)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
# Required by `ActionDispatch::Session::AbstractStore`
|
|
45
|
+
def write_session(req, sid, session, options)
|
|
46
|
+
@middleware.write_session(req, sid, session, options)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Required by `ActionDispatch::Session::AbstractStore`
|
|
50
|
+
def delete_session(req, sid, options)
|
|
51
|
+
@middleware.delete_session(req, sid, options)
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# rubocop:disable Metrics
|
|
55
|
+
def config_file
|
|
56
|
+
file = ENV.fetch('AWS_DYNAMO_DB_SESSION_CONFIG_FILE', nil)
|
|
57
|
+
file ||= Rails.root.join("config/dynamo_db_session_store/#{Rails.env}.yml")
|
|
58
|
+
file = Rails.root.join('config/dynamo_db_session_store.yml') unless File.exist?(file)
|
|
59
|
+
if File.exist?(file)
|
|
60
|
+
Rails.logger.warn('The dynamo_db_session_store configuration file has been renamed.' \
|
|
61
|
+
'Please use aws_dynamo_db_session_store/<Rails.env>.yml or ' \
|
|
62
|
+
'aws_dynamo_db_session_store.yml. This will be removed in ' \
|
|
63
|
+
'aws-actiondispatch-dynamodb ~> 1')
|
|
64
|
+
else
|
|
65
|
+
file = Rails.root.join("config/aws_dynamo_db_session_store/#{Rails.env}.yml")
|
|
66
|
+
file = Rails.root.join('config/aws_dynamo_db_session_store.yml') unless File.exist?(file)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
file if File.exist?(file)
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
# rubocop:enable Metrics
|
|
73
|
+
|
|
74
|
+
# @api private
|
|
75
|
+
class DynamodbStore < DynamoDbStore
|
|
76
|
+
def initialize(app, options = {})
|
|
77
|
+
Rails.logger.warn('** Session Store :dynamodb_store configuration key has been renamed to :dynamo_db_store, ' \
|
|
78
|
+
'please use the new key instead. The :dynamodb_store key name will be removed in ' \
|
|
79
|
+
'aws-actiondispatch-dynamodb ~> 1 **')
|
|
80
|
+
super
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'action_dispatch/session/dynamo_db_store'
|
|
4
|
+
|
|
5
|
+
module Aws
|
|
6
|
+
module ActionDispatch
|
|
7
|
+
module DynamoDb
|
|
8
|
+
VERSION = File.read(File.expand_path('../VERSION', __dir__)).strip
|
|
9
|
+
|
|
10
|
+
# @api private
|
|
11
|
+
class Railtie < ::Rails::Railtie
|
|
12
|
+
rake_tasks do
|
|
13
|
+
load 'tasks/dynamo_db/session_store.rake'
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Description:
|
|
2
|
+
Generates a sample configuration file DynamoDB session store.
|
|
3
|
+
|
|
4
|
+
Examples:
|
|
5
|
+
`rails generate dynamo_db:session_store_config`
|
|
6
|
+
|
|
7
|
+
This will create:
|
|
8
|
+
config/dynamo_db_session_store.yml
|
|
9
|
+
|
|
10
|
+
Optionally, you can specify the Rails environment to generate
|
|
11
|
+
the configuration file for:
|
|
12
|
+
|
|
13
|
+
`rails generate dynamo_db:session_store_config --environment=development`
|
|
14
|
+
|
|
15
|
+
This will create:
|
|
16
|
+
config/dynamo_db_session_store/development.yml
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rails/generators'
|
|
4
|
+
|
|
5
|
+
# @api private
|
|
6
|
+
module DynamoDb
|
|
7
|
+
module Generators
|
|
8
|
+
# Generates a config file for DynamoDB session storage.
|
|
9
|
+
class SessionStoreConfigGenerator < Rails::Generators::Base
|
|
10
|
+
source_root File.expand_path('templates', __dir__)
|
|
11
|
+
|
|
12
|
+
# Environment to generate the config file for
|
|
13
|
+
class_option :environment,
|
|
14
|
+
desc: 'Optional rails environment to generate the config file for',
|
|
15
|
+
type: :string,
|
|
16
|
+
default: nil
|
|
17
|
+
|
|
18
|
+
def copy_sample_config_file
|
|
19
|
+
path = 'config/aws_dynamo_db_session_store'
|
|
20
|
+
path += "/#{options['environment']}" if options['environment']
|
|
21
|
+
template('aws_dynamo_db_session_store.yml', "#{path}.yml")
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Uncomment and manipulate the key value pairs below
|
|
2
|
+
# in order to configure the DynamoDB Session Store Application.
|
|
3
|
+
|
|
4
|
+
# [String] Session table name.
|
|
5
|
+
#
|
|
6
|
+
# table_name: Sessions
|
|
7
|
+
|
|
8
|
+
# [String] Session table hash key name.
|
|
9
|
+
#
|
|
10
|
+
# table_key: session_id
|
|
11
|
+
|
|
12
|
+
# [String] The secret key for HMAC encryption. This defaults to
|
|
13
|
+
# `Rails.application.secret_key_base`. You can use a different key if desired.
|
|
14
|
+
#
|
|
15
|
+
# secret_key: SECRET_KEY
|
|
16
|
+
|
|
17
|
+
# [Boolean] Define as true or false depending on if you want a strongly
|
|
18
|
+
# consistent read.
|
|
19
|
+
# See AWS DynamoDB documentation for table consistent_read for more
|
|
20
|
+
# information on this setting.
|
|
21
|
+
#
|
|
22
|
+
# consistent_read: true
|
|
23
|
+
|
|
24
|
+
# [Integer] Maximum number of reads consumed per second before
|
|
25
|
+
# DynamoDB returns a ThrottlingException. See AWS DynamoDB documentation
|
|
26
|
+
# or table read_capacity for more information on this setting.
|
|
27
|
+
#
|
|
28
|
+
# read_capacity: 10
|
|
29
|
+
|
|
30
|
+
# [Integer] Maximum number of writes consumed per second before
|
|
31
|
+
# DynamoDB returns a ThrottlingException. See AWS DynamoDB documentation
|
|
32
|
+
# or table write_capacity for more information on this setting.
|
|
33
|
+
#
|
|
34
|
+
# write_capacity: 5
|
|
35
|
+
|
|
36
|
+
# [Boolean] Define as true or false depending on whether you want all errors to be
|
|
37
|
+
# raised up the stack.
|
|
38
|
+
#
|
|
39
|
+
# raise_errors: false
|
|
40
|
+
|
|
41
|
+
# [Integer] Maximum number of seconds earlier
|
|
42
|
+
# from the current time that a session was created.
|
|
43
|
+
# By default this is 7 days.
|
|
44
|
+
#
|
|
45
|
+
# max_age: 604800
|
|
46
|
+
|
|
47
|
+
# [Integer] Maximum number of seconds
|
|
48
|
+
# before the current time that the session was last accessed.
|
|
49
|
+
# By default this is 5 hours.
|
|
50
|
+
#
|
|
51
|
+
# max_stale: 18000
|
|
52
|
+
|
|
53
|
+
# [Boolean] Define as true or false for whether you want to enable locking
|
|
54
|
+
# for all accesses to session data.
|
|
55
|
+
#
|
|
56
|
+
# enable_locking: false
|
|
57
|
+
|
|
58
|
+
# [Integer] Time in milleseconds after which lock will expire.
|
|
59
|
+
#
|
|
60
|
+
# lock_expiry_time: 500
|
|
61
|
+
|
|
62
|
+
# [Integer] Time in milleseconds to wait before retrying to obtain
|
|
63
|
+
# lock once an attempt to obtain lock has been made and has failed.
|
|
64
|
+
#
|
|
65
|
+
# lock_retry_delay: 500
|
|
66
|
+
|
|
67
|
+
# [Integer] Maximum time in seconds to wait to acquire lock
|
|
68
|
+
# before giving up.
|
|
69
|
+
#
|
|
70
|
+
# lock_max_wait_time: 1
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Description:
|
|
2
|
+
Generates an ActiveRecord migration for deleting and a creating
|
|
3
|
+
a DynamoDB sessions table. The migration will be run when the
|
|
4
|
+
command `rake db:migrate` is run in the command line.
|
|
5
|
+
|
|
6
|
+
Example:
|
|
7
|
+
`rails generate dynamo_db:session_store_migration`
|
|
8
|
+
|
|
9
|
+
This will create:
|
|
10
|
+
db/migrate/#{VERSION}_create_dynamo_db_sessions_table.rb
|
|
11
|
+
|
|
12
|
+
Optionally, you can specify the name of the migration:
|
|
13
|
+
|
|
14
|
+
`rails generate dynamo_db:session_store_migration MIGRATION_NAME`
|
|
15
|
+
|
|
16
|
+
This will create:
|
|
17
|
+
db/migrate/#{VERSION}_<MIGRATION_NAME>.rb
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'rails/generators'
|
|
4
|
+
|
|
5
|
+
# @api private
|
|
6
|
+
module DynamoDb
|
|
7
|
+
module Generators
|
|
8
|
+
# Generates an ActiveRecord migration that creates and deletes a DynamoDB
|
|
9
|
+
# Session table.
|
|
10
|
+
class SessionStoreMigrationGenerator < Rails::Generators::NamedBase
|
|
11
|
+
include Rails::Generators::Migration
|
|
12
|
+
|
|
13
|
+
source_root File.expand_path('templates', __dir__)
|
|
14
|
+
|
|
15
|
+
# Desired name of the migration class
|
|
16
|
+
argument :name,
|
|
17
|
+
desc: 'Optional name of the migration class',
|
|
18
|
+
type: :string,
|
|
19
|
+
default: 'create_dynamo_db_sessions_table'
|
|
20
|
+
|
|
21
|
+
def generate_migration_file
|
|
22
|
+
migration_template(
|
|
23
|
+
'session_store_migration.erb',
|
|
24
|
+
"db/migrate/#{name.underscore}.rb"
|
|
25
|
+
)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Next migration number - must be implemented
|
|
29
|
+
def self.next_migration_number(_dir = nil)
|
|
30
|
+
Time.now.utc.strftime('%Y%m%d%H%M%S')
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
private
|
|
34
|
+
|
|
35
|
+
def migration_version
|
|
36
|
+
"#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}"
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= name.camelize %> < ActiveRecord::Migration[<%= migration_version %>]
|
|
4
|
+
def up
|
|
5
|
+
options = Rails.application.config.session_options
|
|
6
|
+
Aws::SessionStore::DynamoDB::Table.create_table(options)
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def down
|
|
10
|
+
options = Rails.application.config.session_options
|
|
11
|
+
Aws::SessionStore::DynamoDB::Table.delete_table(options)
|
|
12
|
+
end
|
|
13
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
namespace 'dynamo_db' do
|
|
4
|
+
namespace 'session_store' do
|
|
5
|
+
desc 'Create the Amazon DynamoDB session store table'
|
|
6
|
+
task create_table: :environment do
|
|
7
|
+
options = Rails.application.config.session_options
|
|
8
|
+
Aws::SessionStore::DynamoDB::Table.create_table(options)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
desc 'Delete the Amazon DynamoDB session store table'
|
|
12
|
+
task delete_table: :environment do
|
|
13
|
+
options = Rails.application.config.session_options
|
|
14
|
+
Aws::SessionStore::DynamoDB::Table.delete_table(options)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
desc 'Clean up old sessions in the Amazon DynamoDB session store table'
|
|
18
|
+
task clean: :environment do
|
|
19
|
+
options = Rails.application.config.session_options
|
|
20
|
+
Aws::SessionStore::DynamoDB::GarbageCollection.collect_garbage(options)
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-actiondispatch-dynamodb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amazon Web Services
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2024-11-16 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: aws-sessionstore-dynamodb
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: actionpack
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 7.1.0
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 7.1.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: railties
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 7.1.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 7.1.0
|
|
55
|
+
description: Amazon Dynamo DB as an ActionDispatch session store
|
|
56
|
+
email:
|
|
57
|
+
- aws-dr-rubygems@amazon.com
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- CHANGELOG.md
|
|
63
|
+
- LICENSE
|
|
64
|
+
- VERSION
|
|
65
|
+
- lib/action_dispatch/session/dynamo_db_store.rb
|
|
66
|
+
- lib/aws-actiondispatch-dynamodb.rb
|
|
67
|
+
- lib/generators/dynamo_db/session_store_config/USAGE
|
|
68
|
+
- lib/generators/dynamo_db/session_store_config/session_store_config_generator.rb
|
|
69
|
+
- lib/generators/dynamo_db/session_store_config/templates/aws_dynamo_db_session_store.yml
|
|
70
|
+
- lib/generators/dynamo_db/session_store_migration/USAGE
|
|
71
|
+
- lib/generators/dynamo_db/session_store_migration/session_store_migration_generator.rb
|
|
72
|
+
- lib/generators/dynamo_db/session_store_migration/templates/session_store_migration.erb
|
|
73
|
+
- lib/tasks/dynamo_db/session_store.rake
|
|
74
|
+
homepage: https://github.com/aws/aws-actiondispatch-dynamodb-ruby
|
|
75
|
+
licenses:
|
|
76
|
+
- Apache-2.0
|
|
77
|
+
metadata: {}
|
|
78
|
+
post_install_message:
|
|
79
|
+
rdoc_options: []
|
|
80
|
+
require_paths:
|
|
81
|
+
- lib
|
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
|
+
requirements:
|
|
84
|
+
- - ">="
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '2.7'
|
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: '0'
|
|
92
|
+
requirements: []
|
|
93
|
+
rubygems_version: 3.5.11
|
|
94
|
+
signing_key:
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: ActionDispatch integration with DynamoDB
|
|
97
|
+
test_files: []
|