目前分類:ROR (11)
- Mar 09 Wed 2011 15:36
[phusion-passenger] ActiveRecord::Base.send :include with Application.initialize!
- Jan 25 Tue 2011 11:04
[phusion-passenger] RailsEnv failed in VirtualHost Block(Apache)
- Sep 16 Thu 2010 18:55
在 Debian 上安裝 ruby-ldap
想要讓公司內的 rails 網站吃 ldap 認證,在安裝上遇到一些小麻煩。
在經過同事 stephon 的幫忙和自己整理後如下:
#sudo apt-get install libldap2-dev libsasl2-dev
都要裝 dev 版本
#sudo gem install ruby-ldap
安裝 ruby-ldap。但這樣還沒完
參考官方文件會發現還需要下面步驟
#cd /usr/local/lib/ruby/gems/1.8/gems/ruby-ldap-0.9.11
#sudo ruby extconf.rb --with-openldap2
#sudo make
#sudo make install
這些都完成後會在 /usr/local/lib/ruby/site_ruby/1.8 底下發現多了 ldap 資料夾,
此時就可以正常操作了
- May 25 Tue 2010 16:31
[Rails] Cap deploy with thinking_sphinx
專案用到的 thinking_sphinx 沒有正常執行 crontab index,於是下去 trace,
發現是在 cap deploy 時造成的錯誤。
在 contab 裡的設定如下:
而我的 cap deploy 是這樣跑的
#cap deploy -n
* 以上略
* executing `deploy:after_update_code'
* executing `thinking_sphinx:start'
* executing `thinking_sphinx:configure'
* executing "cd /myapp/current; rake RAILS_ENV=production thinking_sphinx:configure"
* executing "cd /myapp/current; rake RAILS_ENV=production thinking_sphinx:start"
* executing `deploy:symlink'
* executing "rm -f /myapp/current && ln -s /myapp/releases/20100525083656 /myapp/current"
因為在執行 thinking_sphinx:configure thinking_sphinx:start 後才做 symlink,
結果生出來的 production.sphinx.conf 就這樣被砍掉,
而 crontab 執行時就會找不到 production.sphinx.conf 檔。
因為很明顯的是 thinking_sphinx 的 bug,於是看了一下版號,是個有夠舊(1.2.12, 現在[2010/05/25]是 1.3.16)
跑去找最新的版本來測試,果然。
* executing `deploy:after_update_code'
* executing `thinking_sphinx:start'
* executing `thinking_sphinx:configure'
* executing "if [ -d /myapp/releases/20100525085056 ]; then cd /myapp/releases/20100525085056; else cd /myapp/current; fi; rake RAILS_ENV=production thinking_sphinx:configure"
* executing "if [ -d /myapp/releases/20100525085056 ]; then cd /myapp/releases/20100525085056; else cd /myapp/current; fi; rake RAILS_ENV=production thinking_sphinx:start"
* executing `deploy:symlink'
* executing "rm -f /myapp/current && ln -s /myapp/releases/20100525085056 /myapp/current"
production.sphinx.conf 就不會因為 deploy:symlink 的關係消失了。
算是一個有趣的 trace bug 經驗,還趁機熟悉了一些事。
- cap deploy -n:會跑出所有流程,但不會真正執行,方便除錯,尤其是本機端的 trace
- config/sphinx.yml 的設定檔設定:http://freelancing-god.github.com/ts/en/advanced_config.html
- May 16 Sun 2010 12:44
[Rails] Custom Exception:WebException
因為需要使用一個 Exception 可以指定 status 以處理各種不同的狀況,所以試著寫寫看。
Custom Exception: WebException
:lib/web_exception.rb
:app/controllers/application_controller.rb 新增
另外,如果要在 development 模式看到你修改的結果,要記得修改 config/environments/development.rb
將config.action_controller.consider_all_requests_local 設定為 true。
而如果是使用 locahost 本機端開發,還要記得在 app/controllers/application_controller.rb 加上一段 code
來強制 disbale local request
- Apr 24 Sat 2010 23:13
[Rails]當用 Cucumber 測試 user story 時假造 OpenID login (使用 open_id_authentication plugin)
當網站採用 OpenID 登入時,在測試碼上遇到的問題:
因為 OpenID 認證部分是跟自己網站沒有關係的,在測試時無需“真實”使用 OpenID 來認證。
所以我們便假造之。
作法如下:
修改 features/support/env.rb
上述的程式碼意義是:當你要執行 open_id_authentication 這個 method 之前,就直接回傳假造的 Result 回去了。
只是測試而已,犯不著真的跑去 OpenID Provider 那邊去擾民。
除了狸貓換太子外,這段程式碼還有另一層意義:
在撰寫測試碼時要避免畫錯重點選錯目標
(像我在找到這解答前差點要寫測試碼來測試 open_id_authentication 這個 plugin 了),
我要測試的內容是“自身網站的登入機制“,
像 OpenID 的部分因為採用第三方 plugin,那便不該是我測試的項目
(plugin 本身自己就該有自身的測試碼)
認準目標是撰寫測試碼最重要之處。
相關連結:
- How do I fake OpenID login in RSpec user story/Cucumber when using open_id_authentication plugin
- Rails Plugin: open_id_authentication
- Dec 04 Fri 2009 17:57
[Tips][Rails][Active::Record] save 與 save! 的差別
save 可以接收一個參數 :perform_validation => true/false,預設為 true。
當 perform_validation 被設為 false 時不會過 validation.
save! 沒有任何額外參數,一定會過 validation.
在執行 save 時,如果有任一個 before_* validation 失敗,整個 save 會回傳 false。
而在執行 save! 時,before_* validation 失敗則是會丟一個例外 ActiveRecord::RecordNotSaved 回來。
所以在應用上:
- 在 controller 裡一般使用 save,免得每一個 save 失敗都要做 rescue,因為使用者的輸入錯誤是很自然會發生的;
- 而在像是 rake 或 test 中,就應該使用 save!,方便 debug.
- Oct 26 Mon 2009 12:31
[Rails][Model] 使用 attributes= 強行指定被 attr_protected 的 column
這篇文章講的很清楚:attributes= (ActiveRecord::Base) - APIdock
這樣要繞過 attr_protected 的 column 時就不用一個一個手動指定了。
- Oct 26 Mon 2009 12:17
[Rails][Model]counter increment(decrement)
1. 使用 Model.increment_counter(counter_name, id):
003:0> User.increment_counter(:hit_counter, 1)
User Update (0.8ms) UPDATE `users` SET `hit_counter` = COALESCE(`hit_counter`, 0) + 1 WHERE (`id` = 1)
2. 使用 Model.update_counters(id, attribute => ammount)
011:0> User.update_counters(1, :hit_counter => 50)
User Update (0.7ms) UPDATE `users` SET `hit_counter` = COALESCE(`hit_counter`, 0) + 50 WHERE (`id` = 1)
第1個方法可以單純的做+1動作,第2個方法多了指定要加多少。
另外,Rails 還有一個 instance method: increment,但我其實不建議使用它。因為他不是用 sql 的加法來達成 incrment.
013:0> user = User.first
014:0> user.increment(:hit_counter, 2)
015:0> user.save
User Update (0.2ms) UPDATE `users` SET `updated_at` = '2009-10-26 04:09:00', `hit_counter` = 163 WHERE `id` = 1
這種方式有可能出現 race condition.
- Oct 26 Mon 2009 11:53
[Rails][Migration]指定 column type: medium text 的方法
這裡主要是講 database 使用 mysql 的狀況。
在 Rails 裡,對於 text 的指定只有一種。
而有時我們需要更大的欄位,比方說 medium text, big text。因為有時候,大一點還是比較好。
這時候在 migration 裡的作法有兩種個方式:
第一種是以指定 limit 大小的方式讓 mysql 自行將欄位設定為 medium text (請注意 "content" ):
-
class CreateArticles < ActiveRecord::Migration
-
def self.up
-
create_table :articles do |t|
-
t.string :title
-
t.text :content, :limit => 64.kilobytes + 1
-
t.timestamps
-
end
-
end
-
-
def self.down
-
drop_table :articles
-
end
-
end
-
第二種是在 self.up 後再 exeucte 自行生成你要的欄位:
-
class CreateArticles < ActiveRecord::Migration
-
def self.up
-
create_table :articles do |t|
-
t.string :title
-
t.timestamps
-
end
-
execute "ALTER TABLE articles ADD `content` MEDIUMTEXT NOT NULL AFTER `title`"
-
end
-
-
def self.down
-
drop_table :articles
-
end
-
end
- Oct 16 Fri 2009 11:14
[Rails]attr_accessible, 應用
在 Rails 裡對做 CRUD 時,有個方便的實作。
params 表示 form parameters,為 hash 型式 (column => value),這樣子若要把 form 的資料接過來只需要一行。
除了 new 之外,還支援這樣的方式:
方便歸方便,但也衍生了一個問題,那就是使用者的 form 表單裡塞了一些我們不希望被修改的 column 時,這些指令依然會被執行。
比方說帳號欄位,我們通常是不希望被修改的。
於是這時候可以使用 attr_accessible 或 attr_protected 來保護這些欄位
attr_protected :account
這樣在使用 new, attributes=(attributes), update_attributes(attributes) 時,account 欄位會被保護,不被這些 method 改變其值。
而如果我們真的要改變的話,需要自行指定。
以下是 Rails api 給的範例,可以更清楚我在講什麼