2015-08-30 13:22:00 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
|
|
|
* Copyright (C) 2015 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-10-24 03:22:14 +02:00
|
|
|
namespace Poniverse\Ponyfm\Providers;
|
2015-08-30 13:22:00 +02:00
|
|
|
|
2016-05-27 21:12:40 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
2015-11-09 20:35:30 +01:00
|
|
|
use Illuminate\Foundation\Application;
|
2015-08-30 13:22:00 +02:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2015-09-05 17:09:25 +02:00
|
|
|
use PfmValidator;
|
2015-11-09 20:35:30 +01:00
|
|
|
use Poniverse;
|
2015-09-05 17:09:25 +02:00
|
|
|
use Validator;
|
2015-08-30 13:22:00 +02:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2016-09-30 00:26:31 +02:00
|
|
|
Validator::resolver(function ($translator, $data, $rules, $messages) {
|
2015-09-05 17:09:25 +02:00
|
|
|
return new PfmValidator($translator, $data, $rules, $messages);
|
|
|
|
});
|
2015-08-30 13:22:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2016-09-30 00:26:31 +02:00
|
|
|
$this->app->bind(Poniverse::class, function (Application $app) {
|
2015-11-09 20:35:30 +01:00
|
|
|
return new Poniverse($app['config']->get('poniverse.client_id'), $app['config']->get('poniverse.secret'));
|
|
|
|
});
|
2016-01-15 07:20:28 +01:00
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
$this->app->bind(Poniverse\Ponyfm\Library\Search::class, function (Application $app) {
|
2016-01-15 07:20:28 +01:00
|
|
|
return new Poniverse\Ponyfm\Library\Search(
|
|
|
|
\Elasticsearch::connection(),
|
|
|
|
$app['config']->get('ponyfm.elasticsearch_index')
|
|
|
|
);
|
|
|
|
});
|
2016-05-27 21:12:40 +02:00
|
|
|
|
|
|
|
// 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([
|
|
|
|
Poniverse\Ponyfm\Models\Activity::TARGET_TRACK => Poniverse\Ponyfm\Models\Track::class,
|
|
|
|
Poniverse\Ponyfm\Models\Activity::TARGET_ALBUM => Poniverse\Ponyfm\Models\Album::class,
|
|
|
|
Poniverse\Ponyfm\Models\Activity::TARGET_PLAYLIST => Poniverse\Ponyfm\Models\Playlist::class,
|
|
|
|
Poniverse\Ponyfm\Models\Activity::TARGET_USER => Poniverse\Ponyfm\Models\User::class,
|
|
|
|
Poniverse\Ponyfm\Models\Activity::TARGET_COMMENT => Poniverse\Ponyfm\Models\Comment::class,
|
|
|
|
], false);
|
2015-08-30 13:22:00 +02:00
|
|
|
}
|
|
|
|
}
|