forked from junaidbhura/composer-wp-pro-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstaller.php
133 lines (114 loc) · 3.38 KB
/
Installer.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* Composer Installer for Pro WordPress Plugins.
*
* @package Junaidbhura\Composer\WPProPlugins
*/
namespace Junaidbhura\Composer\WPProPlugins;
use Composer\Composer;
use Composer\EventDispatcher\EventSubscriberInterface;
use Composer\DependencyResolver\Operation\OperationInterface;
use Composer\IO\IOInterface;
use Composer\Plugin\PluginInterface;
use Composer\Installer\PackageEvent;
use Composer\Installer\PackageEvents;
use Composer\Plugin\PluginEvents;
use Composer\Plugin\PreFileDownloadEvent;
use Dotenv\Dotenv;
/**
* Custom Installer Class.
*/
class Installer implements PluginInterface, EventSubscriberInterface {
protected $composer;
protected $io;
protected $downloadUrl;
/**
* Activate plugin.
*
* @param Composer $composer
* @param IOInterface $io
*/
public function activate( Composer $composer, IOInterface $io ) {
$this->composer = $composer;
$this->io = $io;
if ( file_exists( getcwd() . DIRECTORY_SEPARATOR . '.env' ) ) {
$dotenv = Dotenv::create( getcwd() );
$dotenv->load();
}
}
/**
* Set subscribed events.
*
* @return array
*/
public static function getSubscribedEvents() {
return array(
PackageEvents::PRE_PACKAGE_INSTALL => 'getDownloadUrl',
PackageEvents::PRE_PACKAGE_UPDATE => 'getDownloadUrl',
PluginEvents::PRE_FILE_DOWNLOAD => 'onPreFileDownload',
);
}
/**
* Get package from operation.
*
* @param OperationInterface $operation
* @return mixed
*/
protected function getPackageFromOperation( OperationInterface $operation ) {
if ( 'update' === $operation->getJobType() ) {
return $operation->getTargetPackage();
}
return $operation->getPackage();
}
/**
* Get download URL for our plugins.
*
* @param PackageEvent $event
*/
public function getDownloadUrl( PackageEvent $event ) {
$this->downloadUrl = '';
$package = $this->getPackageFromOperation( $event->getOperation() );
$plugin = false;
$package_name = $package->getName();
switch ( $package_name ) {
case 'junaidbhura/advanced-custom-fields-pro':
$plugin = new Plugins\AcfPro( $package->getPrettyVersion() );
break;
case 'junaidbhura/polylang-pro':
$plugin = new Plugins\PolylangPro( $package->getPrettyVersion() );
break;
case 'junaidbhura/wp-all-import-pro':
case 'junaidbhura/wp-all-export-pro':
$plugin = new Plugins\WpAiPro( $package->getPrettyVersion(), str_replace( 'junaidbhura/', '', $package_name ) );
break;
default:
if ( 0 === strpos( $package_name, 'junaidbhura/gravityforms' ) ) {
$plugin = new Plugins\GravityForms( $package->getPrettyVersion(), str_replace( 'junaidbhura/', '', $package_name ) );
} elseif ( 0 === strpos( $package_name, 'junaidbhura/wpai-' ) ) {
$plugin = new Plugins\WpAiPro( $package->getPrettyVersion(), str_replace( 'junaidbhura/', '', $package_name ) );
}
}
if ( ! empty( $plugin ) ) {
$this->downloadUrl = $plugin->getDownloadUrl();
}
}
/**
* Process our plugin downloads.
*
* @param PreFileDownloadEvent $event
*/
public function onPreFileDownload( PreFileDownloadEvent $event ) {
if ( empty( $this->downloadUrl ) ) {
return;
}
$rfs = $event->getRemoteFilesystem();
$customRfs = new RemoteFilesystem(
$this->downloadUrl,
$this->io,
$this->composer->getConfig(),
$rfs->getOptions(),
$rfs->isTlsDisabled()
);
$event->setRemoteFilesystem( $customRfs );
}
}