Sha256: b05c5e921e2d52fd5b6494b7c436c31758c554a449e91ae2e294abdd4f6651ba

Contents?: true

Size: 1.65 KB

Versions: 45

Compression:

Stored size: 1.65 KB

Contents

# Author:: Couchbase <info@couchbase.com>
# Copyright:: 2013 Couchbase, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'em-synchrony'
require 'couchbase'
require 'goliath'
require 'grape'
require 'date'

class Chat < Grape::API

  format :json

  resource 'messages' do
    get do
      view = env.couchbase.design_docs["messages"].all(:include_docs => true)
      msgs = view.map do |r|
        {
          "id" => r.id,
          "key" => r.key,
          "value" => r.value,
          "cas" => r.meta["cas"],
          # "doc" => r.doc
        }
      end
      {"ok" => true, "messages" => msgs}
    end

    post do
      payload = {
        "timestamp" => DateTime.now.iso8601,
        "message" => params["message"]
      }
      id = env.couchbase.incr("msgid", :initial => 1)
      id = "msg:#{id}"
      cas = env.couchbase.set(id, payload)
      {"ok" => true, "id" => id, "cas" => cas}
    end
  end

end

class App < Goliath::API
  def response(env)
    Chat.call(env)
  rescue => e
    [
      500,
      {'Content-Type' => 'application/json'},
      MultiJson.dump(:error => e, :stacktrace => e.backtrace)
    ]
  end
end

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
couchbase-1.3.9-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.8 examples/chat-goliath-grape/app.rb
couchbase-1.3.8-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.8-x64-mingw32 examples/chat-goliath-grape/app.rb
jmoses-couchbase-1.3.6 examples/chat-goliath-grape/app.rb
couchbase-1.3.7 examples/chat-goliath-grape/app.rb
couchbase-1.3.7-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.7-x64-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.6 examples/chat-goliath-grape/app.rb
couchbase-1.3.6-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.6-x64-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.5 examples/chat-goliath-grape/app.rb
couchbase-1.3.5-x64-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.5-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.4 examples/chat-goliath-grape/app.rb
couchbase-1.3.4-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.4-x64-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.3-x86-mingw32 examples/chat-goliath-grape/app.rb
couchbase-1.3.3 examples/chat-goliath-grape/app.rb
couchbase-1.3.2 examples/chat-goliath-grape/app.rb