Last active
May 24, 2021 21:38
-
-
Save jspooner/fb08fdba9a6c726fa5b5 to your computer and use it in GitHub Desktop.
This code test helps us measure your knowledge of Ruby on Rails best practices. Please download this pseudo-Ruby on Rails code, refactor it, and email the results to jonathan[at]carrot.com.
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
# Controller | |
class People < ActionController::Base | |
# ... Other REST actions | |
def create | |
@person = Person.new(params[:person]) | |
slug = "ABC123#{Time.now.to_i.to_s}1239827#{rand(10000)}" | |
@person.slug = slug | |
@person.admin = false | |
if (Person.count + 1).odd? | |
team = "UnicornRainbows" | |
handle = "UnicornRainbows" + (Person.count + 1).to_s | |
@person.handle = handle | |
@person.team = team | |
else | |
team = "LaserScorpions" | |
handle = "LaserScorpions" + (Person.count + 1).to_s | |
@person.handle = handle | |
@person.team = team | |
end | |
if @person.save | |
Emails.validate_email(@person).deliver | |
@admins = Person.where(:admin => true) | |
Emails.admin_new_user(@admins, @person).deliver | |
redirect_to @person, :notice => "Account added!" | |
else | |
render :new | |
end | |
end | |
def validateEmail | |
@user = Person.find_by_slug(params[:slug]) | |
if @user.present? | |
@user.validated = true | |
@user.save | |
Rails.logger.info "USER: User ##{@person.id} validated email successfully." | |
@admins = Person.where(:admin => true) | |
Emails.admin_user_validated(@admins, user) | |
Emails.welcome(@user).deliver! | |
end | |
end | |
end | |
# Model | |
class Person < ActiveRecord::Base | |
attr_accessible :first_name, :last_name, :email, :admin, :slug, :validated, :handle, :team | |
end | |
# Mailer | |
class Emails < ActionMailer::Base | |
def welcome(person) | |
@person = person | |
mail to: @person, from: '[email protected]' | |
end | |
def validate_email(person) | |
@person = person | |
mail to: @person, from: '[email protected]' | |
end | |
def admin_user_validated(admins, user) | |
@admins = admins.collect {|a| a.email } rescue [] | |
@user = user | |
mail to: @admins, from: '[email protected]' | |
end | |
def admin_new_user(admins, user) | |
@admins = admins.collect {|a| a.email } rescue [] | |
@user = user | |
mail to: @admins, from: '[email protected]' | |
end | |
def admin_removing_unvalidated_users(admins, users) | |
@admins = admins.collect {|a| a.email } rescue [] | |
@users = users | |
mail to: admins, from: '[email protected]' | |
end | |
end | |
# Rake Task | |
namespace :accounts do | |
desc "Remove accounts where the email was never validated and it is over 30 days old" | |
task :remove_unvalidated do | |
@people = Person.where('created_at < ?', Time.now - 30.days).where(:validated => false) | |
@people.each do |person| | |
Rails.logger.info "Removing unvalidated user #{person.email}" | |
person.destroy | |
end | |
Emails.admin_removing_unvalidated_users(Person.where(:admin => true), @people).deliver | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment