2019-12-05 18:04:27 +00:00
|
|
|
use super::{Context, Module, RootModuleConfig, SegmentConfig};
|
|
|
|
|
|
|
|
use crate::configs::php::PhpConfig;
|
2020-01-12 22:50:25 +00:00
|
|
|
use crate::utils;
|
2019-12-05 18:04:27 +00:00
|
|
|
|
|
|
|
/// Creates a module with the current PHP version
|
|
|
|
///
|
|
|
|
/// Will display the PHP version if any of the following criteria are met:
|
|
|
|
/// - Current directory contains a `.php` file
|
2020-04-03 19:02:28 +00:00
|
|
|
/// - Current directory contains a `composer.json` or `.php-version` file
|
2019-12-05 18:04:27 +00:00
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|
|
|
let is_php_project = context
|
|
|
|
.try_begin_scan()?
|
2020-04-03 19:02:28 +00:00
|
|
|
.set_files(&["composer.json", ".php-version"])
|
2019-12-05 18:04:27 +00:00
|
|
|
.set_extensions(&["php"])
|
|
|
|
.is_match();
|
|
|
|
|
|
|
|
if !is_php_project {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2020-01-12 22:50:25 +00:00
|
|
|
match utils::exec_cmd(
|
|
|
|
"php",
|
|
|
|
&[
|
2020-06-12 23:04:53 +00:00
|
|
|
"-nr",
|
2020-01-12 22:50:25 +00:00
|
|
|
"echo PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION.'.'.PHP_RELEASE_VERSION;",
|
|
|
|
],
|
|
|
|
) {
|
|
|
|
Some(php_cmd_output) => {
|
|
|
|
let php_version = php_cmd_output.stdout;
|
|
|
|
|
2019-12-05 18:04:27 +00:00
|
|
|
let mut module = context.new_module("php");
|
|
|
|
let config: PhpConfig = PhpConfig::try_load(module.config);
|
|
|
|
|
|
|
|
module.set_style(config.style);
|
|
|
|
|
|
|
|
let formatted_version = format_php_version(&php_version)?;
|
|
|
|
module.create_segment("symbol", &config.symbol);
|
|
|
|
module.create_segment("version", &SegmentConfig::new(&formatted_version));
|
|
|
|
|
|
|
|
Some(module)
|
|
|
|
}
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn format_php_version(php_version: &str) -> Option<String> {
|
|
|
|
let mut formatted_version = String::with_capacity(php_version.len() + 1);
|
|
|
|
formatted_version.push('v');
|
|
|
|
formatted_version.push_str(php_version);
|
|
|
|
Some(formatted_version)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2020-02-21 16:52:39 +00:00
|
|
|
use crate::modules::utils::test::render_module;
|
|
|
|
use ansi_term::Color;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io;
|
2019-12-05 18:04:27 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_format_php_version() {
|
|
|
|
let input = "7.3.8";
|
|
|
|
assert_eq!(format_php_version(input), Some("v7.3.8".to_string()));
|
|
|
|
}
|
2020-02-21 16:52:39 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_without_php_files() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
|
2020-04-28 08:53:30 +00:00
|
|
|
let actual = render_module("php", dir.path(), None);
|
2020-02-21 16:52:39 +00:00
|
|
|
|
|
|
|
let expected = None;
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-21 16:52:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn folder_with_composer_file() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("composer.json"))?.sync_all()?;
|
|
|
|
|
2020-04-28 08:53:30 +00:00
|
|
|
let actual = render_module("php", dir.path(), None);
|
2020-02-21 16:52:39 +00:00
|
|
|
|
|
|
|
let expected = Some(format!(
|
|
|
|
"via {} ",
|
|
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8")
|
|
|
|
));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-21 16:52:39 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 19:02:28 +00:00
|
|
|
#[test]
|
|
|
|
fn folder_with_php_version() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join(".php-version"))?.sync_all()?;
|
|
|
|
|
2020-04-28 08:53:30 +00:00
|
|
|
let actual = render_module("php", dir.path(), None);
|
2020-04-03 19:02:28 +00:00
|
|
|
|
|
|
|
let expected = Some(format!(
|
|
|
|
"via {} ",
|
|
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8")
|
|
|
|
));
|
|
|
|
assert_eq!(expected, actual);
|
|
|
|
dir.close()
|
|
|
|
}
|
|
|
|
|
2020-02-21 16:52:39 +00:00
|
|
|
#[test]
|
|
|
|
fn folder_with_php_file() -> io::Result<()> {
|
|
|
|
let dir = tempfile::tempdir()?;
|
|
|
|
File::create(dir.path().join("any.php"))?.sync_all()?;
|
|
|
|
|
2020-04-28 08:53:30 +00:00
|
|
|
let actual = render_module("php", dir.path(), None);
|
2020-02-21 16:52:39 +00:00
|
|
|
|
|
|
|
let expected = Some(format!(
|
|
|
|
"via {} ",
|
|
|
|
Color::Fixed(147).bold().paint("🐘 v7.3.8")
|
|
|
|
));
|
|
|
|
assert_eq!(expected, actual);
|
2020-03-15 17:12:25 +00:00
|
|
|
dir.close()
|
2020-02-21 16:52:39 +00:00
|
|
|
}
|
2019-12-05 18:04:27 +00:00
|
|
|
}
|