X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a5e5cbc73999d004998e1e90b1b19796a94b077d..565171486f6d90321e0291d5ccc3cf6a1c12e730:/app/models/trace.rb diff --git a/app/models/trace.rb b/app/models/trace.rb index 1b44e2187..cbfd68996 100644 --- a/app/models/trace.rb +++ b/app/models/trace.rb @@ -3,11 +3,12 @@ class Trace < ActiveRecord::Base validates_presence_of :user_id, :name, :timestamp validates_presence_of :description, :on => :create - validates_length_of :name, :within => 1..255 - validates_length_of :description, :within => 1..255 + validates_length_of :name, :maximum => 255 + validates_length_of :description, :maximum => 255 # validates_numericality_of :latitude, :longitude - validates_inclusion_of :public, :inserted, :in => [ true, false] - + validates_inclusion_of :inserted, :in => [ true, false ] + validates_inclusion_of :visibility, :in => ["private", "public", "trackable", "identifiable"] + belongs_to :user has_many :tags, :class_name => 'Tracetag', :foreign_key => 'gpx_id', :dependent => :delete_all has_many :points, :class_name => 'Tracepoint', :foreign_key => 'gpx_id', :dependent => :delete_all @@ -20,17 +21,38 @@ class Trace < ActiveRecord::Base end def tagstring - return tags.collect {|tt| tt.tag}.join(" ") + return tags.collect {|tt| tt.tag}.join(", ") end def tagstring=(s) - self.tags = s.split().collect {|tag| - tt = Tracetag.new - tt.tag = tag - tt - } + if s.include? ',' + self.tags = s.split(/\s*,\s*/).collect {|tag| + tt = Tracetag.new + tt.tag = tag + tt + } + else + #do as before for backwards compatibility: + self.tags = s.split().collect {|tag| + tt = Tracetag.new + tt.tag = tag + tt + } + end end - + + def public? + visibility == "public" || visibility == "identifiable" + end + + def trackable? + visibility == "trackable" || visibility == "identifiable" + end + + def identifiable? + visibility == "identifiable" + end + def large_picture= (data) f = File.new(large_picture_name, "wb") f.syswrite(data) @@ -130,7 +152,7 @@ class Trace < ActiveRecord::Base el1['lat'] = self.latitude.to_s el1['lon'] = self.longitude.to_s el1['user'] = self.user.display_name - el1['public'] = self.public.to_s + el1['visibility'] = self.visibility el1['pending'] = (!self.inserted).to_s el1['timestamp'] = self.timestamp.xmlschema return el1