You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

442 lines
15 KiB

7 years ago
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Laravel\Lumen\Routing\Controller as BaseController;
  4. use Illuminate\Http\Request;
  5. use DB, Log, Cache;
  6. use Quartz;
  7. use DateTime, DateTimeZone, DateInterval;
  8. use App\Jobs\TripComplete;
  9. use App\Jobs\TripStarted;
  10. use App\Jobs\NotifyOfNewLocations;
  11. class Api extends BaseController
  12. {
  13. public function account(Request $request) {
  14. $token = $request->input('token');
  15. if(!$token)
  16. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  17. $db = DB::table('databases')->where('write_token','=',$token)->first();
  18. if(!$db)
  19. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  20. return response(json_encode(['name' => $db->name]))->header('Content-Type', 'application/json');
  21. }
  22. public function query(Request $request) {
  23. $token = $request->input('token');
  24. if(!$token)
  25. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  26. $db = DB::table('databases')->where('read_token','=',$token)->first();
  27. if(!$db)
  28. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  29. $qz = new Quartz\DB(env('STORAGE_DIR').$db->name, 'r');
  30. if($request->input('tz')) {
  31. $tz = $request->input('tz');
  32. } else {
  33. $tz = 'UTC';
  34. }
  35. if($date=$request->input('date')) {
  36. $start = DateTime::createFromFormat('Y-m-d H:i:s', $date.' 00:00:00', new DateTimeZone($tz));
  37. $end = DateTime::createFromFormat('Y-m-d H:i:s', $date.' 23:59:59', new DateTimeZone($tz));
  38. } elseif(($start=$request->input('start')) && ($end=$request->input('end'))) {
  39. $start = new DateTime($start, new DateTimeZone($tz));
  40. $end = new DateTime($end, new DateTimeZone($tz));
  41. } else {
  42. return response(json_encode(['error' => 'no date provided']))->header('Content-Type', 'application/json');
  43. }
  44. $results = $qz->queryRange($start, $end);
  45. $locations = [];
  46. $properties = [];
  47. $events = [];
  48. if($request->input('format') == 'linestring') {
  49. foreach($results as $id=>$record) {
  50. // When returning a linestring, separate out the "event" records from the "location" records
  51. if($record->data) {
  52. if(property_exists($record->data->properties, 'action')) {
  53. $rec = $record->data;
  54. # add a unixtime property
  55. $rec->properties->unixtime = (int)$record->date->format('U');
  56. $events[] = $rec;
  57. } else {
  58. #$record->date->format('U.u');
  59. // Ignore super inaccurate locations
  60. if(!property_exists($record->data->properties, 'horizontal_accuracy')
  61. || $record->data->properties->horizontal_accuracy <= 5000) {
  62. $locations[] = $record->data;
  63. $props = $record->data->properties;
  64. $date = $record->date;
  65. $date->setTimeZone(new DateTimeZone($tz));
  66. $props->timestamp = $date->format('c');
  67. $props->unixtime = (int)$date->format('U');
  68. $properties[] = $props;
  69. }
  70. }
  71. }
  72. }
  73. $linestring = array(
  74. 'type' => 'LineString',
  75. 'coordinates' => [],
  76. 'properties' => $properties
  77. );
  78. foreach($locations as $loc) {
  79. if(property_exists($loc, 'geometry'))
  80. $linestring['coordinates'][] = $loc->geometry->coordinates;
  81. else
  82. $linestring['coordinates'][] = null;
  83. }
  84. $response = array(
  85. 'linestring' => $linestring,
  86. 'events' => $events
  87. );
  88. } else {
  89. foreach($results as $id=>$record) {
  90. if($record->data) {
  91. $locations[] = $record->data;
  92. }
  93. }
  94. $response = [
  95. 'locations' => $locations
  96. ];
  97. }
  98. return response(json_encode($response))->header('Content-Type', 'application/json');
  99. }
  100. public function last(Request $request) {
  101. $token = $request->input('token');
  102. if(!$token)
  103. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  104. $db = DB::table('databases')->where('read_token','=',$token)->first();
  105. if(!$db)
  106. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  107. if($request->input('tz')) {
  108. $tz = $request->input('tz');
  109. } else {
  110. $tz = 'UTC';
  111. }
  112. if($input=$request->input('before')) {
  113. // If a specific time was requested, look up the data in the filesystem
  114. $qz = new Quartz\DB(env('STORAGE_DIR').$db->name, 'r');
  115. if(preg_match('/^[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}$/', $input)) {
  116. // If the input date is given in YYYY-mm-dd HH:mm:ss format, interpret it in the timezone given
  117. $date = DateTime::createFromFormat('Y-m-d H:i:s', $input, new DateTimeZone($tz));
  118. } else {
  119. // Otherwise, parse the string and use the timezone in the input
  120. $date = new DateTime($input);
  121. $date->setTimeZone(new DateTimeZone($tz));
  122. }
  123. if(!$date) {
  124. return response(json_encode(['error' => 'invalid date provided']))->header('Content-Type', 'application/json');
  125. }
  126. /* ********************************************** */
  127. // TODO: move this logic into QuartzDB
  128. // Load the shard for the given date
  129. $shard = $qz->shardForDate($date);
  130. // If the shard doesn't exist, check one day before
  131. if(!$shard->exists()) {
  132. $date = $date->sub(new DateInterval('PT86400S'));
  133. $shard = $qz->shardForDate($date);
  134. }
  135. // Now if the shard doesn't exist, return an empty result
  136. if(!$shard->exists()) {
  137. return response(json_encode([
  138. 'data'=>null
  139. ]));
  140. }
  141. // Start iterating through the shard and look for the last line that is before the given date
  142. $shard->init();
  143. $record = false;
  144. foreach($shard as $r) {
  145. if($r->date > $date)
  146. break;
  147. $record = $r;
  148. }
  149. /* ********************************************** */
  150. if(!$record) {
  151. return response(json_encode([
  152. 'data'=>null
  153. ]));
  154. }
  155. $response = [
  156. 'data' => $record->data,
  157. ];
  158. } else {
  159. // If no specific time was requested, use the cached location from the database
  160. $response = [
  161. 'data' => json_decode($db->last_location),
  162. ];
  163. }
  164. if($request->input('geocode') && property_exists($response['data'], 'geometry') && property_exists($response['data']->geometry, 'coordinates')) {
  165. $coords = $response['data']->geometry->coordinates;
  166. $params = [
  167. 'latitude' => $coords[1],
  168. 'longitude' => $coords[0],
  169. 'date' => $response['data']->properties->timestamp
  170. ];
  171. $geocode = self::geocode($params);
  172. if($geocode) {
  173. $response['geocode'] = $geocode;
  174. } else {
  175. $response['geocode'] = null;
  176. }
  177. }
  178. return response(json_encode($response))->header('Content-Type', 'application/json');
  179. }
  180. public function trip(Request $request) {
  181. $token = $request->input('token');
  182. if(!$token)
  183. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  184. $db = DB::table('databases')->where('read_token','=',$token)->first();
  185. if(!$db)
  186. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  187. if($db->current_trip) {
  188. $response = [
  189. 'trip' => json_decode($db->current_trip)
  190. ];
  191. } else {
  192. $response = [
  193. 'trip' => null
  194. ];
  195. }
  196. return response(json_encode($response))->header('Content-Type', 'application/json');
  197. }
  198. public function input(Request $request) {
  199. $token = $request->input('token');
  200. if(!$token)
  201. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  202. $db = DB::table('databases')->where('write_token','=',$token)->first();
  203. if(!$db)
  204. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  205. if(!is_array($request->input('locations')))
  206. return response(json_encode(['error' => 'invalid input', 'error_description' => 'parameter "locations" must be an array of GeoJSON data with a "timestamp" property']))->header('Content-Type', 'application/json');
  207. $qz = new Quartz\DB(env('STORAGE_DIR').$db->name, 'w');
  208. $num = 0;
  209. $trips = 0;
  210. $last_location = false;
  211. foreach($request->input('locations') as $loc) {
  212. if(array_key_exists('properties', $loc)) {
  213. if(array_key_exists('timestamp', $loc['properties'])) {
  214. try {
  215. if(preg_match('/^\d+\.\d+$/', $loc['properties']['timestamp']))
  216. $date = DateTime::createFromFormat('U.u', $loc['properties']['timestamp']);
  217. elseif(preg_match('/^\d+$/', $loc['properties']['timestamp']))
  218. $date = DateTime::createFromFormat('U', $loc['properties']['timestamp']);
  219. else
  220. $date = new DateTime($loc['properties']['timestamp']);
  221. if($date) {
  222. $cacheKey = 'compass::'.$db->name.'::'.$date->format('U');
  223. // Skip adding if the timestamp is already in the cache.
  224. // Helps prevent writing duplicate data when the HTTP request is interrupted.
  225. if(!env('CACHE_DRIVER') || !Cache::has($cacheKey)) {
  226. $num++;
  227. $qz->add($date, $loc);
  228. if(env('CACHE_DRIVER'))
  229. Cache::put($cacheKey, 1, 360); // cache this for 6 hours
  230. $last_location = $loc;
  231. }
  232. if(array_key_exists('type', $loc['properties']) && $loc['properties']['type'] == 'trip') {
  233. try {
  234. $job = (new TripComplete($db->id, $loc))->onQueue('compass');
  235. $this->dispatch($job);
  236. $trips++;
  237. Log::info('Got a trip record');
  238. } catch(Exception $e) {
  239. Log::warning('Received invalid trip');
  240. }
  241. }
  242. } else {
  243. Log::warning('Received invalid date: ' . $loc['properties']['timestamp']);
  244. }
  245. } catch(Exception $e) {
  246. Log::warning('Received invalid date: ' . $loc['properties']['timestamp']);
  247. }
  248. }
  249. }
  250. }
  251. if($request->input('current')) {
  252. $last_location = $request->input('current');
  253. Log::info('Device sent current location');
  254. }
  255. $response = [
  256. 'result' => 'ok',
  257. 'saved' => $num,
  258. 'trips' => $trips
  259. ];
  260. if($last_location) {
  261. /*
  262. // 2017-08-22 Don't geocode cause it takes too long. Maybe make a separate route for this later.
  263. $geocode = self::geocode(['latitude'=>$last_location['geometry']['coordinates'][1], 'longitude'=>$last_location['geometry']['coordinates'][0]]);
  264. $response['geocode'] = [
  265. 'full_name' => $geocode->full_name,
  266. 'locality' => $geocode->locality,
  267. 'country' => $geocode->country
  268. ];
  269. */
  270. $response['geocode'] = null;
  271. // Cache the last location in the database
  272. if(isset($last_location['properties']['timestamp'])) {
  273. if(preg_match('/^\d+\.\d+$/', $last_location['properties']['timestamp']))
  274. $date = DateTime::createFromFormat('U.u', $last_location['properties']['timestamp']);
  275. elseif(preg_match('/^\d+$/', $last_location['properties']['timestamp']))
  276. $date = DateTime::createFromFormat('U', $last_location['properties']['timestamp']);
  277. else
  278. $date = new DateTime($last_location['properties']['timestamp']);
  279. $date->setTimeZone(new DateTimeZone('UTC'));
  280. $date = $date->format('Y-m-d H:i:s');
  281. } else {
  282. $date = null;
  283. }
  284. DB::table('databases')->where('id', $db->id)
  285. ->update([
  286. 'last_location' => json_encode($last_location, JSON_UNESCAPED_SLASHES+JSON_PRETTY_PRINT),
  287. 'last_location_date' => $date,
  288. ]);
  289. // Notify subscribers that new data is available
  290. if($db->ping_urls) {
  291. $job = (new NotifyOfNewLocations($db->id))->onQueue('compass');
  292. $this->dispatch($job);
  293. }
  294. }
  295. if($request->input('trip')) {
  296. $existing_trip = $db->current_trip;
  297. DB::table('databases')->where('id', $db->id)
  298. ->update([
  299. 'current_trip' => json_encode($request->input('trip'), JSON_UNESCAPED_SLASHES+JSON_PRETTY_PRINT)
  300. ]);
  301. if(!$existing_trip && $db->ping_urls) {
  302. $job = (new TripStarted($db->id))->onQueue('compass');
  303. $this->dispatch($job);
  304. }
  305. } else {
  306. DB::table('databases')->where('id', $db->id)->update(['current_trip' => null]);
  307. }
  308. return response(json_encode($response))->header('Content-Type', 'application/json');
  309. }
  310. public function trip_complete(Request $request) {
  311. $token = $request->input('token');
  312. if(!$token)
  313. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  314. $db = DB::table('databases')->where('write_token','=',$token)->first();
  315. if(!$db)
  316. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  317. if($request->input('tz')) {
  318. $tz = new DateTimeZone($request->input('tz'));
  319. } else {
  320. $tz = new DateTimeZone('UTC');
  321. }
  322. $start = new DateTime($request->input('start'), $tz);
  323. $end = new DateTime($request->input('end'), $tz);
  324. $loc = [
  325. 'properties' => [
  326. 'mode' => $request->input('mode'),
  327. 'start' => $start->format('c'),
  328. 'end' => $end->format('c'),
  329. ]
  330. ];
  331. try {
  332. $job = (new TripComplete($db->id, $loc))->onQueue('compass');
  333. $this->dispatch($job);
  334. Log::info('Got a manual trip record: '.$start->format('c').' '.$end->format('c'));
  335. } catch(Exception $e) {
  336. Log::warning('Received invalid trip');
  337. }
  338. return response(json_encode(['result' => 'ok']))->header('Content-Type', 'application/json');
  339. }
  340. public static function geocode($params) {
  341. $ch = curl_init(env('ATLAS_BASE').'api/geocode?'.http_build_query($params));
  342. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  343. curl_setopt($ch, CURLOPT_TIMEOUT, 8);
  344. $response = curl_exec($ch);
  345. if($response) {
  346. return json_decode($response);
  347. }
  348. }
  349. public function share(Request $request) {
  350. $token = $request->input('token');
  351. if(!$token)
  352. return response(json_encode(['error' => 'no token provided']))->header('Content-Type', 'application/json');
  353. $db = DB::table('databases')->where('write_token','=',$token)->first();
  354. if(!$db)
  355. return response(json_encode(['error' => 'invalid token']))->header('Content-Type', 'application/json');
  356. $expires_at = time() + $request->input('duration');
  357. $share_token = str_random(15);
  358. $share_id = DB::table('shares')->insertGetId([
  359. 'database_id' => $db->id,
  360. 'created_at' => date('Y-m-d H:i:s'),
  361. 'expires_at' => date('Y-m-d H:i:s', $expires_at),
  362. 'token' => $share_token,
  363. ]);
  364. $share_url = env('BASE_URL').'s/'.$share_token;
  365. return response(json_encode([
  366. 'url' => $share_url
  367. ]), 201)->header('Content-Type', 'application/json')
  368. ->header('Location', $share_url);
  369. }
  370. }