-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathPlugin.php
103 lines (91 loc) · 2.82 KB
/
Plugin.php
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
<?php
namespace DrupalComposer\DrupalScaffold;
use Composer\Script\Event;
use Composer\Plugin\CommandEvent;
use Composer\Composer;
use Composer\EventDispatcher\EventSubscriberInterface;
use Composer\Installer\PackageEvent;
use Composer\Installer\PackageEvents;
use Composer\IO\IOInterface;
use Composer\Plugin\Capable;
use Composer\Plugin\PluginEvents;
use Composer\Plugin\PluginInterface;
use Composer\Script\ScriptEvents;
/**
* Composer plugin for handling drupal scaffold.
*/
class Plugin implements PluginInterface, EventSubscriberInterface, Capable {
/**
* @var \DrupalComposer\DrupalScaffold\Handler
*/
protected $handler;
/**
* {@inheritdoc}
*/
public function activate(Composer $composer, IOInterface $io) {
// We use a separate PluginScripts object. This way we separate
// functionality and also avoid some debug issues with the plugin being
// copied on initialisation.
// @see \Composer\Plugin\PluginManager::registerPackage()
$this->handler = new Handler($composer, $io);
}
/**
* {@inheritdoc}
*/
public function getCapabilities() {
return [
'Composer\Plugin\Capability\CommandProvider' => 'DrupalComposer\DrupalScaffold\CommandProvider',
];
}
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
return [
PackageEvents::POST_PACKAGE_INSTALL => 'postPackage',
PackageEvents::POST_PACKAGE_UPDATE => 'postPackage',
ScriptEvents::POST_UPDATE_CMD => 'postCmd',
PluginEvents::COMMAND => 'cmdBegins',
];
}
/**
* Command begins event callback.
*
* @param \Composer\Plugin\CommandEvent $event
*/
public function cmdBegins(CommandEvent $event) {
$this->handler->onCmdBeginsEvent($event);
}
/**
* Post package event behaviour.
*
* @param \Composer\Installer\PackageEvent $event
*/
public function postPackage(PackageEvent $event) {
$this->handler->onPostPackageEvent($event);
}
/**
* Post command event callback.
*
* @param \Composer\Script\Event $event
*/
public function postCmd(Event $event) {
$this->handler->onPostCmdEvent($event);
}
/**
* Script callback for putting in composer scripts to download the
* scaffold files.
*
* @param \Composer\Script\Event $event
*
* @deprecated since version 2.5.0, to be removed in 3.0. Use the command
* "composer drupal:scaffold" instead.
*/
public static function scaffold(Event $event) {
@trigger_error('\DrupalComposer\DrupalScaffold\Plugin::scaffold is deprecated since version 2.5.0 and will be removed in 3.0. Use "composer drupal:scaffold" instead.', E_USER_DEPRECATED);
$handler = new Handler($event->getComposer(), $event->getIO());
$handler->downloadScaffold();
// Generate the autoload.php file after generating the scaffold files.
$handler->generateAutoload();
}
}