netsells / laravel-geoscope
GeoScope is a laravel package that allows you to easily perform distance queries and geofencing based on latitudes and longitudes.
Installs: 16 973
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 6
Open Issues: 0
Requires
- php: >=7.2
- laravel/framework: >=5.3
Requires (Dev)
- laravel/framework: ^6.6
- mockery/mockery: ^1.3
- orchestra/testbench: ^4.4
- phpunit/phpunit: ^8.4
README
GeoScope is a laravel package that allows you to easily perform distance queries and geofencing based on latitudes and longitudes.
It is created and maintained by the Netsells team
Key Features
- Supports Laravel 5.3 and above
- Find all records within a given distance of a set latitude and longitude using either the model trait or the DB query builder.
- Can automatically order results by distance from the given lat and long.
- Can be fully configured to work with multiple lat long columns on a single model / table.
- Uses native database functions for the fastest possible performance - no more slow haversine queries.
- Supports MySql, Mariadb, Postgres and SQLServer out of the box.
- Can be set to automatically add
distance
anddistance_units
fields to model results. - Distance units are completely configurable.
Installation
using composer:
$ composer require netsells/laravel-geoscope
Then publish the config file using the following artisan command:
php artisan vendor:publish --tag=geoscope
Usage
Basic Usage
GeoScope includes the Netsells\GeoScope\Traits\GeoScopeTrait
that can be added to your models. The trait contains two scopes,
withinDistanceOf
and orWithinDistanceOf
. withinDistanceOf
will add a where
clause to your query and orWithinDistanceOf
will add an orWhere
. Both of these methods accept 3 parameters, a latitude, longitude and distance. Both the latitude
and longitude should be given in degrees. GeoScope with then use these to query against the specified lat long fields on that model.
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Netsells\GeoScope\Traits\GeoScopeTrait; class Job extends Model { use GeoScopeTrait; // }
the scopes can then be applied to any model query:
// Gets all jobs within 20 miles of the given latitude and longitude $jobs = Job::withinDistanceOf(53.957962, -1.085485, 20)->get(); // Gets all jobs within 20 miles of the first lat and long or within 20 miles // of the second lat long $jobs = Job::withinDistanceOf(53.957962, -1.085485, 20) ->orWithinDistanceOf(52.143542, -2.08556, 20);
GeoScope also includes an orderByDistanceFrom()
method that allows you to sort results by their distance from a specified lat long.
// order by distance in ascending order $results = Job::orderByDistanceFrom(30.1234, -71.2176, 'asc')->get(); // order by distance in descending order $results = Job::orderByDistanceFrom(30.1234, -71.2176, 'desc')->get();
A field can be added to each returned result with the calculated distance from the given lat long using the addDistanceFromField()
method.
$results = Job::addDistanceFromField(30.1234, -71.2176)->get();
before addDistanceFromField()
is applied
{ "id": 1, "email": "vita.frami@example.com", "latitude": 39.95, "longitude": -76.74, "created_at": "2020-02-29 19:13:08", "updated_at": "2020-02-29 19:13:08", }
After addDistanceFromField()
is applied
{ "id": 1, "email": "vita.frami@example.com", "latitude": 39.95, "longitude": -76.74, "created_at": "2020-02-29 19:13:08", "updated_at": "2020-02-29 19:13:08", "distance": 0.2, "dist_units": "miles" }
A custom field name can be passed as the third argument to the addDistanceFromField()
method if the name has been registered in the whitelisted-distance-from-field-names
array of the geoscope.php config file. The distance field will have a default name of distance
and the units field will have a default name of distance_units
.
The addDistanceFromField()
method is only available through the GeoScopeTrait. It is not available on the database builder
'whitelisted-distance-from-field-names' => [ 'custom_field_name' ]
$results = Job::addDistanceFromField(30.1234, -71.2176, 'custom_field_name')->get();
{ "id": 1, "email": "vita.frami@example.com", "latitude": 39.95, "longitude": -76.74, "created_at": "2020-02-29 19:13:08", "updated_at": "2020-02-29 19:13:08", "custom_field_name": 0.2, "custom_field_name_units": "miles" }
Configuration
When adding the GeoScopeTrait
to your model you can define the latitude, longitude and distance units to be used by
the trait in the geoscope.php config file.
'models' => [ App\Job::class => [ 'lat-column' => 'custom-lat-column-name', 'long-column' => 'custom-long-column-name', 'units' => 'meters' ] ]
Should you wish to use the scope for multiple latitude and longitude columns on the same model you can do so by creating multiple configurations within the same model key.
'models' => [ App\Job::class => [ 'location1' => [ 'lat-column' => 'custom-lat-column-name', 'long-column' => 'custom-long-column-name', 'units' => 'meters' ], 'location2' => [ 'lat-column' => 'custom-lat-column-name', 'long-column' => 'custom-long-column-name', 'units' => 'meters' ] ] ]
The key for the model config you wish to use can then be passed as a fourth parameter to
both the withinDistanceOf
and orWithinDistanceOf
scopes.
$jobs = Job::withinDistanceOf(53.957962, -1.085485, 20, 'location1')->get(); $jobs2 = Job::withinDistanceOf(53.957962, -1.085485, 20, 'location1') ->orWithinDistanceOf(52.143542, -2.08556, 20, 'location2');
You may also pass in an array of config items as the fourth parameter to both the withinDistanceOf
and orWithinDistanceOf
scopes.
$jobs = Job::withinDistanceOf(53.957962, -1.085485, 20, [ 'lat-column' => 'lat-column-1', 'long-column' => 'long-column-1', 'units' => 'meters' ])->get(); $jobs2 = Job::withinDistanceOf(53.957962, -1.085485, 20, 'location1') ->orWithinDistanceOf(52.143542, -2.08556, 20, [ 'units' => 'meters' ])->get();
Any missing config options will be replaced with the defaults defined in config('geoscope.defaults')
.
Passing invalid config keys will also cause GeoScope to fallback to these defaults for all config fields.
Database Query Builder
Geoscope also allows you to call the withinDistanceOf()
, orWithinDistanceOf()
and orderByDistanceFrom()
methods directly off the DB query builder:
$results = DB::table('users') ->withinDistanceOf(30.1234, -71.2176, 20) ->join('jobs', 'jobs.user_id', '=', 'users.id') ->get();
if you wish to alter the config options then you may pass an array as the fourth parameter to the withinDistanceOf()
and orWithinDistanceOf()
methods:
$results = DB::table('users')->withinDistanceOf(30.1234, -71.2176, 20, [ 'lat-column' => 'lat-column-1', 'long-column' => 'long-column-1', 'units' => 'meters' ])->get();
order by distance example:
$results = DB::table('users')->orderByDistanceFrom(30.1234, -71.2176, 'asc')->get();
Scope Drivers
Under the hood, GeoScope uses different drivers to ensure that the distance queries are optimised to the database connection
being used. Scope drivers correspond to the database drivers used by Laravel. GeoScope will automatically detect the database driver being used
by Laravel and choose the correct scope driver for it. Out of the box GeoScope includes a MySQL scope driver
which uses ST_Distance_Sphere()
function, a PostgreSQL scope driver which uses earth_distance
and a SQL Server driver which uses STDistance
.
NOTE: The PostgreSQL driver requires you to have the postgres earthdistance
module installed which can be done by executing the following SQL
create extension if not exists cube; create extension if not exists earthdistance;
Creating Custom Scope Drivers
GeoScope allows you to define and register custom scope drivers. To create a custom scope driver create a class that extends
Netsells\GeoScope\ScopeDrivers\AbstractScopeDriver
. The new driver must then implement the methods outlined in
Netsells\GeoScope\Interfaces\ScopeDriverInterface
(below).
<?php namespace Netsells\GeoScope\Interfaces; interface ScopeDriverInterface { /** * @param float $lat * @param float $long * @param float $distance * @return mixed * Should return query instance */ public function withinDistanceOf(float $lat, float $long, float $distance); /** * @param float $lat * @param float $long * @param float $distance * @return mixed * Should return query instance */ public function orWithinDistanceOf(float $lat, float $long, float $distance); /** * @param float $lat * @param float $long * @param string $orderDirection - asc or desc * @return mixed * Should return query instance */ public function orderByDistanceFrom(float $lat, float $long, string $orderDirection = 'asc'); /** * @param float $lat * @param float $long * @param string $fieldName * @return mixed * Should return query instance */ public function addDistanceFromField(float $lat, float $long, string $fieldName); }
The Query Builder instance is available within your driver via the $this->query
property, any config options passed will be available via the $this->config
property.
Registering Custom Scope Drivers
Custom scope drivers can be registered using the registerDriverStrategy
method on the ScopeDriverFactory
class.
Registration should normally be done within the register
method of a service provider.
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Netsells\GeoScope\ScopeDriverFactory; use App\Services\GeoScope\ScopeDrivers\PostgreSQLScopeDriver; class AppServiceProvider extends ServiceProvider { /** * Register any application services. * * @return void */ public function register() { app(ScopeDriverFactory::class)->registerDriverStrategy('pgsql', PostgreSQLScopeDriver::class); } /** * Bootstrap any application services. * * @return void */ public function boot() { // } }
You may set an optional scope-driver
config key if you wish to force a specific scope driver to be used.
Note - If you're using MariaDB then you MUST set the scope-driver
field to mariadb
. This is due to Laravel using the same db connection settings for both Mariadb and MySQL and therefore the db connection cannot be used to distinguish the two.
'models' => [ App\Job::class => [ 'lat-column' => 'custom-lat-column-name', 'long-column' => 'custom-long-column-name', 'units' => 'meters', 'scope-driver' => 'mysql' ] ]
If you create a custom scope driver, please consider putting in a pull Request to add it to the package so it may be used by others.
Scope Driver Security
Due to the nature of the queries being run by GeoScope, both the whereRaw()
and orWhereRaw
methods are used. The drivers included by default
protect against sql injection attacks (using prepared statements and by checking for valid lat long column config values). It is important that when creating
custom scope drivers, that you also take this into consideration for any user input that you pass directly to it.