2011-01-25 16 views
1

私の目標は、PUT操作で "lost update problem"(http://www.w3.org/1999/04/Editing/参照)に対処することです。 私はsinatraを使用しており、クライアントとしてrest_clientを使用しています。それが動作するかどうか調べる方法は?私のクライアントは常に200コードを返します。それを正しく呼び出すという議論を使っていますか?sinatra rest-client etag

put '/players/:id' do |id| 
    etag 'something' 
    if Player[id].nil? then 
     halt 404 
    end 
    begin 
     data = JSON.parse(params[:data]) 
     pl = Player[id] 
     pl.name = data['name'] 
     pl.position = data['position'] 
     if pl.save 
      "Resource modified." 
     else 
      status 412 
      redirect '/players' 
     end 

    rescue Sequel::DatabaseError 
     409 #Conflict - The request was unsuccessful due to a conflict in the state of the resource. 
    rescue Exception => e 
     400 
     puts e.message 
    end 
end 

クライアント呼び出し:

player = {"name" => "John Smith", "position" => "def"}.to_json 

RestClient.put('http://localhost:4567/players/1', {:data => player, :content_type => :json, :if_none_match => '"something"'}){ |response, request, result, &block| 
    p response.code.to_s + " " + response 
} 

私は置くことをすでに試みた:

シナトラコード(自身の作品PUT)if_none_match => "何か" を、私が試した:if_matchを。何も変わりません。 RestClientリクエストにどのようにヘッダを入れることができますか? 200ステータスと異なるsthを取得するには? (すなわち304は変更されていない)?

答えて

0

ペイロードとヘッダーは同じハッシュです。 2番目のハッシュでRestClientのヘッダーを指定する必要があります。試してみてください:

player = {"name" => "John Smith", "position" => "def"}.to_json 
headers = {:content_type => :json, :if_none_match => '"something"'} 

RestClient.put('http://localhost:4567/players/1', {:data => player}, headers) do |response, request, result, &block| 
    p response.code.to_s + " " + response 
end 

RestClientが正しくヘッダーを変換するかどうかわかりません。上記がうまくいかない場合は、

headers = {'Content-Type' => :json, 'If-None-Match' => '"something"'}