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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
//! ref: composer/src/Composer/Installer/PluginInstaller.php
use crate::composer::PartialComposerWeakHandle;
use crate::installer::BinaryInstaller;
use crate::installer::InstallerInterface;
use crate::installer::LibraryInstaller;
use crate::io::IOInterface;
use crate::package::PackageInterface;
use crate::plugin::PluginManager;
use crate::repository::InstalledRepositoryInterface;
use crate::util::Filesystem;
use crate::util::Platform;
use anyhow::Result;
use shirabe_php_shim::{LogicException, PhpMixed, UnexpectedValueException, empty};
#[derive(Debug)]
pub struct PluginInstaller {
inner: LibraryInstaller,
}
impl PluginInstaller {
pub fn new(
io: Box<dyn IOInterface>,
composer: PartialComposerWeakHandle,
fs: Option<std::rc::Rc<std::cell::RefCell<Filesystem>>>,
binary_installer: Option<BinaryInstaller>,
) -> Self {
Self {
inner: LibraryInstaller::new(
io,
composer,
Some("composer-plugin".to_string()),
fs,
binary_installer,
),
}
}
pub fn disable_plugins(&mut self) {
// TODO(plugin): disable plugins via plugin manager
self.get_plugin_manager().borrow_mut().disable_plugins();
}
async fn rollback_install(
&mut self,
e: anyhow::Error,
repo: &mut dyn InstalledRepositoryInterface,
package: &dyn PackageInterface,
) -> Result<()> {
self.inner.io.write_error(&format!(
"Plugin initialization failed ({}), uninstalling plugin",
e
));
self.inner.uninstall(repo, package).await?;
Err(e)
}
fn get_plugin_manager(&self) -> std::rc::Rc<std::cell::RefCell<PluginManager>> {
// TODO(plugin): PartialComposer does not expose PluginManager; revisit when wiring plugin support
todo!("PartialComposer.get_plugin_manager")
}
}
#[async_trait::async_trait(?Send)]
impl InstallerInterface for PluginInstaller {
fn supports(&self, package_type: &str) -> bool {
package_type == "composer-plugin" || package_type == "composer-installer"
}
fn is_installed(
&self,
repo: &dyn InstalledRepositoryInterface,
package: &dyn PackageInterface,
) -> bool {
self.inner.is_installed(repo, package)
}
async fn prepare(
&self,
r#type: &str,
package: &dyn PackageInterface,
prev_package: Option<&dyn PackageInterface>,
) -> Result<Option<PhpMixed>> {
if (r#type == "install" || r#type == "update")
&& !self
.get_plugin_manager()
.borrow()
.are_plugins_disabled("local")
{
let plugin_optional = package
.get_extra()
.get("plugin-optional")
.map(|v| matches!(v, PhpMixed::Bool(true)))
.unwrap_or(false);
// TODO(plugin): check if plugin is allowed
// TODO(phase-b): is_plugin_allowed needs &mut PluginManager but prepare is &self.
let _ = plugin_optional;
}
self.inner.prepare(r#type, package, prev_package).await
}
async fn download(
&self,
package: &dyn PackageInterface,
prev_package: Option<&dyn PackageInterface>,
) -> Result<Option<PhpMixed>> {
let extra = package.get_extra();
let class = extra.get("class").cloned().unwrap_or(PhpMixed::Null);
if empty(&class) {
return Err(UnexpectedValueException {
message: format!(
"Error while installing {}, composer-plugin packages should have a class defined in their extra key to be usable.",
package.get_pretty_name()
),
code: 0,
}.into());
}
self.inner.download(package, prev_package).await
}
async fn install(
&mut self,
repo: &mut dyn InstalledRepositoryInterface,
package: &dyn PackageInterface,
) -> Result<Option<PhpMixed>> {
self.inner.install(repo, package).await?;
// TODO(plugin): register package in plugin manager after install, rollback on failure
Platform::workaround_filesystem_issues();
// self.get_plugin_manager().register_package(package, true)?;
// On error: self.rollback_install(e, repo, package)?;
Ok(None)
}
async fn update(
&mut self,
repo: &mut dyn InstalledRepositoryInterface,
initial: &dyn PackageInterface,
target: &dyn PackageInterface,
) -> Result<Option<PhpMixed>> {
self.inner.update(repo, initial, target).await?;
// TODO(plugin): deactivate initial and register target in plugin manager after update, rollback on failure
Platform::workaround_filesystem_issues();
// self.get_plugin_manager().deactivate_package(initial);
// self.get_plugin_manager().register_package(target, true)?;
// On error: self.rollback_install(e, repo, target)?;
Ok(None)
}
async fn uninstall(
&mut self,
repo: &mut dyn InstalledRepositoryInterface,
package: &dyn PackageInterface,
) -> Result<Option<PhpMixed>> {
// TODO(plugin): uninstall package from plugin manager
self.get_plugin_manager()
.borrow_mut()
.uninstall_package(package);
self.inner.uninstall(repo, package).await
}
async fn cleanup(
&self,
r#type: &str,
package: &dyn PackageInterface,
prev_package: Option<&dyn PackageInterface>,
) -> Result<Option<PhpMixed>> {
self.inner.cleanup(r#type, package, prev_package).await
}
fn get_install_path(&self, package: &dyn PackageInterface) -> Option<String> {
self.inner.get_install_path(package)
}
}
|