1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-06-04 00:04:30 +02:00
2018-04-24 23:57:21 +02:00
2017-03-02 21:41:19 +01:00
2018-04-25 00:43:24 +02:00
2018-10-09 01:48:00 +02:00
2018-10-03 21:49:20 +02:00
2018-10-03 21:49:20 +02:00
2018-10-03 21:49:20 +02:00
2018-10-03 21:49:20 +02:00
2018-08-12 22:16:47 +02:00
2018-05-02 14:17:29 +02:00

owntracks-php-client

A simple and responsive self-hosted solution to record and map Owntracks http payloads.

Screenshots

Location records mapping

Desktop view

Responsible interface & controls

Responsive view

Features

  • Owntracks HTTP payloads recoding into database
  • Interface to map location records
  • Responsive: accessible on mobile and tablet!
  • Calendar to select location records period

Installation

Requirements

  • PHP 5.6 or above
  • MySQL or equivalent (MariaDB, …) or PHP's SQLite3 PDO driver
  • self hosted / dedicated server / mutualized hosting

That's it !

Installation instructions

PHP Client

  1. Download the source code and copy the content of the directory to your prefered location
  2. Edit the config.inc.sample.php file to setup access to your database and rename to config.inc.php:
    $_config['sql_type']          // database type 'mysql' (MySQL/MariaDB) or 'sqlite'
    $_config['sql_host']          // sql server hostname (only needed for 'mysql')
    $_config['sql_user']          // sql server username (only needed for 'mysql')
    $_config['sql_pass']          // sql server username password (only needed for 'mysql')
    $_config['sql_db']            // database name or SQLite filename
    $_config['sql_prefix']        // table prefix (only needed for 'mysql')
    
    $_config['default_accuracy']  // default maximum accuracy for location record to be displayed on the map
    
    $_config['enable_geo_reverse'] // set to TRUE to enable geo decoding of location records
    $_config['geo_reverse_lookup_url'] // geodecoding api url, will be appended with lat= & lon= attributes
    
  3. Create datatable using schema_mysql.sql or schema_sqlite.sql (in the 'sql' directory)
  4. Make sure you have installed Yarn
  5. Get Composer and install dependencies (this will call yarn automatically):
    ./composer.phar install
    

Owntracks app

Follow Owntracks Booklet to setup your Owntracks app:

  1. Setup your Owntracks app:
    1. Mode: HTTP
    2. URL: http://your_host/your_dir/record.php

Usage

First time access

Access map of today's recorded locations at: http://your_host/your_dir/

Navigate through your recorded locations

  • Use the "Previous" and "Next" buttons
  • Manually change the From / To dates (next to the "Previous" button)

Adjust map settings

  • Use the "Config" button to:
    • Display or hide the individual markers (first and last markers for the period will always be displayed)
    • Change maximum accuracy for displayed location records

Contributing

Pull Requests and feature requests are welcomed.

License

This project is published under the GNU General Public License v3.0

Description
PHP front & backend for owntracks payload; originally forked from https://github.com/tomyvi/php-tracks-recorder
Readme GPL-3.0 2.2 MiB
Languages
CoffeeScript 46%
PHP 44.2%
Mustache 8.7%
CSS 1.1%