Friday, April 17, 2009

Vim Setup

I've posted many a setup in vim before, but I've decided to put it on github for easier management.

Wednesday, April 1, 2009

Stars and acts_as_rateable

I recently wanted to implement a star system in Rails. I looked at this rateable plugin and followed this tutorial to create the stars.

It wasn't as cut and dried as I had hoped, so here is the code I used. It's pretty complete. Disclaimer: I used haml and sass and if you don't, you should still be able to understand the code. In case you don't use sass, here's the generated CSS that you get from the sass file.

Friday, March 27, 2009

before_create should return the right boolean!

This is a small thing, but I wasted an hour or so figuring this thing out. I had an a before_create where I set a boolean variable to false and then my tests started to fail? Why? Because before_create will stop the creation of the record if it returns false!


class A << AR::Base
before_create :set_enabled

def set_enabled
self.enabled = false
true # so that it doesn't fail
end
end

Friday, March 20, 2009

Passenger, Monit, Postfix

Setting up Passenger was quite easy, coming from the world of Mongrel. For the most part I followed this. It's pretty comprehensive, but I'll just add some stuff that I had to do on my own.

This is far from a comprehensive list, and if you just follow this things won't work. This also assumes you have _some_ knowledge of how Postfix, Monit, Linux works.

Postfix
I accept and read mail somewhere else (not on the VPS that sends mail). For example, I may use Google to accept mail on the Internet, however, I don't connect my server to Google to send mail. Because of this, when postfix on my server tried to send mail to mydomain.com, it always something like "there is no user on this server". So I opened up /etc/postfix/main.cf and make sure that mydestination doesn't contain your domain name. mydestination tells postfix what resides on your local machine.


mydestination = localhost.localdomain, localhost


Also, to use it, my Rails app's setting were like this:

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "localhost",
:port => 25,
:domain => "www.theinksquad.com"
}



SilverRack and Sources
Installing the clean 8.04 on SilverRack, /etc/apt/sources.list is virtually empty. You need to add:

deb http://ubuntu.media.mit.edu/ubuntu/ hardy main restricted universe multiverse
deb-src http://ubuntu.media.mit.edu/ubuntu/ hardy restricted main multiverse universe

deb http://ubuntu.media.mit.edu/ubuntu/ hardy-updates main restricted universe multiverse
deb-src http://ubuntu.media.mit.edu/ubuntu/ hardy-updates restricted main multiverse universe

deb http://security.ubuntu.com/ubuntu/ hardy-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ hardy-security restricted main multiverse universe


Then "sudo apt-get update" after

Monit
The tutorial above didn't have any tutorial for Monit or God.rb. Install the dependencies first:

sudo apt-get install flex byacc bison -y


Then monit (Make sure this is the latest and greatest version):

wget http://mmonit.com/monit/dist/beta/monit-5.0_beta7.tar.gz
tar -xzvf monit-5.0_beta7.tar.gz && cd monit-5.0_beta7/ && sudo ./configure && sudo make && sudo make install && cd ../
sudo mkdir /etc/monit.d


Then make the monit file for Apache. This file basically tells monit what to watch out for, and how.

Sample /etc/monit.d/apache.monitrc

check process apache with pidfile /var/run/apache2.pid
start program = "/etc/init.d/apache2 start"
stop program = "/etc/init.d/apache2 stop"
if cpu > 60% for 2 cycles then alert
if cpu > 80% for 5 cycles then restart
if totalmem > 200.0 MB for 5 cycles then restart
if children > 250 then restart
if loadavg(5min) greater than 20 for 8 cycles then alert
group yourappnamehere



Since I use workling, I also made a seperate file for it:
server$ sudo vi /etc/monit.d/workling.monitrc
and paste (do a "which ruby" to find out where ruby is and replace the /usr/bin/ruby if needed)

check process workling with pidfile /var/www/yourappname/shared/log/workling.pid
start program = "/bin/bash -c 'HOME=/var/www/yourappname/current RAILS_ENV=production /usr/bin/ruby /var/www/yourappname/current/script/workling_client start'"
stop program = "/bin/bash -c '/usr/bin/ruby /var/www/yourappname/current/script/workling_client stop'"
if totalmem is greater than 180.0 mb for 5 cycles then restart
if cpu is greater than 90% for 5 cycles then restart
if 20 restarts within 20 cycles then timeout
group yourappname


