aws-sdk-rails 3.6.3 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/aws/rails/middleware/ebs_sqs_active_job_middleware.rb +2 -2
- data/lib/aws/rails/railtie.rb +9 -4
- data/lib/aws/rails/{mailer.rb → ses_mailer.rb} +11 -10
- data/lib/aws/rails/sesv2_mailer.rb +45 -0
- data/lib/aws/rails/sqs_active_job/configuration.rb +14 -2
- data/lib/aws-sdk-rails.rb +2 -1
- metadata +19 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4a36f06cb28402d5c089672aa4e88a7ec087d61496c5d2f2855a61c11b3ca4b
|
4
|
+
data.tar.gz: 19f617df06780135dd75d1f6e76911c2104f8b3f2201b0654b97d29a2fd61bbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d0fb987757cb4b86b660e3180355a8d9870df3f85798f4ab1d085cd03fb448cba686438f0ee7bc96687daeac5faeeee44e8bdf0e88097c243d70bf1531dd0c5
|
7
|
+
data.tar.gz: ad77218a0c85cf43fe3eb8123dedd52d7914bdbfa6323a46299b743c97340edf5fe59774efae0fece141b9ae4e02949e2d17ad2cb00bb119e514e6367442c929
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.7.0
|
@@ -24,7 +24,7 @@ module Aws
|
|
24
24
|
|
25
25
|
# Only accept requests from this user agent if it is from localhost or a docker host in case of forgery.
|
26
26
|
unless request.local? || sent_from_docker_host?(request)
|
27
|
-
@logger.warn("SQSD request detected from untrusted address #{request.
|
27
|
+
@logger.warn("SQSD request detected from untrusted address #{request.ip}; returning 403 forbidden.")
|
28
28
|
return FORBIDDEN_RESPONSE
|
29
29
|
end
|
30
30
|
|
@@ -81,7 +81,7 @@ module Aws
|
|
81
81
|
end
|
82
82
|
|
83
83
|
def sent_from_docker_host?(request)
|
84
|
-
app_runs_in_docker_container? && request.
|
84
|
+
app_runs_in_docker_container? && request.ip == '172.17.0.1'
|
85
85
|
end
|
86
86
|
|
87
87
|
def app_runs_in_docker_container?
|
data/lib/aws/rails/railtie.rb
CHANGED
@@ -10,6 +10,7 @@ module Aws
|
|
10
10
|
# Initialization Actions
|
11
11
|
Aws::Rails.use_rails_encrypted_credentials
|
12
12
|
Aws::Rails.add_action_mailer_delivery_method
|
13
|
+
Aws::Rails.add_action_mailer_delivery_method(:sesv2)
|
13
14
|
Aws::Rails.log_to_rails_logger
|
14
15
|
end
|
15
16
|
|
@@ -28,11 +29,15 @@ module Aws
|
|
28
29
|
#
|
29
30
|
# @param [Symbol] name The name of the ActionMailer delivery method to
|
30
31
|
# register.
|
31
|
-
# @param [Hash]
|
32
|
-
# Aws::SES::Client initialization method.
|
33
|
-
def self.add_action_mailer_delivery_method(name = :ses,
|
32
|
+
# @param [Hash] client_options The options you wish to pass on to the
|
33
|
+
# Aws::SES[V2]::Client initialization method.
|
34
|
+
def self.add_action_mailer_delivery_method(name = :ses, client_options = {})
|
34
35
|
ActiveSupport.on_load(:action_mailer) do
|
35
|
-
|
36
|
+
if name == :sesv2
|
37
|
+
add_delivery_method(name, Aws::Rails::Sesv2Mailer, client_options)
|
38
|
+
else
|
39
|
+
add_delivery_method(name, Aws::Rails::SesMailer, client_options)
|
40
|
+
end
|
36
41
|
end
|
37
42
|
end
|
38
43
|
|
@@ -15,7 +15,7 @@ module Aws
|
|
15
15
|
#
|
16
16
|
# Uses the AWS SDK for Ruby's credential provider chain when creating an SES
|
17
17
|
# client instance.
|
18
|
-
class
|
18
|
+
class SesMailer
|
19
19
|
# @param [Hash] options Passes along initialization options to
|
20
20
|
# [Aws::SES::Client.new](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SES/Client.html#initialize-instance_method).
|
21
21
|
def initialize(options = {})
|
@@ -25,15 +25,12 @@ module Aws
|
|
25
25
|
# Rails expects this method to exist, and to handle a Mail::Message object
|
26
26
|
# correctly. Called during mail delivery.
|
27
27
|
def deliver!(message)
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
end
|
35
|
-
|
36
|
-
@client.send_raw_email(send_opts).tap do |response|
|
28
|
+
params = {
|
29
|
+
raw_message: { data: message.to_s },
|
30
|
+
source: message.smtp_envelope_from, # defaults to From header
|
31
|
+
destinations: message.smtp_envelope_to # defaults to destinations (To,Cc,Bcc)
|
32
|
+
}
|
33
|
+
@client.send_raw_email(params).tap do |response|
|
37
34
|
message.header[:ses_message_id] = response.message_id
|
38
35
|
end
|
39
36
|
end
|
@@ -45,3 +42,7 @@ module Aws
|
|
45
42
|
end
|
46
43
|
end
|
47
44
|
end
|
45
|
+
|
46
|
+
# This is for backwards compatibility after introducing support for SESv2.
|
47
|
+
# The old mailer is now replaced with the new SES (v1) mailer.
|
48
|
+
Aws::Rails::Mailer = Aws::Rails::SesMailer
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'aws-sdk-sesv2'
|
4
|
+
|
5
|
+
module Aws
|
6
|
+
module Rails
|
7
|
+
# Provides a delivery method for ActionMailer that uses Amazon Simple Email
|
8
|
+
# Service V2.
|
9
|
+
#
|
10
|
+
# Once you have an SESv2 delivery method you can configure Rails to
|
11
|
+
# use this for ActionMailer in your environment configuration
|
12
|
+
# (e.g. RAILS_ROOT/config/environments/production.rb)
|
13
|
+
#
|
14
|
+
# config.action_mailer.delivery_method = :sesv2
|
15
|
+
#
|
16
|
+
# Uses the AWS SDK for Ruby's credential provider chain when creating an SESV2
|
17
|
+
# client instance.
|
18
|
+
class Sesv2Mailer
|
19
|
+
# @param [Hash] options Passes along initialization options to
|
20
|
+
# [Aws::SESV2::Client.new](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SESV2/Client.html#initialize-instance_method).
|
21
|
+
def initialize(options = {})
|
22
|
+
@client = SESV2::Client.new(options)
|
23
|
+
end
|
24
|
+
|
25
|
+
# Rails expects this method to exist, and to handle a Mail::Message object
|
26
|
+
# correctly. Called during mail delivery.
|
27
|
+
def deliver!(message)
|
28
|
+
params = {
|
29
|
+
content: { raw: { data: message.to_s } },
|
30
|
+
from_email_address: message.smtp_envelope_from, # defaults to From header
|
31
|
+
# defaults to destinations (To,Cc,Bcc) - stick all on bcc to be delivered anyway
|
32
|
+
destination: { bcc_addresses: message.smtp_envelope_to }
|
33
|
+
}
|
34
|
+
@client.send_email(params).tap do |response|
|
35
|
+
message.header[:ses_message_id] = response.message_id
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# ActionMailer expects this method to be present and to return a hash.
|
40
|
+
def settings
|
41
|
+
{}
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -145,8 +145,7 @@ module Aws
|
|
145
145
|
|
146
146
|
# Load options from YAML file
|
147
147
|
def load_from_file(file_path)
|
148
|
-
|
149
|
-
opts = YAML.load(ERB.new(File.read(file_path)).result) || {}
|
148
|
+
opts = load_yaml(file_path) || {}
|
150
149
|
opts.deep_symbolize_keys
|
151
150
|
end
|
152
151
|
|
@@ -158,6 +157,19 @@ module Aws
|
|
158
157
|
def user_agent
|
159
158
|
"ft/aws-sdk-rails-activejob/#{Aws::Rails::VERSION}"
|
160
159
|
end
|
160
|
+
|
161
|
+
def load_yaml(file_path)
|
162
|
+
require "erb"
|
163
|
+
source = ERB.new(File.read(file_path)).result
|
164
|
+
|
165
|
+
# Avoid incompatible changes with Psych 4.0.0
|
166
|
+
# https://bugs.ruby-lang.org/issues/17866
|
167
|
+
begin
|
168
|
+
YAML.load(source, aliases: true) || {}
|
169
|
+
rescue ArgumentError
|
170
|
+
YAML.load(source) || {}
|
171
|
+
end
|
172
|
+
end
|
161
173
|
end
|
162
174
|
end
|
163
175
|
end
|
data/lib/aws-sdk-rails.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative 'aws/rails/
|
3
|
+
require_relative 'aws/rails/ses_mailer'
|
4
|
+
require_relative 'aws/rails/sesv2_mailer'
|
4
5
|
require_relative 'aws/rails/railtie'
|
5
6
|
require_relative 'aws/rails/notifications'
|
6
7
|
require_relative 'aws/rails/sqs_active_job/configuration'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-record
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: aws-sdk-sesv2
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: aws-sdk-sqs
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -123,10 +137,11 @@ files:
|
|
123
137
|
- lib/active_job/queue_adapters/amazon_sqs_adapter.rb
|
124
138
|
- lib/active_job/queue_adapters/amazon_sqs_async_adapter.rb
|
125
139
|
- lib/aws-sdk-rails.rb
|
126
|
-
- lib/aws/rails/mailer.rb
|
127
140
|
- lib/aws/rails/middleware/ebs_sqs_active_job_middleware.rb
|
128
141
|
- lib/aws/rails/notifications.rb
|
129
142
|
- lib/aws/rails/railtie.rb
|
143
|
+
- lib/aws/rails/ses_mailer.rb
|
144
|
+
- lib/aws/rails/sesv2_mailer.rb
|
130
145
|
- lib/aws/rails/sqs_active_job/configuration.rb
|
131
146
|
- lib/aws/rails/sqs_active_job/executor.rb
|
132
147
|
- lib/aws/rails/sqs_active_job/job_runner.rb
|
@@ -164,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
179
|
- !ruby/object:Gem::Version
|
165
180
|
version: '0'
|
166
181
|
requirements: []
|
167
|
-
rubygems_version: 3.2.
|
182
|
+
rubygems_version: 3.2.7
|
168
183
|
signing_key:
|
169
184
|
specification_version: 4
|
170
185
|
summary: AWS SDK for Ruby on Rails Plugin
|