2012年9月28日金曜日

Railsとjsonでやり取りするmotion-rails-modelというrubymotion用ライブラリを作ってみた

Railsと連携する際、babble-wrapを使っていたのですが、
取得先が複数になったときに面倒だったのでラッパーライブラリを作ってみました。
Active Record風のメソッドで、Rest風にアクセスをします。

github

使い方
rails側はindex,show,create,update,destoryをjsonで返信するようにします。 アプリ側では適当にmodelクラスを作って、motion-rails-modelを継承し、
attr_accessorとattributes_updateに項目を追加します。
  1. class Entries < RM::Model  
  2.   attr_accessor :title:description  
  3.     
  4.   def attributes_update(json)  
  5.     @title          = json['title']  
  6.     @description    = json['description']  
  7.     super  
  8.   end  
  9. end  
利用するときは、まずurlを設定します。
  1. class AppDelegate  
  2.   def application(application, didFinishLaunchingWithOptions:launchOptions)  
  3.     RM::Model.set_url("http://localhost:3000/")  
  4.   
  5.     @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)  
  6.     @window.rootViewController = RootViewController.alloc.init  
  7.     @window.makeKeyAndVisible  
  8.     true  
  9.   end  
  10. end  
あとは、
  1. Entries.all do |x|  
  2.   if x  
  3.     p x  
  4.   else  
  5.     p "error"  
  6.   end  
  7. end  
で、
http://localhost:3000/entriesにアクセスし
  1. Entries.find(1) do |x|  
  2.   if x  
  3.     p x  
  4.   else  
  5.     p "error"  
  6.   end  
  7. end  
で、
http://localhost:3000/entries/1
にアクセス。
  1. @entry = Entries.new  
  2. @entry.title = "title"  
  3. @entry.description = "description"  
  4. @entry.save do |x|  
  5.   if x  
  6.     p x  
  7.   else  
  8.     p "error"  
  9.   end  
  10. end  
で、
http://localhost:3000/entries
にpost。
  1. @entry.title = "title2"  
  2. @entry.save do |x|  
  3.   if x  
  4.     p x  
  5.   else  
  6.     p "error"  
  7.   end  
  8. end  
で、http://localhost:3000/entries/1
にput。
  1. @entry.destory do |x|  
  2.   if x  
  3.     p x  
  4.   else  
  5.     p "error"  
  6.   end  
  7. end  
で、http://localhost:3000/entries/1
にdeleteでアクセスするようになってます。

TODOとして
attributes_updateを設定しなくてもいいようにする。 エラー処理をもう少ししやすく。

0 件のコメント:

コメントを投稿