Then reload monit via "sudo monit reload".

Now monit needs to be told to start automatically when we startup and when/if it crashes, we'll use upstart (this is for Ubuntu only?)
 server$ sudo vi /etc/event.d/service_monit

and paste (do a "which monit" to find out where monit is and replace the /usr/local/bin/monit if needed)

# This is an event.d (upstart) script to keep monit running
# To install disable the old way of doing things:
#
# /etc/init.d/monit stop && update-rc.d -f monit remove
#
# then put this script here: /etc/event.d/monit
#
# You can manually start and stop monit like this:
#
# start monit
# stop monit
#
# Michael Hale (http://halethegeek.com)

start on startup
start on runlevel 2
start on runlevel 3
start on runlevel 4
start on runlevel 5

stop on runlevel 0
stop on runlevel 6

exec /usr/local/bin/monit -Ic /etc/monit/monitrc
respawn

Wednesday, March 18, 2009

Moving To Passenger, Workling

I've used backgroundrb for a while now. Coupled with mongrels, monit, it wasn't a pleasant experience. Oh, I forgot to mention that I was learning Linux at the time (still am actually), so it was very difficult for me.

Lately, I've been comtemplating moving my production environment to Passenger, Apache, Workling and God. The next few posts will talk about my experience and what I did. :)

For now, let me just say that this help page played a big part in speeding up my staging.

Tuesday, March 3, 2009

Cleaning Up Your ActiveRecord Sessions

I was looking for a way to do this and found a good resource to find out how (without coding it yourself!)

http://www.quarkruby.com/2007/10/21/sessions-and-cookies-in-ruby-on-rails#sexpire refers to a plugin called limited session but the link is no longer valid. Check out http://iprog.com/project/limited_sessions

Update: this breaks in Rails 2.3, I think it's because of the lazy loading. I've never learned much about sessions, so for now I'll move back to file stored.

Tuesday, February 17, 2009

View helpers in flash

The other day I wanted a nice checkout link in my flash when users added a product to their cart (apart from the checkout in cart area). I soon realized (or remembered) that you don't have access to view helpers in the controller, where you usually assign flash messages.

I spent about 2 hours researching on how to do this but got no answer. People resorted to fancy stuff just to put links in their flash messages. I thought the answer was in the render method. I first tried to use it but it didn't work because you can't call render/redirect_to twice in the same action:


flash[:notice] = render :partial => "some/partial"


So I looked at the source and tried to figure out what it was in render that read the file and spat out the text. 10 minutes later, I got this to work:


flash[:notice] = @template.render(:partial => "some/partial")


So now I can use link_to and other nice view helpers in that partial and it will all render nicely in the flash message. :)

Thursday, February 12, 2009

Smart Activation With Single Sign On

This post is related to another post of mine about getting the rpx single sign on to work.

Scenario:
  • You are using single sign on but require the user to have emails (Facebook does not return email) or require other fields (eg. accept terms of use).
  • You allow users to specify another email besides the one that is returned by the single sign on service (SSOS)
  • If the user changes that email, you want them to validate it (you send an email to them with a link to activate their account), but if they don't change it (meaning they use the same email that is returned by the SSOS), then the account will be automatically activated
For some reason, I did this the hard way at the beginning. I won't expound on how but what I tried to do in 2 days (but failed) actually took 30 minutes doing it the right way (and worked).

Requisites
  1. Make sure you got single sign on working (you're able to read responses and stuff)
If you look at my code and read it a few times you'll understand what I do. From the RPX Controller, you render the login form so they have a chance to change stuff. If they miss out on anything the errors will render. If they submit it, then the form will be submitted to users/create and will render itself if they are still missing stuff. The hidden_field of email_was just stays there, dormant, waiting to be compared later on.

When the user finally has all their stuff filled up and submits the form, if they're on single sign on, then the user will be activated based on the comparison between the email_was and the current email they're trying to save. If they're different, then they're not activated and the user observer sends out the activation mail. If they are the same email, then the account is activated and they have to do one less step. :)

