-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEXT-37318 - copy default profiles from executable #4
Merged
LarsKemper
merged 4 commits into
main
from
next-37318/copy-default-profiles-from-executable
Jul 29, 2024
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -6,6 +6,7 @@ use crate::data::{export, import, prepare_scripting_environment, ScriptingEnviro | |||||||||||||||||||||||||||||||||||||||
use anyhow::Context; | ||||||||||||||||||||||||||||||||||||||||
use clap::Parser; | ||||||||||||||||||||||||||||||||||||||||
use std::collections::HashSet; | ||||||||||||||||||||||||||||||||||||||||
use std::fs; | ||||||||||||||||||||||||||||||||||||||||
use std::path::PathBuf; | ||||||||||||||||||||||||||||||||||||||||
use std::sync::Arc; | ||||||||||||||||||||||||||||||||||||||||
use std::time::Instant; | ||||||||||||||||||||||||||||||||||||||||
|
@@ -15,6 +16,25 @@ mod cli; | |||||||||||||||||||||||||||||||||||||||
mod config_file; | ||||||||||||||||||||||||||||||||||||||||
mod data; | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
const PROFILES: &[(&str, &str)] = &[ | ||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||
"manufacturer.yaml", | ||||||||||||||||||||||||||||||||||||||||
include_str!("../profiles/manufacturer.yaml"), | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||
"product_required.yaml", | ||||||||||||||||||||||||||||||||||||||||
include_str!("../profiles/product_required.yaml"), | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||
"product_variants.yaml", | ||||||||||||||||||||||||||||||||||||||||
include_str!("../profiles/product_variants.yaml"), | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
( | ||||||||||||||||||||||||||||||||||||||||
"product_with_manufacturer.yaml", | ||||||||||||||||||||||||||||||||||||||||
include_str!("../profiles/product_with_manufacturer.yaml"), | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#[derive(Debug)] | ||||||||||||||||||||||||||||||||||||||||
pub struct SyncContext { | ||||||||||||||||||||||||||||||||||||||||
pub sw_client: SwClient, | ||||||||||||||||||||||||||||||||||||||||
|
@@ -37,6 +57,9 @@ async fn main() -> anyhow::Result<()> { | |||||||||||||||||||||||||||||||||||||||
index(skip).await?; | ||||||||||||||||||||||||||||||||||||||||
println!("Successfully triggered indexing."); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Commands::CopyProfiles { force, list, path } => { | ||||||||||||||||||||||||||||||||||||||||
copy_profiles(force, list, path); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Commands::Auth { domain, id, secret } => { | ||||||||||||||||||||||||||||||||||||||||
auth(domain, id, secret).await?; | ||||||||||||||||||||||||||||||||||||||||
println!("Successfully authenticated. You can continue with other commands now.") | ||||||||||||||||||||||||||||||||||||||||
|
@@ -90,6 +113,50 @@ async fn index(skip: Vec<String>) -> anyhow::Result<()> { | |||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
pub fn copy_profiles(force: bool, list: bool, path: Option<PathBuf>) { | ||||||||||||||||||||||||||||||||||||||||
if list { | ||||||||||||||||||||||||||||||||||||||||
println!("Available profiles:"); | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
for profile in PROFILES { | ||||||||||||||||||||||||||||||||||||||||
println!("- {}", profile.0); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
let mut dir_path = PathBuf::from("./profiles"); | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if path.is_some() { | ||||||||||||||||||||||||||||||||||||||||
let path = path.unwrap(); | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if !path.is_dir() && !force { | ||||||||||||||||||||||||||||||||||||||||
eprintln!("Path is not a directory: {:?}", path); | ||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
dir_path = path; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+127
to
+138
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A little more idomatic rust 🤓
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if let Err(e) = fs::create_dir_all(&dir_path) { | ||||||||||||||||||||||||||||||||||||||||
eprintln!("Failed to create directory: {}", e); | ||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
for (name, content) in PROFILES { | ||||||||||||||||||||||||||||||||||||||||
let dest_path = dir_path.join(name); | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if dest_path.exists() && !force { | ||||||||||||||||||||||||||||||||||||||||
eprintln!("File {} already exists. Use --force to overwrite.", name); | ||||||||||||||||||||||||||||||||||||||||
continue; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
match fs::write(&dest_path, content) { | ||||||||||||||||||||||||||||||||||||||||
Ok(_) => println!("Copied profile: {} -> {:?}", name, dest_path), | ||||||||||||||||||||||||||||||||||||||||
Err(e) => eprintln!("Failed to write file {}: {}", name, e), | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
async fn auth(domain: String, id: String, secret: String) -> anyhow::Result<()> { | ||||||||||||||||||||||||||||||||||||||||
let credentials = Credentials { | ||||||||||||||||||||||||||||||||||||||||
base_url: domain.trim_end_matches('/').to_string(), | ||||||||||||||||||||||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want to try to write a unit test that ensures that all files in
./profiles
folder are actually defined in this array?https://doc.rust-lang.org/book/ch11-01-writing-tests.html
You could also extend it to parse these profiles and see if that produces errors.
If you don't, that's also fine and I try to cover it together with my "test coverage" ticket 🙂