]> git.openstreetmap.org Git - rails.git/blob - app/controllers/swf_controller.rb
Move the permissions call out of api_controller
[rails.git] / app / controllers / swf_controller.rb
1 class SwfController < ApplicationController
2   skip_before_action :verify_authenticity_token
3   before_action :check_api_readable
4   authorize_resource :class => false
5
6   # to log:
7   # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
8   # $log.puts Time.new.to_s+','+Time.new.usec.to_s+": started GPS script"
9   # http://localhost:3000/api/0.4/swf/trackpoints?xmin=-2.32402605810577&xmax=-2.18386309423859&ymin=52.1546608755772&ymax=52.2272777906895&baselong=-2.25325793066437&basey=61.3948537948532&masterscale=5825.4222222222
10
11   # ====================================================================
12   # Public methods
13
14   # ---- trackpoints  compile SWF of trackpoints
15
16   def trackpoints
17     # -  Initialise
18
19     baselong = params["baselong"].to_f
20     basey = params["basey"].to_f
21     masterscale = params["masterscale"].to_f
22
23     bbox = BoundingBox.new(params["xmin"], params["ymin"],
24                            params["xmax"], params["ymax"])
25     start = params["start"].to_i
26
27     # -  Begin movie
28
29     bounds_left = 0
30     bounds_right = 320 * 20
31     bounds_bottom = 0
32     bounds_top = 240 * 20
33
34     m = ""
35     m += swf_record(9, 255.chr + 155.chr + 155.chr) # Background
36     absx = 0
37     absy = 0
38     xl = yb = 9999999
39     xr = yt = -9999999
40
41     # -  Send SQL for GPS tracks
42
43     b = ""
44     lasttime = 0
45     lasttrack = lastfile = "-1"
46
47     if params["token"]
48       user = User.authenticate(:token => params[:token])
49       sql = "SELECT gps_points.latitude*0.0000001 AS lat,gps_points.longitude*0.0000001 AS lon,gpx_files.id AS fileid," + "      EXTRACT(EPOCH FROM gps_points.timestamp) AS ts, gps_points.trackid AS trackid " + " FROM gpx_files,gps_points " + "WHERE gpx_files.id=gpx_id " + "  AND gpx_files.user_id=#{user.id} " + "  AND " + OSM.sql_for_area(bbox, "gps_points.") + "  AND (gps_points.timestamp IS NOT NULL) " + "ORDER BY fileid DESC,ts " + "LIMIT 10000 OFFSET #{start}"
50     else
51       sql = "SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,gpx_id AS fileid," + "      EXTRACT(EPOCH FROM timestamp) AS ts, gps_points.trackid AS trackid " + " FROM gps_points " + "WHERE " + OSM.sql_for_area(bbox, "gps_points.") + "  AND (gps_points.timestamp IS NOT NULL) " + "ORDER BY fileid DESC,ts " + "LIMIT 10000 OFFSET #{start}"
52     end
53     gpslist = ActiveRecord::Base.connection.select_all sql
54
55     # - Draw GPS trace lines
56
57     r = start_shape
58     gpslist.each do |row|
59       xs = (long2coord(row["lon"].to_f, baselong, masterscale) * 20).floor
60       ys = (lat2coord(row["lat"].to_f, basey, masterscale) * 20).floor
61       xl = [xs, xl].min
62       xr = [xs, xr].max
63       yb = [ys, yb].min
64       yt = [ys, yt].max
65       if row["ts"].to_i - lasttime > 180 || row["fileid"] != lastfile || row["trackid"] != lasttrack # or row['ts'].to_i==lasttime
66         b += start_and_move(xs, ys, "01")
67         absx = xs.floor
68         absy = ys.floor
69       end
70       b += draw_to(absx, absy, xs, ys)
71       absx = xs.floor
72       absy = ys.floor
73       lasttime = row["ts"].to_i
74       lastfile = row["fileid"]
75       lasttrack = row["trackid"]
76       r += [b.slice!(0...80)].pack("B*") while b.length > 80
77     end
78
79     #   (Unwayed segments removed)
80
81     # - Write shape
82
83     b += end_shape
84     r += [b].pack("B*")
85     m += swf_record(2, pack_u16(1) + pack_rect(xl, xr, yb, yt) + r)
86     m += swf_record(4, pack_u16(1) + pack_u16(1))
87
88     # -  Create Flash header and write to browser
89
90     m += swf_record(1, "")                                                                      # Show frame
91     m += swf_record(0, "")                                                                      # End
92
93     m = pack_rect(bounds_left, bounds_right, bounds_bottom, bounds_top) + 0.chr + 12.chr + pack_u16(1) + m
94     m = "FWS" + 6.chr + pack_u32(m.length + 8) + m
95
96     render :body => m, :content_type => "application/x-shockwave-flash"
97   end
98
99   private
100
101   # =======================================================================
102   # SWF functions
103
104   # -----------------------------------------------------------------------
105   # Line-drawing
106
107   def start_shape
108     s = 0.chr                                    # No fill styles
109     s += 2.chr                                   # Two line styles
110     s += pack_u16(0) + 0.chr + 255.chr + 255.chr # Width 5, RGB #00FFFF
111     s += pack_u16(0) + 255.chr + 0.chr + 255.chr # Width 5, RGB #FF00FF
112     s += 34.chr # 2 fill, 2 line index bits
113     s
114   end
115
116   def end_shape
117     "000000"
118   end
119
120   def start_and_move(x, y, col)
121     d = "001001"        # Line style change, moveTo
122     l = [length_sb(x), length_sb(y)].max
123     d += format("%05b%0*b%0*b", l, l, x, l, y)
124     d += col # Select line style
125     d
126   end
127
128   def draw_to(absx, absy, x, y)
129     dx = x - absx
130     dy = y - absy
131
132     # Split the line up if there's anything>16383, because
133     # that would overflow the 4 bits allowed for length
134     mstep = [dx.abs / 16383, dy.abs / 16383, 1].max.ceil
135     xstep = dx / mstep
136     ystep = dy / mstep
137     d = ""
138     1.upto(mstep).each do
139       d += draw_section(x, y, x + xstep, y + ystep)
140       x += xstep
141       y += ystep
142     end
143     d
144   end
145
146   def draw_section(x1, y1, x2, y2)
147     d = "11"                                                                                    # TypeFlag, EdgeFlag
148     dx = x2 - x1
149     dy = y2 - y1
150     l = [length_sb(dx), length_sb(dy)].max
151     d += format("%04b", l - 2)
152     d += "1"                                                                                    # GeneralLine
153     d += format("%0*b%0*b", l, dx, l, dy)
154     d
155   end
156
157   # -----------------------------------------------------------------------
158   # Specific data types
159
160   # SWF data block type
161
162   def swf_record(id, r)
163     if r.length > 62
164       # Long header: tag id, 0x3F, length
165       pack_u16((id << 6) + 0x3F) + pack_u32(r.length) + r
166     else
167       # Short header: tag id, length
168       pack_u16((id << 6) + r.length) + r
169     end
170   end
171
172   # SWF RECT type
173
174   def pack_rect(a, b, c, d)
175     l = [length_sb(a),
176          length_sb(b),
177          length_sb(c),
178          length_sb(d)].max
179     # create binary string (00111001 etc.) - 5-byte length, then bbox
180     n = format("%05b%0*b%0*b%0*b%0*b", l, l, a, l, b, l, c, l, d)
181     # pack into byte string
182     [n].pack("B*")
183   end
184
185   # -----------------------------------------------------------------------
186   # Generic pack functions
187
188   def pack_u16(n)
189     [n.floor].pack("v")
190   end
191
192   def pack_u32(n)
193     [n.floor].pack("V")
194   end
195
196   # Find number of bits required to store arbitrary-length binary
197
198   def length_sb(n)
199     Math.frexp(n + (n.zero? ? 1 : 0))[1] + 1
200   end
201
202   # ====================================================================
203   # Co-ordinate conversion
204   # (this is duplicated from amf_controller, should probably share)
205
206   def lat2coord(a, basey, masterscale)
207     -(lat2y(a) - basey) * masterscale
208   end
209
210   def long2coord(a, baselong, masterscale)
211     (a - baselong) * masterscale
212   end
213
214   def lat2y(a)
215     180 / Math::PI * Math.log(Math.tan(Math::PI / 4 + a * (Math::PI / 180) / 2))
216   end
217 end