Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add support for update broadcast #97

Merged
merged 2 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
resend (0.18.0)
resend (0.18.1)
httparty (>= 0.21.0)

GEM
Expand Down
28 changes: 22 additions & 6 deletions examples/broadcasts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,28 @@

Resend.api_key = ENV["RESEND_API_KEY"]

params = {
# replace with an existing audience id
audience_id = "78b8d3bc-a55a-45a3-aee6-6ec0a5e13d7e"

create_params = {
from: "[email protected]",
subject: "Hello",
audience_id: "78b8d3bc-a55a-45a3-aee6-6ec0a5e13d7e", # replace with an existing audience id
subject: "Hello from Ruby SDK",
audience_id: audience_id,
text: "Hello, how are you?",
name: "Hello from Ruby SDK",
}

broadcast = Resend::Broadcasts.create(params)
broadcast = Resend::Broadcasts.create(create_params)
puts "created broadcast: #{broadcast[:id]}"

update_params = {
broadcast_id: broadcast[:id],
name: "Hello from Ruby SDK - updated",
}

updated_broadcast = Resend::Broadcasts.update(update_params)
puts "updated broadcast: #{updated_broadcast[:id]}"

send_params = {
broadcast_id: broadcast[:id],
scheduled_at: "in 1 min",
Expand All @@ -30,5 +42,9 @@
retrieved = Resend::Broadcasts.get(broadcast[:id])
puts "retrieved #{retrieved[:id]}"

Resend::Broadcasts.remove(broadcast[:id])
puts "removed #{broadcast[:id]}"
if retrieved[:status] == 'draft'
Resend::Broadcasts.remove(broadcast[:id])
puts "removed #{broadcast[:id]}"
else
puts 'Cannot remove a broadcast that is not in draft status'
end
6 changes: 6 additions & 0 deletions lib/resend/broadcasts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ def create(params = {})
Resend::Request.new(path, params, "post").perform
end

# https://resend.com/docs/api-reference/broadcasts/update-broadcast
def update(params = {})
path = "broadcasts/#{params[:broadcast_id]}"
Resend::Request.new(path, params, "patch").perform
end

# https://resend.com/docs/api-reference/broadcasts/send-broadcast
def send(params = {})
path = "broadcasts/#{params[:broadcast_id]}/send"
Expand Down
5 changes: 5 additions & 0 deletions lib/resend/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ def perform
def handle_error!(resp)
code = resp[:statusCode]
body = resp[:message]

# get error from the known list of errors
error = Resend::Error::ERRORS[code]
raise(error.new(body, code)) if error

# Raise generic Resend error when the error code is not part of the known errors
raise Resend::Error.new(body, code)
end

private
Expand Down
13 changes: 13 additions & 0 deletions spec/broadcasts_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@
end
end

describe "update" do
it "should update broadcast" do
resp = {
"id": "49a3999c-0ce1-4ea6-ab68-afcd6dc2e794"
}
params = {
"broadcast_id": "49a3999c-0ce1-4ea6-ab68-afcd6dc2e794"
}
allow_any_instance_of(Resend::Request).to receive(:perform).and_return(resp)
expect(Resend::Broadcasts.update(params)[:id]).to eql("49a3999c-0ce1-4ea6-ab68-afcd6dc2e794")
end
end

describe "send" do
it "should send broadcast" do
resp = {
Expand Down
1 change: 0 additions & 1 deletion spec/railtie/mailer_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true

require "rails"
require "json"
require "resend"
require "resend/railtie"
require "spec_helper"
Expand Down
9 changes: 9 additions & 0 deletions spec/request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,14 @@
}
expect { req.handle_error!(resp) }.to raise_error(Resend::Error::InternalServerError, /500/)
end

it 'unkown error should return Resend::Error' do
req = described_class.new
resp = {
:statusCode => 999,
:message => "999"
}
expect { req.handle_error!(resp) }.to raise_error(Resend::Error, "999")
end
end
end