-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommand.php
More file actions
119 lines (98 loc) · 2.61 KB
/
Command.php
File metadata and controls
119 lines (98 loc) · 2.61 KB
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
118
119
<?php declare(strict_types=1);
/*
* This file is part of the Rapsys PackBundle package.
*
* (c) Raphaël Gertz <symfony@rapsys.eu>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Rapsys\PackBundle;
use Rapsys\PackBundle\RapsysPackBundle;
use Symfony\Component\Console\Command\Command as BaseCommand;
use Symfony\Component\DependencyInjection\Container;
/**
* {@inheritdoc}
*/
class Command extends BaseCommand {
/**
* Alias string
*/
protected string $alias = '';
/**
* Bundle string
*/
protected string $bundle = '';
/**
* {@inheritdoc}
*/
public function __construct(protected ?string $name = null) {
//Get class
$class = strrchr(static::class, '\\', true);
//Without command name
if (substr(static::class, -strlen('\\Command')) !== '\\Command') {
$class = strrchr($class, '\\', true);
}
//Set bundle
$this->bundle = strtolower($class);
//With full class name
if (class_exists($class .= '\\'.str_replace('\\', '', $class)) && method_exists($class, 'getAlias')) {
//Set alias
$this->alias = call_user_func([$class, 'getAlias']);
}
//Fix name
$this->name = $this->name ?? static::getName($this->alias);
//Call parent constructor
parent::__construct($this->name);
//With description
if (!empty($this->description)) {
//Set description
$this->setDescription($this->description);
}
//With help
if (!empty($this->help)) {
//Set help
$this->setHelp($this->help);
}
}
/**
* Return the command name
*
* {@inheritdoc}
*
* @param ?string $alias The bundle alias
*/
public function getName(?string $alias = null): string {
//With namespace
if ($npos = strrpos(static::class, '\\')) {
//Set name pos
$npos++;
//Without namespace
} else {
$npos = 0;
}
//Set bundle pos
$bpos = strlen(static::class) - $npos;
//With trailing command
if (substr(static::class, -strlen('Command'), strlen('Command')) === 'Command') {
//Fix bundle pos
$bpos -= strlen('Command');
}
//Without alias
if ($alias === null) {
//Get class
$class = strrchr(static::class, '\\', true);
//Without command name
if (substr(static::class, -strlen('\\Command')) !== '\\Command') {
$class = strrchr($class, '\\', true);
}
//With full class name
if (class_exists($class .= '\\'.str_replace('\\', '', $class)) && method_exists($class, 'getAlias')) {
//Set alias
$alias = call_user_func([$class, 'getAlias']);
}
}
//Return command alias
return ($alias?$alias.':':'').strtolower(substr(static::class, $npos, $bpos));
}
}