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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
//! ref: composer/src/Composer/Repository/PathRepository.php
use indexmap::IndexMap;
use shirabe_external_packages::composer::pcre::preg::Preg;
use shirabe_php_shim::{
DIRECTORY_SEPARATOR, GLOB_BRACE, GLOB_MARK, GLOB_ONLYDIR, PhpMixed, RuntimeException, defined,
file_exists, file_get_contents, glob_with_flags, hash, realpath, serialize,
};
use crate::config::Config;
use crate::event_dispatcher::event_dispatcher::EventDispatcher;
use crate::io::io_interface::IOInterface;
use crate::json::json_file::JsonFile;
use crate::package::loader::array_loader::ArrayLoader;
use crate::package::loader::loader_interface::LoaderInterface;
use crate::package::version::version_guesser::VersionGuesser;
use crate::package::version::version_parser::VersionParser;
use crate::repository::array_repository::ArrayRepository;
use crate::repository::configurable_repository_interface::ConfigurableRepositoryInterface;
use crate::util::filesystem::Filesystem;
use crate::util::git::Git as GitUtil;
use crate::util::http_downloader::HttpDownloader;
use crate::util::platform::Platform;
use crate::util::process_executor::ProcessExecutor;
use crate::util::url::Url;
#[derive(Debug)]
pub struct PathRepository {
inner: ArrayRepository,
loader: ArrayLoader,
version_guesser: VersionGuesser,
url: String,
repo_config: IndexMap<String, PhpMixed>,
process: std::rc::Rc<std::cell::RefCell<ProcessExecutor>>,
options: IndexMap<String, PhpMixed>,
}
impl ConfigurableRepositoryInterface for PathRepository {
fn get_repo_config(&self) -> IndexMap<String, PhpMixed> {
self.repo_config.clone()
}
}
impl PathRepository {
pub fn new(
repo_config: IndexMap<String, PhpMixed>,
io: Box<dyn IOInterface>,
config: std::rc::Rc<std::cell::RefCell<Config>>,
http_downloader: Option<std::rc::Rc<std::cell::RefCell<HttpDownloader>>>,
dispatcher: Option<std::rc::Rc<std::cell::RefCell<EventDispatcher>>>,
process: Option<std::rc::Rc<std::cell::RefCell<ProcessExecutor>>>,
) -> anyhow::Result<Self> {
if !repo_config.contains_key("url") {
return Err(RuntimeException {
message: "You must specify the `url` configuration for the path repository"
.to_string(),
code: 0,
}
.into());
}
let url_str = repo_config
.get("url")
.and_then(|v| v.as_string())
.unwrap_or("")
.to_string();
let url = Platform::expand_path(&url_str);
let process = process.unwrap_or_else(|| {
std::rc::Rc::new(std::cell::RefCell::new(ProcessExecutor::new(Some(
io.clone_box(),
))))
});
let version_guesser = VersionGuesser::new(
config,
std::rc::Rc::clone(&process),
VersionParser::new(),
Some(io.clone_box()),
);
let mut options = repo_config
.get("options")
.and_then(|v| v.as_array())
.cloned()
.unwrap_or_default()
.into_iter()
.map(|(k, v)| (k, *v))
.collect::<IndexMap<String, PhpMixed>>();
if !options.contains_key("relative") {
let filesystem = Filesystem::new(None);
let is_relative = !filesystem.is_absolute_path(&url);
options.insert("relative".to_string(), PhpMixed::Bool(is_relative));
}
Ok(Self {
inner: ArrayRepository::new(vec![])?,
loader: ArrayLoader::new(None, true),
version_guesser,
url,
repo_config,
process,
options,
})
}
pub fn get_repo_name(&self) -> String {
format!(
"path repo ({})",
Url::sanitize(
self.repo_config
.get("url")
.and_then(|v| v.as_string())
.unwrap_or("")
.to_string()
)
)
}
pub(crate) fn initialize(&mut self) -> anyhow::Result<()> {
self.inner.initialize();
let url_matches = self.get_url_matches()?;
if url_matches.is_empty() {
if Preg::is_match(r"{[*{}]}", &self.url).unwrap_or(false) {
let mut url = self.url.clone();
while Preg::is_match(r"{[*{}]}", &url).unwrap_or(false) {
url = shirabe_php_shim::dirname(&url);
}
// the parent directory before any wildcard exists, so we assume it is correctly configured but simply empty
if shirabe_php_shim::is_dir(&url) {
return Ok(());
}
}
return Err(RuntimeException {
message: format!(
"The `url` supplied for the path ({}) repository does not exist",
self.url
),
code: 0,
}
.into());
}
for url in url_matches {
let path = format!("{}/", realpath(&url).unwrap_or_default());
let composer_file_path = format!("{}composer.json", path);
if !file_exists(&composer_file_path) {
continue;
}
let json = file_get_contents(&composer_file_path).unwrap_or_default();
let parsed = JsonFile::parse_json(Some(&json), Some(&composer_file_path))?;
let mut package: IndexMap<String, PhpMixed> = match parsed {
PhpMixed::Array(m) => m.into_iter().map(|(k, v)| (k, *v)).collect(),
_ => IndexMap::new(),
};
let dist = {
let mut dist = IndexMap::new();
dist.insert(
"type".to_string(),
Box::new(PhpMixed::String("path".to_string())),
);
dist.insert("url".to_string(), Box::new(PhpMixed::String(url.clone())));
dist
};
package.insert("dist".to_string(), PhpMixed::Array(dist));
let reference = self
.options
.get("reference")
.and_then(|v| v.as_string())
.unwrap_or("auto")
.to_string();
if reference == "none" {
if let Some(PhpMixed::Array(dist)) = package.get_mut("dist") {
dist.insert("reference".to_string(), Box::new(PhpMixed::Null));
}
} else if reference == "config" || reference == "auto" {
let options_mixed = PhpMixed::Array(
self.options
.iter()
.map(|(k, v)| (k.clone(), Box::new(v.clone())))
.collect(),
);
let ref_hash = hash("sha1", &format!("{}{}", json, serialize(&options_mixed)));
if let Some(PhpMixed::Array(dist)) = package.get_mut("dist") {
dist.insert(
"reference".to_string(),
Box::new(PhpMixed::String(ref_hash)),
);
}
}
// copy symlink/relative options to transport options
let transport_options: IndexMap<String, Box<PhpMixed>> = self
.options
.iter()
.filter(|(k, _)| k.as_str() == "symlink" || k.as_str() == "relative")
.map(|(k, v)| (k.clone(), Box::new(v.clone())))
.collect();
package.insert(
"transport-options".to_string(),
PhpMixed::Array(transport_options),
);
// use the version provided as option if available
if let Some(name) = package
.get("name")
.and_then(|v| v.as_string())
.map(|s| s.to_string())
{
if let Some(version) = self
.options
.get("versions")
.and_then(|v| v.as_array())
.and_then(|a| a.get(&name))
.and_then(|v| v.as_string())
.map(|s| s.to_string())
{
package.insert("version".to_string(), PhpMixed::String(version));
}
}
// carry over the root package version if this path repo is in the same git repository as root package
if !package.contains_key("version") {
if let Some(root_version) = Platform::get_env("COMPOSER_ROOT_VERSION") {
if !root_version.is_empty() {
let mut ref1 = PhpMixed::Null;
let mut ref2 = PhpMixed::Null;
let cmd = PhpMixed::from(vec!["git", "rev-parse", "HEAD"]);
let code1 = self
.process
.borrow_mut()
.execute(cmd.clone(), Some(&mut ref1), Some(path.as_str()))
.unwrap_or(1);
let code2 = self
.process
.borrow_mut()
.execute(cmd, Some(&mut ref2), ())
.unwrap_or(1);
if code1 == 0 && code2 == 0 && ref1.as_string() == ref2.as_string() {
package.insert(
"version".to_string(),
PhpMixed::String(self.version_guesser.get_root_version_from_env()?),
);
}
}
}
}
let mut output = PhpMixed::Null;
let command = GitUtil::build_rev_list_command(&self.process, {
let mut args = vec![
"-n1".to_string(),
"--format=%H".to_string(),
"HEAD".to_string(),
];
args.extend(GitUtil::get_no_show_signature_flags(&self.process));
args
});
if reference == "auto"
&& shirabe_php_shim::is_dir(&format!("{}/.git", path.trim_end_matches('/')))
&& self
.process
.borrow_mut()
.execute(
PhpMixed::from(command),
Some(&mut output),
Some(path.as_str()),
)
.unwrap_or(1)
== 0
{
let output_str = output.as_string().unwrap_or("").to_string();
let ref_val = GitUtil::parse_rev_list_output(&output_str, &self.process)
.trim()
.to_string();
if let Some(PhpMixed::Array(dist)) = package.get_mut("dist") {
dist.insert("reference".to_string(), Box::new(PhpMixed::String(ref_val)));
}
}
if !package.contains_key("version") {
let version_data = self.version_guesser.guess_version(&package, &path)?;
if let Some(version_data) = version_data {
if let Some(pretty_version) = version_data
.pretty_version
.as_ref()
.filter(|s| !s.is_empty())
.cloned()
{
// if there is a feature branch detected, we add a second package with the feature branch version
if let Some(feature_pretty_version) = version_data
.feature_pretty_version
.as_ref()
.filter(|s| !s.is_empty())
.cloned()
{
package.insert(
"version".to_string(),
PhpMixed::String(feature_pretty_version),
);
self.inner
.add_package(self.loader.load(package.clone(), None)?);
}
package.insert("version".to_string(), PhpMixed::String(pretty_version));
} else {
package.insert(
"version".to_string(),
PhpMixed::String("dev-main".to_string()),
);
}
} else {
package.insert(
"version".to_string(),
PhpMixed::String("dev-main".to_string()),
);
}
}
self.inner
.add_package(self.loader.load(package.clone(), None).map_err(|e| {
RuntimeException {
message: format!("Failed loading the package in {}", composer_file_path),
code: 0,
}
})?);
}
Ok(())
}
fn get_url_matches(&self) -> anyhow::Result<Vec<String>> {
let mut flags = GLOB_MARK | GLOB_ONLYDIR;
if defined("GLOB_BRACE") {
flags |= GLOB_BRACE;
} else if self.url.contains('{') || self.url.contains('}') {
return Err(RuntimeException {
message: format!(
"The operating system does not support GLOB_BRACE which is required for the url {}",
self.url
),
code: 0,
}
.into());
}
// Ensure environment-specific path separators are normalized to URL separators
Ok(glob_with_flags(&self.url, flags)
.into_iter()
.map(|val| {
val.replace(DIRECTORY_SEPARATOR, "/")
.trim_end_matches('/')
.to_string()
})
.collect())
}
}
|