appengine/datastore/app.rb (22 lines of code) (raw):
# Copyright 2015 Google, Inc
#
# 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.
# [START gae_flex_datastore_app]
require "digest/sha2"
require "sinatra"
require "google/cloud/datastore"
# [END gae_flex_datastore_app]
# Allows all hosts in development
configure :development do
set :host_authorization, { permitted_hosts: [] }
end
# [START gae_flex_datastore_app]
get "/" do
datastore = Google::Cloud::Datastore.new
# Save visit in Datastore
visit = datastore.entity "Visit" do |v|
v["user_ip"] = Digest::SHA256.hexdigest request.ip
v["timestamp"] = Time.now
end
datastore.save visit
# Query the last 10 visits from the Datastore
query = datastore.query("Visit").order("timestamp", :desc).limit(10)
visits = datastore.run query
response.write "Last 10 visits:\n"
visits.each do |visit|
response.write "Time: #{visit['timestamp']} Addr: #{visit['user_ip']}\n"
end
content_type "text/plain"
status 200
end
# [END gae_flex_datastore_app]