various fixes
This commit is contained in:
parent
758beeb2e8
commit
c8f9387420
6 changed files with 158 additions and 29 deletions
|
@ -10,14 +10,14 @@ class ApplicationController < ActionController::Base
|
||||||
username, passwd = get_auth_data
|
username, passwd = get_auth_data
|
||||||
# check if authorized
|
# check if authorized
|
||||||
# try to get user
|
# try to get user
|
||||||
if user = User.authenticate(username, passwd)
|
if @user = User.authenticate(username, passwd)
|
||||||
# user exists and password is correct ... horray!
|
# user exists and password is correct ... horray!
|
||||||
if user.methods.include? 'lastlogin'
|
if @user.methods.include? 'lastlogin'
|
||||||
# note last login
|
# note last login
|
||||||
@session['lastlogin'] = user.lastlogin
|
@session['lastlogin'] = user.lastlogin
|
||||||
user.last.login = Time.now
|
@user.last.login = Time.now
|
||||||
user.save()
|
@user.save()
|
||||||
@session["User.id"] = user.id
|
@session["User.id"] = @user.id
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
# the user does not exist or the password was wrong
|
# the user does not exist or the password was wrong
|
||||||
|
|
|
@ -4,16 +4,141 @@ class NodeController < ApplicationController
|
||||||
before_filter :authorize
|
before_filter :authorize
|
||||||
|
|
||||||
def create
|
def create
|
||||||
# @node = Node.new
|
if request.put?
|
||||||
# @node.id = 1
|
doc = XML::Document.new(request.raw_post) #THIS IS BROKEN, libxml docus dont talk about creating a doc from a string
|
||||||
# @node.latitude = 1
|
doc.find('//osm/node').each do |pt|
|
||||||
# @node.save
|
render :text => 'arghsd.rkugt;dsrt'
|
||||||
|
return
|
||||||
|
lat = pt.attributes['lat'].to_f
|
||||||
|
lon = pt.attributes['lon'].to_f
|
||||||
|
node_id = pt.attributes['id'].to_i
|
||||||
|
|
||||||
if request.putt?
|
if lat > 90 or lat < -90 or lon > 180 or lon < -180 or node_id != 0
|
||||||
@txt = resp.body
|
render :nothing => true, :status => 400 # BAD REQUEST
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
tags = []
|
||||||
|
|
||||||
|
pt.elements.each('tag') do |tag|
|
||||||
|
tags << [tag.attributes['k'],tag.attributes['v']]
|
||||||
|
end
|
||||||
|
tags = tags.collect { |k,v| "#{k}=#{v}" }.join(';')
|
||||||
|
tags = '' if tags.nil?
|
||||||
|
|
||||||
|
now = Time.now
|
||||||
|
|
||||||
|
node = Node.new
|
||||||
|
node.latitude = lat
|
||||||
|
node.longitude = lon
|
||||||
|
node.visible = 1
|
||||||
|
node.tags = tags
|
||||||
|
node.timestamp = now
|
||||||
|
node.user_id = @user.id
|
||||||
|
|
||||||
|
#FIXME add a node to the old nodes table too
|
||||||
|
|
||||||
|
if node.save
|
||||||
|
render :text => node.id
|
||||||
|
else
|
||||||
|
render :nothing => true, :status => 500
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
render :text => 'WRONG! '
|
||||||
|
return
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
def rest
|
||||||
|
unless Node.exists?(params[:id])
|
||||||
|
render :nothing => true, :status => 400
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
node = Node.find(params[:id])
|
||||||
|
|
||||||
|
|
||||||
|
case request.method
|
||||||
|
when :get
|
||||||
|
doc = XML::Document.new
|
||||||
|
|
||||||
|
# this needs a new libxml:
|
||||||
|
# doc.encoding = "UTF-8"
|
||||||
|
|
||||||
|
root = XML::Node.new 'osm'
|
||||||
|
root['version'] = '0.4'
|
||||||
|
root['generator'] = 'OpenStreetMap server'
|
||||||
|
doc.root = root
|
||||||
|
el1 = XML::Node.new 'node'
|
||||||
|
el1['id'] = node.id.to_s
|
||||||
|
el1['lat'] = node.latitude.to_s
|
||||||
|
el1['lon'] = node.longitude.to_s
|
||||||
|
split_tags(el1, node.tags)
|
||||||
|
el1['visible'] = node.visible.to_s
|
||||||
|
el1['timestamp'] = node.timestamp.xmlschema
|
||||||
|
root << el1
|
||||||
|
|
||||||
|
render :text => doc.to_s
|
||||||
|
|
||||||
|
#
|
||||||
|
# DELETE
|
||||||
|
#
|
||||||
|
when :delete
|
||||||
|
|
||||||
|
if node.visible
|
||||||
|
node.visible = 0
|
||||||
|
node.save
|
||||||
|
else
|
||||||
|
render :nothing => true, :status => 410
|
||||||
|
end
|
||||||
|
|
||||||
|
#
|
||||||
|
# PUT
|
||||||
|
#
|
||||||
|
when :put
|
||||||
|
|
||||||
|
doc = XML::Document.new(request.raw_post)
|
||||||
|
doc.elements.each('osm/node') do |pt|
|
||||||
|
lat = pt.attributes['lat'].to_f
|
||||||
|
lon = pt.attributes['lon'].to_f
|
||||||
|
node_id = pt.attributes['id'].to_i
|
||||||
|
|
||||||
|
if lat > 90 or lat < -90 or lon > 180 or lon < -180 or node_id != params[:id]
|
||||||
|
render :nothing => true, :status => 400 # BAD REQUEST
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
tags = []
|
||||||
|
|
||||||
|
pt.elements.each('tag') do |tag|
|
||||||
|
tags << [tag.attributes['k'],tag.attributes['v']]
|
||||||
|
end
|
||||||
|
tags = tags.collect { |k,v| "#{k}=#{v}" }.join(';')
|
||||||
|
tags = '' if tags.nil?
|
||||||
|
|
||||||
|
now = Time.now
|
||||||
|
|
||||||
|
node.latitude = lat
|
||||||
|
node.longitude = lon
|
||||||
|
node.visible = 1
|
||||||
|
node.tags = tags
|
||||||
|
node.timestamp = now
|
||||||
|
node.user_id = @user.id
|
||||||
|
|
||||||
|
#FIXME add a node to the old nodes table too
|
||||||
|
|
||||||
|
if node.save
|
||||||
|
render :text => node.id
|
||||||
|
else
|
||||||
|
render :nothing => true, :status => 500
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def dummy
|
def dummy
|
||||||
if request.post?
|
if request.post?
|
||||||
userid = dao.useridfromcreds(r.user, r.get_basic_auth_pw)
|
userid = dao.useridfromcreds(r.user, r.get_basic_auth_pw)
|
||||||
|
@ -66,7 +191,7 @@ class NodeController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def rest
|
def dummydummy
|
||||||
|
|
||||||
#
|
#
|
||||||
# POST ???
|
# POST ???
|
||||||
|
@ -127,13 +252,13 @@ class NodeController < ApplicationController
|
||||||
|
|
||||||
if request.get?
|
if request.get?
|
||||||
node = node.find(params[:id])
|
node = node.find(params[:id])
|
||||||
doc = Document.new
|
doc = document.new
|
||||||
doc.encoding = "UTF-8"
|
doc.encoding = "utf-8"
|
||||||
root = Node.new 'osm'
|
root = node.new 'osm'
|
||||||
root['version'] = '0.4'
|
root['version'] = '0.4'
|
||||||
root['generator'] = 'OpenStreetMap server'
|
root['generator'] = 'openstreetmap server'
|
||||||
doc.root = root
|
doc.root = root
|
||||||
el1 = Node.new 'node'
|
el1 = node.new 'node'
|
||||||
el1['id'] = node.id.to_s
|
el1['id'] = node.id.to_s
|
||||||
el1['lat'] = node.latitude.to_s
|
el1['lat'] = node.latitude.to_s
|
||||||
el1['lon'] = node.longitude.to_s
|
el1['lon'] = node.longitude.to_s
|
||||||
|
|
|
@ -11,7 +11,6 @@ class UserController < ApplicationController
|
||||||
else
|
else
|
||||||
render :action => 'new'
|
render :action => 'new'
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
|
|
|
@ -25,9 +25,7 @@ class User < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.authenticate(email, passwd)
|
def self.authenticate(email, passwd)
|
||||||
find_first([ "email = ? AND pass_crypt =?",
|
find_first([ "email = ? AND pass_crypt =?", email, Digest::MD5.hexdigest(passwd) ])
|
||||||
email,
|
|
||||||
Digest::MD5.hexdigest(passwd) ])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
ActionController::Routing::Routes.draw do |map|
|
ActionController::Routing::Routes.draw do |map|
|
||||||
map.connect ':controller/service.wsdl', :action => 'wsdl'
|
# map.connect ':controller/service.wsdl', :action => 'wsdl'
|
||||||
|
|
||||||
|
map.connect 'api/0.4/node/create', :controller => 'node', :action => 'create'
|
||||||
|
map.connect 'api/0.4/node/:id', :controller => 'node', :action => 'rest', :id => nil
|
||||||
|
|
||||||
|
|
||||||
map.connect '/api/0.4/node/:id', :controller => 'node', :action => 'rest'
|
# map.connect 'api/0.4/segment/:id', :controller => 'segment', :action => 'rest'
|
||||||
map.connect '/api/0.4/node/create', :controller => 'node', :action => 'create'
|
# map.connect 'api/0.4/segment/create', :controller => 'segment', :action => 'create'
|
||||||
|
|
||||||
map.connect '/api/0.4/segment/:id', :controller => 'segment', :action => 'rest'
|
# map.connect 'api/0.4/way/:id', :controller => 'way', :action => 'rest'
|
||||||
map.connect '/api/0.4/segment/create', :controller => 'segment', :action => 'create'
|
# map.connect 'api/0.4/way/create', :controller => 'way', :action => 'create'
|
||||||
|
|
||||||
map.connect '/api/0.4/way/:id', :controller => 'way', :action => 'rest'
|
|
||||||
map.connect '/api/0.4/way/create', :controller => 'way', :action => 'create'
|
|
||||||
|
|
||||||
map.connect ':controller/:action/:id'
|
map.connect ':controller/:action/:id'
|
||||||
end
|
end
|
||||||
|
|
7
db/migrate.sql
Normal file
7
db/migrate.sql
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
drop table meta_nodes;
|
||||||
|
alter table current_nodes modify tags text not null;
|
||||||
|
alter table current_nodes modify id bigint(64) not null auto_increment;
|
||||||
|
|
||||||
|
|
||||||
|
alter table nodes modify tags text not null;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue