mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Pony.fm - A community for pony fan music.
|
|
* Copyright (C) 2015 Feld0
|
|
*
|
|
* 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 App\Providers;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use PfmValidator;
|
|
use Poniverse;
|
|
use Validator;
|
|
|
|
use App;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
Validator::resolver(function ($translator, $data, $rules, $messages) {
|
|
return new PfmValidator($translator, $data, $rules, $messages);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind(Poniverse::class, function (Application $app) {
|
|
return new Poniverse($app['config']->get('poniverse.client_id'), $app['config']->get('poniverse.secret'));
|
|
});
|
|
|
|
$this->app->bind(App\Library\Search::class, function (Application $app) {
|
|
return new App\Library\Search(
|
|
\Elasticsearch::connection(),
|
|
$app['config']->get('ponyfm.elasticsearch_index')
|
|
);
|
|
});
|
|
|
|
// NOTE: Use integer keys exclusively for Pony.fm's morphMap to avoid
|
|
// any weirdness with merging array indices. $merge = false is
|
|
// set below so that no morphMap array merging happens!
|
|
Relation::morphMap([
|
|
App\Models\Activity::TARGET_TRACK => App\Models\Track::class,
|
|
App\Models\Activity::TARGET_ALBUM => App\Models\Album::class,
|
|
App\Models\Activity::TARGET_PLAYLIST => App\Models\Playlist::class,
|
|
App\Models\Activity::TARGET_USER => App\Models\User::class,
|
|
App\Models\Activity::TARGET_COMMENT => App\Models\Comment::class,
|
|
], false);
|
|
}
|
|
}
|