Merge pull request #9602 from demarches-simplifiees/fix-invalid-phones

Correction : tâche Rake pour corriger les numéros de téléphone invalides
This commit is contained in:
Eric Leroy-Terquem 2023-10-16 07:22:22 +00:00 committed by GitHub
commit dbb68f29da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 89 additions and 0 deletions

13
app/lib/phone_fixer.rb Normal file
View file

@ -0,0 +1,13 @@
class PhoneFixer
def self.fix(phones_string)
phone_candidates = phones_string
.split(/-/)
.map { |phone_with_space| phone_with_space.gsub(/\s/, '') }
phone_candidates.find { |phone| phone.start_with?(/0(6|7)/) } || phone_candidates.first
end
def self.fixable?(phones_string)
/-/.match?(phones_string)
end
end

View file

@ -0,0 +1,29 @@
require Rails.root.join("lib", "tasks", "task_helper")
namespace :phone_fixer do
desc <<~EOD
Given a procedure_id in argument, run the PhoneFixer.
ex: rails phone_fixer:run\[1\]
EOD
task :run, [:procedure_id] => :environment do |_t, args|
procedure = Procedure.find(args[:procedure_id])
phone_champs = Champ
.where(dossier_id: procedure.dossiers.pluck(:id))
.where(type: "Champs::PhoneChamp")
invalid_phone_champs = phone_champs.reject(&:valid?)
fixable_phone_champs = invalid_phone_champs.filter { |phone| PhoneFixer.fixable?(phone.value) }
fixable_phone_champs.each do |phone|
fixable_phone_value = phone.value
fixed_phone_value = PhoneFixer.fix(fixable_phone_value)
if phone.update(value: fixed_phone_value)
rake_puts "Invalid phone #{fixable_phone_value} is fixed as #{fixed_phone_value}"
else
rake_puts "Failed to fix #{fixable_phone_value}"
end
end
end
end

View file

@ -0,0 +1,47 @@
describe PhoneFixer do
describe '#fix' do
subject { described_class.fix(phone_str) }
context 'when separated evenly with space between and after dash' do
let(:phone_str) { "0203040506 - 0607080900" }
it { is_expected.to eq('0607080900') }
end
context 'when separated oddly without space after dash' do
let(:phone_str) { "0203040506 -0607080900" }
it { is_expected.to eq('0607080900') }
end
context 'when separated oddly without space after dash' do
let(:phone_str) { "0203040506- 0607080900" }
it { is_expected.to eq('0607080900') }
end
context 'when having space inside number' do
let(:phone_str) { "020 3040 506 - 06070 8 09 00 " }
it { is_expected.to eq('0607080900') }
end
end
describe '#fixable' do
subject { described_class.fixable?(phone_str) }
context 'when separated evenly with space between and after dash' do
let(:phone_str) { "0203040506 - 0607080900" }
it { is_expected.to be_truthy }
end
context 'when separated oddly without space after dash' do
let(:phone_str) { "0203040506 -0607080900" }
it { is_expected.to be_truthy }
end
context 'when separated oddly without space after dash' do
let(:phone_str) { "0203040506- 0607080900" }
it { is_expected.to be_truthy }
end
context 'when having space inside number' do
let(:phone_str) { "020 3040 506 - 06070 8 09 00 " }
it { is_expected.to be_truthy }
end
context 'when separated by space' do
let(:phone_str) { "0203040506 0607080900" }
it { is_expected.to be_falsey }
end
end
end