-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathHasSpatial.php
153 lines (133 loc) · 5.22 KB
/
HasSpatial.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
declare(strict_types=1);
namespace TarfinLabs\LaravelSpatial\Traits;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\DB;
use TarfinLabs\LaravelSpatial\Casts\LocationCast;
use TarfinLabs\LaravelSpatial\Types\Point;
trait HasSpatial
{
public function scopeSelectDistanceTo(Builder $query, string $column, Point $point): void
{
if (is_null($query->getQuery()->columns)) {
$query->select("{$this->getTable()}.*");
}
match (DB::connection()->getDriverName()) {
'pgsql', 'mysql' => $this->selectDistanceToMysqlAndPostgres($query, $column, $point),
'mariadb' => $this->selectDistanceToMariaDb($query, $column, $point),
default => throw new \Exception('Unsupported database driver'),
};
}
public function scopeWithinDistanceTo(Builder $query, string $column, Point $point, int $distance): void
{
match (DB::connection()->getDriverName()) {
'pgsql', 'mysql' => $this->withinDistanceToMysqlAndPostgres($query, $column, $point, $distance),
'mariadb' => $this->withinDistanceToMariaDb($query, $column, $point, $distance),
default => throw new \Exception('Unsupported database driver'),
};
}
public function scopeOrderByDistanceTo(Builder $query, string $column, Point $point, string $direction = 'asc'): void
{
$direction = strtolower($direction) === 'asc' ? 'asc' : 'desc';
match (DB::connection()->getDriverName()) {
'pgsql', 'mysql' => $this->orderByDistanceToMysqlAndPostgres($query, $column, $point, $direction),
'mariadb' => $this->orderByDistanceToMariaDb($query, $column, $point, $direction),
default => throw new \Exception('Unsupported database driver'),
};
}
public function newQuery(): Builder
{
$raw = '';
$wktOptions = config('laravel-spatial.with_wkt_options', true) === true
? ', \'axis-order=long-lat\''
: '';
foreach ($this->getLocationCastedAttributes() as $column) {
$raw .= "CONCAT(ST_AsText({$this->getTable()}.{$column}$wktOptions), ',', ST_SRID({$this->getTable()}.{$column})) as {$column}, ";
}
$raw = substr($raw, 0, -2);
return parent::newQuery()->addSelect("{$this->getTable()}.*", DB::raw($raw));
}
public function getLocationCastedAttributes(): Collection
{
return collect($this->getCasts())->filter(fn ($cast) => $cast === LocationCast::class)->keys();
}
private function selectDistanceToMysqlAndPostgres(Builder $query, string $column, Point $point): Builder
{
return $query->selectRaw(
"ST_Distance(ST_SRID({$column}, ?), ST_SRID(Point(?, ?), ?)) as distance",
[
$point->getSrid(),
$point->getLng(),
$point->getLat(),
$point->getSrid(),
]
);
}
private function selectDistanceToMariaDb(Builder $query, string $column, Point $point): Builder
{
return $query->selectRaw(
"ST_Distance(ST_SRID({$column}), ST_SRID(Point(?, ?))) as distance",
[
$point->getLng(),
$point->getLat(),
]
);
}
private function withinDistanceToMysqlAndPostgres(Builder $query, string $column, Point $point, int $distance): Builder
{
return $query
->whereRaw("ST_AsText({$column}) != ?", [
'POINT(0 0)',
])
->whereRaw(
"ST_Distance(ST_SRID({$column}, ?), ST_SRID(Point(?, ?), ?)) <= ?",
[
...[
$point->getSrid(),
$point->getLng(),
$point->getLat(),
$point->getSrid(),
],
$distance,
]
);
}
private function withinDistanceToMariaDb(Builder $query, string $column, Point $point, int $distance): Builder
{
return $query
->whereRaw("ST_AsText({$column}) != ?", [
'POINT(0 0)',
])
->whereRaw(
"ST_Distance(ST_SRID({$column}), ST_SRID(Point(?, ?))) <= ?",
[
$point->getLng(),
$point->getLat(),
$distance,
]
);
}
private function orderByDistanceToMysqlAndPostgres(Builder $query, string $column, Point $point, string $direction = 'asc'): Builder
{
return $query->orderByRaw(
"ST_Distance(ST_SRID({$column}, ?), ST_SRID(Point(?, ?), ?)) " . $direction,
[
$point->getSrid(),
$point->getLng(),
$point->getLat(),
$point->getSrid(),
]
);
}
private function orderByDistanceToMariaDb(Builder $query, string $column, Point $point, string $direction = 'asc'): Builder
{
return $query->orderByRaw(
"ST_Distance(ST_SRID({$column}), ST_SRID(Point(?, ?))) " . $direction,
[
$point->getLng(),
$point->getLat(),
]
);
}
}