mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 12:58:06 +01:00
Use normalizes
to prepare Webhook#events
value (#27605)
This commit is contained in:
parent
bac9e0b55d
commit
b7807f3d84
2 changed files with 39 additions and 8 deletions
|
@ -33,11 +33,11 @@ class Webhook < ApplicationRecord
|
||||||
validates :secret, presence: true, length: { minimum: 12 }
|
validates :secret, presence: true, length: { minimum: 12 }
|
||||||
validates :events, presence: true
|
validates :events, presence: true
|
||||||
|
|
||||||
validate :validate_events
|
validate :events_validation_error, if: :invalid_events?
|
||||||
validate :validate_permissions
|
validate :validate_permissions
|
||||||
validate :validate_template
|
validate :validate_template
|
||||||
|
|
||||||
before_validation :strip_events
|
normalizes :events, with: ->(events) { events.filter_map { |event| event.strip.presence } }
|
||||||
before_validation :generate_secret
|
before_validation :generate_secret
|
||||||
|
|
||||||
def rotate_secret!
|
def rotate_secret!
|
||||||
|
@ -69,8 +69,12 @@ class Webhook < ApplicationRecord
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def validate_events
|
def events_validation_error
|
||||||
errors.add(:events, :invalid) if events.any? { |e| EVENTS.exclude?(e) }
|
errors.add(:events, :invalid)
|
||||||
|
end
|
||||||
|
|
||||||
|
def invalid_events?
|
||||||
|
events.blank? || events.difference(EVENTS).any?
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_permissions
|
def validate_permissions
|
||||||
|
@ -88,10 +92,6 @@ class Webhook < ApplicationRecord
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def strip_events
|
|
||||||
self.events = events.filter_map { |str| str.strip.presence } if events.present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def generate_secret
|
def generate_secret
|
||||||
self.secret = SecureRandom.hex(20) if secret.blank?
|
self.secret = SecureRandom.hex(20) if secret.blank?
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,6 +5,37 @@ require 'rails_helper'
|
||||||
RSpec.describe Webhook do
|
RSpec.describe Webhook do
|
||||||
let(:webhook) { Fabricate(:webhook) }
|
let(:webhook) { Fabricate(:webhook) }
|
||||||
|
|
||||||
|
describe 'Validations' do
|
||||||
|
it 'requires presence of events' do
|
||||||
|
record = described_class.new(events: nil)
|
||||||
|
record.valid?
|
||||||
|
|
||||||
|
expect(record).to model_have_error_on_field(:events)
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'requires non-empty events value' do
|
||||||
|
record = described_class.new(events: [])
|
||||||
|
record.valid?
|
||||||
|
|
||||||
|
expect(record).to model_have_error_on_field(:events)
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'requires valid events value from EVENTS' do
|
||||||
|
record = described_class.new(events: ['account.invalid'])
|
||||||
|
record.valid?
|
||||||
|
|
||||||
|
expect(record).to model_have_error_on_field(:events)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'Normalizations' do
|
||||||
|
it 'cleans up events values' do
|
||||||
|
record = described_class.new(events: ['account.approved', 'account.created ', ''])
|
||||||
|
|
||||||
|
expect(record.events).to eq(%w(account.approved account.created))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe '#rotate_secret!' do
|
describe '#rotate_secret!' do
|
||||||
it 'changes the secret' do
|
it 'changes the secret' do
|
||||||
previous_value = webhook.secret
|
previous_value = webhook.secret
|
||||||
|
|
Loading…
Reference in a new issue