-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:AjuntamentdeBarcelona/decidim-bar…
…celona into feat/appsignal
- Loading branch information
Showing
3 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# frozen_string_literal: true | ||
|
||
namespace :notifications do | ||
desc "Destroy old notifications" | ||
task :destroy_old, [:to, :from] => :environment do |_task, args| | ||
args.with_defaults( | ||
to: 1.year.ago.strftime("%Y-%m-%d"), | ||
from: "2017-01-01" | ||
) | ||
|
||
current_date = Date.parse(args.from).beginning_of_month | ||
end_date = Date.parse(args.to).beginning_of_month | ||
dates = [] | ||
while current_date <= end_date | ||
dates << current_date.strftime("%Y-%m-%d") | ||
current_date = current_date.next_month | ||
end | ||
|
||
total = 0 | ||
dates.each do |date| | ||
notifications = Decidim::Notification.where("created_at < ?", date) | ||
total += notifications.count | ||
puts "Destroying #{notifications.count} notifications older than #{date}..." | ||
notifications.destroy_all | ||
end | ||
|
||
puts "You have successfully destroyed #{total} notifications." | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# frozen_string_literal: true | ||
|
||
namespace :proposals_budget_2024_translations do | ||
desc "[CATALAN] Fix translations in proposals for the 2024 particiatory budget" | ||
task update_ca_translations: :environment do | ||
updated_content = { | ||
"decidim.barcelona.pressupostos.2024.pregunta2.enunciat" => "Estat actual i problemes a resoldre:", | ||
"decidim.barcelona.pressupostos.2024.pregunta3.enunciat" => "Descripció de la proposta i impacte esperat:", | ||
"decidim.barcelona.pressupostos.2024.pregunta4.enunciat" => "Cost aproximat (opcional):", | ||
"decidim.barcelona.pressupostos.2024.pregunta5.enunciat" => "A qui més pot interessar la proposta i estaria bé tenir en compte en el projecte?" | ||
} | ||
|
||
update_content_for_lang "ca", updated_content | ||
end | ||
|
||
desc "[SPANISH] Fix translations in proposals for the 2024 particiatory budget" | ||
task update_es_translations: :environment do | ||
updated_content = { | ||
"decidim.barcelona.pressupostos.2024.pregunta2.enunciat" => "Estado actual y problemas a resolver:", | ||
"decidim.barcelona.pressupostos.2024.pregunta3.enunciat" => "Descripción de la propuesta e impacto esperado:", | ||
"decidim.barcelona.pressupostos.2024.pregunta4.enunciat" => "Coste aproximado (opcional):", | ||
"decidim.barcelona.pressupostos.2024.pregunta5.enunciat" => "¿A quién más puede interesarle la propuesta y estaría bien tener en cuenta en el proyecto?" | ||
} | ||
|
||
update_content_for_lang "es", updated_content | ||
end | ||
|
||
def update_content_for_lang(lang, content) | ||
puts "Processing lang #{lang}" | ||
|
||
proposals = Decidim::Proposals::Proposal.where( | ||
"body ->> '#{lang}' LIKE ?", "%decidim.barcelona.pressupostos.2024.pregunta2.enunciat%" | ||
) | ||
|
||
puts "There are #{proposals.count} proposals to update" | ||
|
||
proposals.find_each do |proposal| | ||
puts "Processing Proposal ID: #{proposal.id}" | ||
|
||
body = proposal.body[lang] | ||
|
||
content.each do |copy_id, new_text| | ||
puts "Updating #{copy_id} for Proposal ID: #{proposal.id}" | ||
|
||
body[copy_id] = new_text | ||
end | ||
|
||
proposal.body[lang] = body | ||
proposal.save! | ||
|
||
puts "Successfully updated #{lang} content for Proposal ID: #{proposal.id}" | ||
end | ||
end | ||
end |