mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
163 lines
4.5 KiB
PHP
163 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Database\Eloquent\Factory;
|
|
use Illuminate\Queue\Events\JobFailed;
|
|
use Illuminate\Queue\Events\JobProcessed;
|
|
use Illuminate\Queue\Events\JobProcessing;
|
|
use Illuminate\Support\Facades\Queue;
|
|
use Modules\StudioPlus\Entities\StudioPlusVideo;
|
|
use Modules\StudioPlus\Entities\WatermarkingJob;
|
|
use Modules\StudioPlus\Events\CreateJobEvent;
|
|
use Modules\StudioPlus\Events\UpdateJobStatusEvent;
|
|
|
|
class StudioPlusServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* @var string $moduleName
|
|
*/
|
|
protected $moduleName = 'StudioPlus';
|
|
|
|
/**
|
|
* @var string $moduleNameLower
|
|
*/
|
|
protected $moduleNameLower = 'studioplus';
|
|
|
|
/**
|
|
* Boot the application events.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->registerTranslations();
|
|
$this->registerConfig();
|
|
$this->registerViews();
|
|
$this->registerCommands();
|
|
$this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations'));
|
|
|
|
Queue::before(function (JobProcessing $event) {
|
|
$job = WatermarkingJob::where('job_id', $event->job->getJobId())->first();
|
|
if ($job) {
|
|
$job->status = 'processing';
|
|
$job->update();
|
|
|
|
event(new UpdateJobStatusEvent($job));
|
|
}
|
|
});
|
|
|
|
Queue::after(function (JobProcessed $event) {
|
|
$job = WatermarkingJob::where('job_id', $event->job->getJobId())->first();
|
|
if ($job) {
|
|
$job->status = 'completed';
|
|
$job->update();
|
|
|
|
$video = $job->video;
|
|
$video->upload_status = StudioPlusVideo::UPLOAD_STATUS_COMPLETE;
|
|
$video->update();
|
|
|
|
event(new UpdateJobStatusEvent($job));
|
|
}
|
|
});
|
|
|
|
Queue::failing(function (JobFailed $event) {
|
|
$job = WatermarkingJob::where('job_id', $event->job->getJobId())->first();
|
|
if ($job) {
|
|
$job->status = 'failed';
|
|
$job->update();
|
|
|
|
event(new UpdateJobStatusEvent($job));
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register the service provider.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->register(RouteServiceProvider::class);
|
|
}
|
|
|
|
/**
|
|
* Register config.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function registerConfig()
|
|
{
|
|
$this->publishes([
|
|
module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower . '.php'),
|
|
], 'config');
|
|
$this->mergeConfigFrom(
|
|
module_path($this->moduleName, 'Config/config.php'), $this->moduleNameLower
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Register views.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function registerViews()
|
|
{
|
|
$viewPath = resource_path('views/modules/' . $this->moduleNameLower);
|
|
|
|
$sourcePath = module_path($this->moduleName, 'Resources/views');
|
|
|
|
$this->publishes([
|
|
$sourcePath => $viewPath
|
|
], ['views', $this->moduleNameLower . '-module-views']);
|
|
|
|
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
|
|
}
|
|
|
|
/**
|
|
* Register translations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function registerTranslations()
|
|
{
|
|
$langPath = resource_path('lang/modules/' . $this->moduleNameLower);
|
|
|
|
if (is_dir($langPath)) {
|
|
$this->loadTranslationsFrom($langPath, $this->moduleNameLower);
|
|
} else {
|
|
$this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
private function getPublishableViewPaths(): array
|
|
{
|
|
$paths = [];
|
|
foreach (\Config::get('view.paths') as $path) {
|
|
if (is_dir($path . '/modules/' . $this->moduleNameLower)) {
|
|
$paths[] = $path . '/modules/' . $this->moduleNameLower;
|
|
}
|
|
}
|
|
return $paths;
|
|
}
|
|
|
|
private function registerCommands()
|
|
{
|
|
$this->commands([
|
|
\Modules\StudioPlus\Console\CleanupTemporaryUserVideoUploads::class,
|
|
]);
|
|
}
|
|
}
|