feat(wuwa): removed sessions manager

Game doesn't have login sessions at all lmao
This commit is contained in:
Nikita Podvirnyi 2024-06-28 23:55:59 +02:00
parent cf97861f7a
commit 1194366bd1
No known key found for this signature in database
GPG key ID: 859D416E5142AFF3
3 changed files with 0 additions and 114 deletions

View file

@ -18,12 +18,6 @@ use crate::wuwa::consts;
#[cfg(feature = "discord-rpc")] #[cfg(feature = "discord-rpc")]
use crate::discord_rpc::*; use crate::discord_rpc::*;
#[cfg(feature = "sessions")]
use crate::{
sessions::SessionsExt,
wuwa::sessions::Sessions
};
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
struct Folders { struct Folders {
pub wine: PathBuf, pub wine: PathBuf,
@ -216,11 +210,6 @@ pub fn run() -> anyhow::Result<()> {
command.envs(&config.game.environment); command.envs(&config.game.environment);
#[cfg(feature = "sessions")]
if let Some(current) = Sessions::get_current()? {
Sessions::apply(current, config.get_wine_prefix_path())?;
}
// Run command // Run command
let variables = command let variables = command
@ -268,10 +257,5 @@ pub fn run() -> anyhow::Result<()> {
rpc.update(RpcUpdates::Disconnect)?; rpc.update(RpcUpdates::Disconnect)?;
} }
#[cfg(feature = "sessions")]
if let Some(current) = Sessions::get_current()? {
Sessions::update(current, config.get_wine_prefix_path())?;
}
Ok(()) Ok(())
} }

View file

@ -8,6 +8,3 @@ pub mod states;
#[cfg(feature = "game")] #[cfg(feature = "game")]
pub mod game; pub mod game;
#[cfg(feature = "sessions")]
pub mod sessions;

View file

@ -1,95 +0,0 @@
use std::path::{Path, PathBuf};
use serde::{Serialize, Deserialize};
use crate::sessions::{
SessionsExt,
Sessions as SessionsDescriptor
};
use super::consts::launcher_dir;
/// Get default sessions file path
///
/// `$HOME/.local/share/wavey-launcher/sessions.json`
#[inline]
pub fn sessions_file() -> anyhow::Result<PathBuf> {
launcher_dir().map(|dir| dir.join("sessions.json"))
}
// FIXME: update registry entries names
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SessionData {
// [Software\\kurogame\\PGR]
pub game_reg: String
}
pub struct Sessions;
impl SessionsExt for Sessions {
type SessionData = SessionData;
fn get_sessions() -> anyhow::Result<SessionsDescriptor<Self::SessionData>> {
let path = sessions_file()?;
if !path.exists() {
tracing::warn!("Session file doesn't exist. Returning default value");
return Ok(SessionsDescriptor::default());
}
Ok(serde_json::from_slice(&std::fs::read(path)?)?)
}
fn set_sessions(sessions: SessionsDescriptor<Self::SessionData>) -> anyhow::Result<()> {
Ok(std::fs::write(sessions_file()?, serde_json::to_string_pretty(&sessions)?)?)
}
fn update(name: String, prefix: impl AsRef<Path>) -> anyhow::Result<()> {
let mut sessions = Self::get_sessions()?;
tracing::info!("Updating session '{name}' from prefix: {:?}", prefix.as_ref());
let mut new_session = Self::SessionData {
game_reg: String::new()
};
for entry in std::fs::read_to_string(prefix.as_ref().join("user.reg"))?.split("\n\n") {
if entry.starts_with("[Software\\\\kurogame\\\\PGR]") {
new_session.game_reg = entry.to_owned();
}
}
sessions.sessions.insert(name, new_session);
Self::set_sessions(sessions)
}
fn apply(name: String, prefix: impl AsRef<Path>) -> anyhow::Result<()> {
let sessions = Self::get_sessions()?;
let Some(session) = sessions.sessions.get(&name) else {
anyhow::bail!("Session with given name doesn't exist");
};
tracing::info!("Applying session '{name}' to prefix: {:?}", prefix.as_ref());
let entries: String = std::fs::read_to_string(prefix.as_ref().join("user.reg"))?
.split("\n\n")
.map(|entry| {
let new_entry = if entry.starts_with("[Software\\\\kurogame\\\\PGR]") {
session.game_reg.clone()
}
else {
entry.to_owned()
};
new_entry + "\n\n"
})
.collect();
Ok(std::fs::write(prefix.as_ref().join("user.reg"), format!("{}\n", entries.trim_end()))?)
}
}