* traces - added some routes, replicated data access / pagination, but presentation and pending file control not complete * edit - setup so that applet can be loaded + token authorisation enabled * API - tests out ok against applet, but had to change segment-node associations * misc - gems version required upgraded to 1.2.3 (latest stable rails version), changed some find_first to find(:first... calls
53 lines
1.2 KiB
Ruby
53 lines
1.2 KiB
Ruby
class Trace < ActiveRecord::Base
|
|
set_table_name 'gpx_files'
|
|
|
|
belongs_to :user
|
|
has_many :tags, :class_name => 'Tracetag', :foreign_key => 'gpx_id', :dependent => :destroy
|
|
|
|
def tagstring=(s)
|
|
self.tags = s.split().collect {|tag|
|
|
tt = Tracetag.new
|
|
tt.tag = tag
|
|
tt
|
|
}
|
|
end
|
|
|
|
def large_picture= (data)
|
|
f = File.new(large_picture_name, "wb")
|
|
f.syswrite(data)
|
|
f.close
|
|
end
|
|
|
|
def icon_picture= (data)
|
|
f = File.new(icon_picture_name, "wb")
|
|
f.syswrite(data)
|
|
f.close
|
|
end
|
|
|
|
def large_picture
|
|
f = File.new(large_picture_name, "rb")
|
|
logger.info "large picture file: '#{f.path}', bytes: #{File.size(f.path)}"
|
|
data = f.sysread(File.size(f.path))
|
|
logger.info "have read data, bytes: '#{data.length}'"
|
|
f.close
|
|
data
|
|
end
|
|
|
|
def icon_picture
|
|
f = File.new(icon_picture_name, "rb")
|
|
logger.info "icon picture file: '#{f.path}'"
|
|
data = f.sysread(File.size(f.path))
|
|
f.close
|
|
data
|
|
end
|
|
|
|
# FIXME change to permanent filestore area
|
|
def large_picture_name
|
|
"/tmp/#{id}.gif"
|
|
end
|
|
|
|
# FIXME change to permanent filestore area
|
|
def icon_picture_name
|
|
"/tmp/#{id}_icon.gif"
|
|
end
|
|
end
|