-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partner Profile : clean up social media, request types and pick up em…
…ails (#4829) * clean up social media, request types and pick up emails * suggested changes
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
db/migrate/20241204111437_cleanup_invalid_partner_profiles.rb
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,61 @@ | ||
class CleanupInvalidPartnerProfiles < ActiveRecord::Migration[7.1] | ||
def up | ||
# ActiveRecord::Base.logger = Logger.new(STDOUT) | ||
invalid_profiles = Partners::Profile.all.reject(&:valid?) | ||
|
||
return if !invalid_profiles.present? | ||
|
||
invalid_profiles.each do |profile| | ||
# address invalid social media section | ||
|
||
unless (profile.website.present? || | ||
profile.twitter.present? || | ||
profile.facebook.present? || | ||
profile.instagram.present? || | ||
profile.no_social_media_presence || | ||
profile.partner.partials_to_show.exclude?("media_information")) | ||
profile.no_social_media_presence = true | ||
end | ||
|
||
# address no request types set | ||
|
||
unless(profile.enable_quantity_based_requests || profile.enable_individual_requests || profile.enable_child_based_requests) | ||
profile.enable_quantity_based_requests = profile.partner.organization.enable_quantity_based_requests | ||
profile.enable_individual_requests = profile.partner.organization.enable_individual_requests | ||
profile.enable_child_based_requests = profile.partner.organization.enable_child_based_requests | ||
end | ||
|
||
|
||
|
||
# address bad pickup email | ||
|
||
unless profile.valid? | ||
# if profile is not valid at this point, it is a bad pickup email | ||
|
||
pick_up = profile.pick_up_email | ||
pick_up.downcase! | ||
pick_up.strip! | ||
if pick_up == "none" or pick_up == "na" or pick_up == "n/a" or pick_up == "see above" | ||
profile.pick_up_email = "" | ||
else | ||
profile.pick_up_email.gsub!("/",",") | ||
profile.pick_up_email.gsub!(";",",") | ||
profile.pick_up_email.gsub!(" or ", ", ") | ||
profile.pick_up_email.gsub!(" and ", ", ") | ||
profile.pick_up_email.gsub!(" & ", ", ") | ||
end | ||
|
||
if(!profile.valid?) ## If we can't fix the email, append it to the name so we don't lose the information aspect | ||
profile.pick_up_name += ", email: " + profile.pick_up_email | ||
profile.pick_up_email = "" | ||
end | ||
end | ||
|
||
profile.save! | ||
|
||
end | ||
end | ||
def down | ||
# irreversible | ||
end | ||
end |