Skip to content

Commit

Permalink
fix: Cleanup temporary file after feeding auth data
Browse files Browse the repository at this point in the history
Related: #366
  • Loading branch information
yuezk committed Jun 11, 2024
1 parent a25b5cb commit 54d4f2e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
7 changes: 6 additions & 1 deletion apps/gpclient/src/launch_gui.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{collections::HashMap, fs, path::PathBuf};
use std::{collections::HashMap, env::temp_dir, fs, path::PathBuf};

use clap::Args;
use directories::ProjectDirs;
Expand Down Expand Up @@ -82,6 +82,11 @@ impl<'a> LaunchGuiHandler<'a> {

async fn feed_auth_data(auth_data: &str) -> anyhow::Result<()> {
let _ = tokio::join!(feed_auth_data_gui(auth_data), feed_auth_data_cli(auth_data));

// Cleanup the temporary file
let html_file = temp_dir().join("gpauth.html");
let _ = std::fs::remove_file(html_file);

Ok(())
}

Expand Down
1 change: 1 addition & 0 deletions crates/gpapi/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ impl SamlAuthData {

let auth_data: SamlAuthData = serde_urlencoded::from_str(auth_data).map_err(|e| {
warn!("Failed to parse token auth data: {}", e);
warn!("Auth data: {}", auth_data);
AuthDataParseError::Invalid
})?;

Expand Down
25 changes: 15 additions & 10 deletions crates/gpapi/src/process/browser_authenticator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use std::{env::temp_dir, io::Write};
use std::{env::temp_dir, fs, io::Write, os::unix::fs::PermissionsExt};

use anyhow::bail;
use log::warn;

pub struct BrowserAuthenticator<'a> {
auth_request: &'a str,
Expand All @@ -14,8 +17,18 @@ impl BrowserAuthenticator<'_> {
open::that_detached(self.auth_request)?;
} else {
let html_file = temp_dir().join("gpauth.html");
let mut file = std::fs::File::create(&html_file)?;

// Remove the file and error if permission denied
if let Err(err) = fs::remove_file(&html_file) {
if err.kind() != std::io::ErrorKind::NotFound {
warn!("Failed to remove the temporary file: {}", err);
bail!("Please remove the file manually: {:?}", html_file);
}
}

let mut file = fs::File::create(&html_file)?;

file.set_permissions(fs::Permissions::from_mode(0o600))?;
file.write_all(self.auth_request.as_bytes())?;

open::that_detached(html_file)?;
Expand All @@ -24,11 +37,3 @@ impl BrowserAuthenticator<'_> {
Ok(())
}
}

impl Drop for BrowserAuthenticator<'_> {
fn drop(&mut self) {
// Cleanup the temporary file
let html_file = temp_dir().join("gpauth.html");
let _ = std::fs::remove_file(html_file);
}
}

0 comments on commit 54d4f2e

Please sign in to comment.