mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
127 lines
5.1 KiB
PHP
127 lines
5.1 KiB
PHP
<?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/>.
|
|
*/
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class SetupElasticsearch extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
// As of 2016-02-21, Elasticsearch is not used in tests.
|
|
// Letting this migration run will blow away all data in it.
|
|
if (App::environment() === 'testing') {
|
|
return;
|
|
}
|
|
|
|
$elasticsearch = Elasticsearch::connection();
|
|
|
|
$elasticsearch->indices()->create([
|
|
'index' => 'ponyfm',
|
|
'body' => [
|
|
'mappings' => [
|
|
'track' => [
|
|
'_source' => ['enabled' => true],
|
|
'dynamic' => 'strict',
|
|
'properties' => [
|
|
'title' => ['type' => 'string', 'analyzer' => 'english'],
|
|
'artist' => ['type' => 'string'],
|
|
|
|
'published_at' => ['type' => 'date'],
|
|
'genre' => ['type' => 'string', 'analyzer' => 'english'],
|
|
'track_type' => ['type' => 'string', 'index' => 'not_analyzed'],
|
|
|
|
// This field is intended to be used as an array.
|
|
// Note that all Elasticsearch fields can technically be used as arrays.
|
|
// See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html
|
|
'show_songs' => ['type' => 'string'],
|
|
]
|
|
],
|
|
|
|
'album' => [
|
|
'_source' => ['enabled' => true],
|
|
'dynamic' => 'strict',
|
|
'properties' => [
|
|
'title' => ['type' => 'string', 'analyzer' => 'english'],
|
|
'artist' => ['type' => 'string'],
|
|
|
|
// This field is intended to be used as an array.
|
|
// Note that all Elasticsearch fields can technically be used as arrays.
|
|
// See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html
|
|
'tracks' => ['type' => 'string', 'analyzer' => 'english']
|
|
]
|
|
],
|
|
|
|
'playlist' => [
|
|
'_source' => ['enabled' => true],
|
|
'dynamic' => 'strict',
|
|
'properties' => [
|
|
'title' => ['type' => 'string', 'analyzer' => 'english'],
|
|
'curator' => ['type' => 'string'],
|
|
|
|
// This field is intended to be used as an array.
|
|
// Note that all Elasticsearch fields can technically be used as arrays.
|
|
// See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html
|
|
'tracks' => ['type' => 'string', 'analyzer' => 'english']
|
|
]
|
|
],
|
|
|
|
'user' => [
|
|
'_source' => ['enabled' => true],
|
|
'dynamic' => 'strict',
|
|
'properties' => [
|
|
'username' => ['type' => 'string', 'index' => 'not_analyzed'],
|
|
'display_name' => ['type' => 'string'],
|
|
|
|
// This field is intended to be used as an array.
|
|
// Note that all Elasticsearch fields can technically be used as arrays.
|
|
// See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html
|
|
'tracks' => ['type' => 'string', 'analyzer' => 'english']
|
|
]
|
|
],
|
|
]
|
|
]
|
|
]);
|
|
|
|
Artisan::call('rebuild:search');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
// As of 2016-02-21, Elasticsearch is not used in tests.
|
|
// Letting this migration run will blow away all data in it.
|
|
if (App::environment() === 'testing') {
|
|
return;
|
|
}
|
|
|
|
$elasticsearch = Elasticsearch::connection();
|
|
|
|
$elasticsearch->indices()->delete(['index' => 'ponyfm']);
|
|
}
|
|
}
|