If you have any comments or suggestions please let me know.

Sunday, February 8, 2009

Blocks in View

I had a bunch of "if logged_in? && current_user.admin?" in my views, which made it very ugly. I saw an old video (it is also covered again) from Railscasts and knew this would be my answer.

However, I wanted more customization though. What if I didn't want to wrap my admin_area in a div? What if I wanted to add conditions on the fly and not make a zillion [enter_some_name]_area methods?

This would be particularly useful if, for example, I only want the "delete" option of an object to appear to admins and if the object if destroyable.

In haml:

- admin_area(:conditions => @object.destroyable?) do
= link_to "Destroy", ...


Take a look at my helper method to see what I did. I'd appreciate any comments!

Saturday, February 7, 2009

Form Builder

I don't know why I never know about Form Builder! I was making my own form helpers but in the completely stupid way - in the helper files, which made it clunky. Check out these two posts that helped me out a lot. Although it can seem complicated because of all the (what I think is) meta programming, I suggest you just dive in and explore.

Friday, February 6, 2009

RPX Now: Single Sign-on

As I write this, I'm trying to install the single sign-on capability that RPX Now gives you on my Rails app. I've tried OpenID before (using open_id_authentication plugin and ruby-openid gem) and it was mightly complicated, plus you couldn't only use other 3rd party accounts.

RPX Now claims to be super easy and so far, with grosser's rpx_now gem, it almost seems too easy -- except there are no tutorials that I can find on Google. There are examples in gem's github site but they don't explain much.

This is my attempt at writing one.

First, install the gem (instructions in the github site). If you want to put it in your environment.rb file, it should look like this (remove or replace the version number with an updated one):
config.gem "grosser-rpx_now", :lib => "rpx_now", :version => "0.3", :source => "http://gems.github.com"
Then create an RpxController and add code similar to this to your user model. Of course, you don't have to process the data yourself, but I wanted to (thus my rpx_controller is a bit longer, and I had to read the response in the User model) so that if the rpx profile is missing anything, it will render a something like my normal login page that basically has a form_for(@user ...) where they can fill up the missing data.

Check out actual responses (I just removed any personal data).

Hosting Services

I don't run websites with thousands of users at a time, however, I thought I'd still announce what I use for my hosting services.

VPS: SilverRack
Good price, quick service. They don't spend time fussing over you though, but that's expected in a VPS.

Shared: HostingRails (disclaimer: affiliate link)
I've tried BlueHost, Dreamhost, but I've found HostingRails to be the easiest to deal with. Their support replies lightning fast, and don't diss you even if your problems are your fault!

Tuesday, February 3, 2009

Using --trace; cucumber & machinist order of loading files

I followed this tutorial to easily use Cucumber with a fixture replacement plugin called Machinist. It worked great on my desktop, but when I moved to my laptop, running rake features didn't work - an "uninitialized constant Sham" error popped up and I spent a day figuring it out.

Although the context of this problem is Cucumber and Machinist (which includes Sham), this is a post that talks about using --trace when you run into problems similar to this.

IF YOU'RE FAMILIAR WITH CUCUMBER & MACHINIST...
The problem occured partially because I put my blueprints.rb file where env.rb is. I believe cucumber loads everything there in alphabetical order (doesn't explain why my desktop loaded things differently). The problem is that blueprints.rb tries to call "Sham" which is something that is loaded by Machinist, which in turn is loaded during or after env.rb, not before.

IF YOU'RE NOT FAMILIAR NEITHER CUCUMBER NOR MACHINIST...
The problem occured because of the order files were loaded. I do not know why files were loaded differently in my desktop vs the laptop, but what the heck -- I found the error by using --trace and actually read the big bad ugly code that rake conveniently hides from us.

http://pastie.org/379188

So the lesson is: actually read what --trace spits out! :)

Friday, January 23, 2009

Speeding up emailing in tests

I lived with the fact that my test ground to a halt when my tests ran code that had to send emails. It finally got so bad I started asking around about it.

I knew about a method to test ActionMailer and not send out emails... and I thought: why not apply these to ActionMailer when it's in the test environment? I ran my tests with rspec. Check out the pastie to see the code.