1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
namespace Acacha\AdminLTETemplateLaravel\Console;
use League\Flysystem\Adapter\Local as LocalAdapter;
use League\Flysystem\Filesystem as Flysystem;
use League\Flysystem\MountManager;
/**
* Class Installable.
*/
trait Installable
{
/**
* Install files from array.
*
* @param $files
*/
private function install($files)
{
foreach ($files as $fileSrc => $fileDst) {
if (file_exists($fileDst) && !$this->force && !$this->confirmOverwrite(basename($fileDst))) {
return;
}
if ($this->files->isFile($fileSrc)) {
$this->publishFile($fileSrc, $fileDst);
} elseif ($this->files->isDirectory($fileSrc)) {
$this->publishDirectory($fileSrc, $fileDst);
} else {
$this->error("Can't locate path: <{$fileSrc}>");
}
}
}
/**
* @param $fileName
* @param string $prompt
*
* @return bool
*/
protected function confirmOverwrite($fileName, $prompt = '')
{
$prompt = (empty($prompt))
? $fileName.' already exists. Do you want to overwrite it? [y|N]'
: $prompt;
return $this->confirm($prompt, false);
}
/**
* Create the directory to house the published files if needed.
*
* @param string $directory
*
* @return void
*/
protected function createParentDirectory($directory)
{
if (!$this->files->isDirectory($directory)) {
$this->files->makeDirectory($directory, 0755, true);
}
}
/**
* Publish the file to the given path.
*
* @param string $from
* @param string $to
*
* @return void
*/
protected function publishFile($from, $to)
{
$this->createParentDirectory(dirname($to));
$this->files->copy($from, $to);
$this->status($from, $to, 'File');
}
/**
* Publish the directory to the given directory.
*
* @param string $from
* @param string $to
*
* @return void
*/
protected function publishDirectory($from, $to)
{
$manager = new MountManager([
'from' => new Flysystem(new LocalAdapter($from)),
'to' => new Flysystem(new LocalAdapter($to)),
]);
foreach ($manager->listContents('from://', true) as $file) {
if ($file['type'] === 'file' && (!$manager->has('to://'.$file['path']) || $this->force)) {
$manager->put('to://'.$file['path'], $manager->read('from://'.$file['path']));
}
}
$this->status($from, $to, 'Directory');
}
/**
* Write a status message to the console.
*
* @param string $from
* @param string $to
* @param string $type
*
* @return void
*/
protected function status($from, $to, $type)
{
$from = str_replace(base_path(), '', realpath($from));
$to = str_replace(base_path(), '', realpath($to));
$this->line('<info>Copied '. $type. '</info> <comment>['. $from.
']</comment> <info>To</info> <comment>['.$to.']</comment>');
}
}