Nyní jsme to vyřešili obecně pro všechny modely rozšířením našeho základního modelu o následující funkce:
- Definujeme pole atributů, které obsahují geometrická data.
- Pokud chceme, aby se to automaticky načítalo jako text, rozhodujeme se na základě modelu.
- Změníme výchozí tvůrce dotazů tak, aby vybíral atributy geometrie jako text z databáze.
Zde je výňatek ze základního modelu, který nyní používáme:
/**
* The attributes that hold geometrical data.
*
* @var array
*/
protected $geometry = array();
/**
* Select geometrical attributes as text from database.
*
* @var bool
*/
protected $geometryAsText = false;
/**
* Get a new query builder for the model's table.
* Manipulate in case we need to convert geometrical fields to text.
*
* @param bool $excludeDeleted
* @return \Illuminate\Database\Eloquent\Builder
*/
public function newQuery($excludeDeleted = true)
{
if (!empty($this->geometry) && $this->geometryAsText === true)
{
$raw = '';
foreach ($this->geometry as $column)
{
$raw .= 'AsText(`' . $this->table . '`.`' . $column . '`) as `' . $column . '`, ';
}
$raw = substr($raw, 0, -2);
return parent::newQuery($excludeDeleted)->addSelect('*', DB::raw($raw));
}
return parent::newQuery($excludeDeleted);
}