Pony.fm/app/Traits/IndexedInElasticsearchTrait.php

100 lines
2.9 KiB
PHP
Raw Normal View History

2016-01-07 19:16:37 +01:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2016 Peter Deltchev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Poniverse\Ponyfm\Traits;
use Elasticsearch;
use Elasticsearch\Common\Exceptions\Missing404Exception;
2016-01-07 19:16:37 +01:00
/**
* Class IndexedInElasticsearch
*
* Classes using this trait must declare the `$elasticsearchType` property
* and use the `SoftDeletes` trait.
*
* @package Poniverse\Ponyfm\Traits
*/
trait IndexedInElasticsearchTrait
2016-01-07 19:16:37 +01:00
{
/**
* Returns this model in Elasticsearch-friendly form. The array returned by
* this method should match the current mapping for this model's ES type.
*
* @return array
*/
abstract public function toElasticsearch();
/**
* @return bool whether this particular object should be indexed or not
*/
abstract public function shouldBeIndexed():bool;
public static function bootIndexedInElasticsearchTrait() {
2016-01-07 19:16:37 +01:00
static::saved(function ($model) {
$model->ensureElasticsearchEntryIsUpToDate();
2016-01-07 19:16:37 +01:00
});
static::deleted(function ($model) {
$model->ensureElasticsearchEntryIsUpToDate();
2016-01-07 19:16:37 +01:00
});
}
/**
* @param bool $includeBody set to false when deleting documents
* @return array
*/
private function getElasticsearchParameters(bool $includeBody = true) {
$parameters = [
'index' => 'ponyfm',
'type' => $this->elasticsearchType,
'id' => $this->id,
];
if ($includeBody) {
$parameters['body'] = $this->toElasticsearch();
}
return $parameters;
}
private function createOrUpdateElasticsearchEntry() {
Elasticsearch::connection()->index($this->getElasticsearchParameters());
}
private function deleteElasticsearchEntry() {
try {
Elasticsearch::connection()->delete($this->getElasticsearchParameters(false));
} catch (Missing404Exception $e) {
// If the entity we're trying to delete isn't indexed in Elasticsearch,
2016-01-07 19:16:37 +01:00
// that's fine.
}
}
public function ensureElasticsearchEntryIsUpToDate() {
if ($this->shouldBeIndexed()) {
2016-01-07 19:16:37 +01:00
$this->createOrUpdateElasticsearchEntry();
} else {
$this->deleteElasticsearchEntry();
2016-01-07 19:16:37 +01:00
}
}
}