steamguard-cli/steamguard/src/lib.rs

116 lines
2.9 KiB
Rust
Raw Normal View History

use crate::token::TwoFactorSecret;
use accountlinker::RemoveAuthenticatorError;
pub use accountlinker::{AccountLinkError, AccountLinker, FinalizeLinkError};
pub use confirmation::*;
pub use qrapprover::{QrApprover, QrApproverError};
2022-06-19 14:44:18 -04:00
pub use secrecy::{ExposeSecret, SecretString};
2021-08-01 12:43:18 +00:00
use serde::{Deserialize, Serialize};
use std::io::Read;
use token::Tokens;
use transport::{Transport, TransportError};
pub use userlogin::{DeviceDetails, LoginError, UserLogin};
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate anyhow;
extern crate maplit;
pub mod accountlinker;
2022-12-06 10:02:07 -05:00
mod api_responses;
mod confirmation;
pub mod phonelinker;
pub mod protobufs;
mod qrapprover;
pub mod refresher;
2022-06-19 14:44:18 -04:00
mod secret_string;
2021-08-01 12:43:18 +00:00
pub mod steamapi;
pub mod token;
pub mod transport;
pub mod userlogin;
2021-03-21 21:21:29 -04:00
extern crate base64;
2021-03-30 15:51:26 -04:00
extern crate cookie;
2021-03-21 21:21:29 -04:00
2021-03-27 12:14:34 -04:00
#[derive(Debug, Clone, Serialize, Deserialize)]
2021-03-21 21:21:29 -04:00
pub struct SteamGuardAccount {
2021-08-08 12:54:46 -04:00
pub account_name: String,
pub steam_id: u64,
2021-08-08 12:54:46 -04:00
pub serial_number: String,
#[serde(with = "secret_string")]
pub revocation_code: SecretString,
pub shared_secret: TwoFactorSecret,
2021-08-08 12:54:46 -04:00
pub token_gid: String,
#[serde(with = "secret_string")]
pub identity_secret: SecretString,
#[serde(with = "secret_string")]
pub uri: SecretString,
2021-08-08 12:54:46 -04:00
pub device_id: String,
#[serde(with = "secret_string")]
pub secret_1: SecretString,
pub tokens: Option<Tokens>,
2021-03-21 21:21:29 -04:00
}
impl Default for SteamGuardAccount {
fn default() -> Self {
Self {
2021-08-08 12:54:46 -04:00
account_name: String::from(""),
steam_id: 0,
2021-08-08 12:54:46 -04:00
serial_number: String::from(""),
revocation_code: String::from("").into(),
shared_secret: TwoFactorSecret::new(),
2021-08-08 12:54:46 -04:00
token_gid: String::from(""),
identity_secret: String::from("").into(),
uri: String::from("").into(),
2021-08-08 12:54:46 -04:00
device_id: String::from(""),
secret_1: String::from("").into(),
tokens: None,
}
}
}
impl SteamGuardAccount {
pub fn new() -> Self {
Self::default()
2021-08-08 12:54:46 -04:00
}
pub fn from_reader<T>(r: T) -> anyhow::Result<Self>
where
T: Read,
{
Ok(serde_json::from_reader(r)?)
}
pub fn set_tokens(&mut self, tokens: Tokens) {
self.tokens = Some(tokens);
}
pub fn is_logged_in(&self) -> bool {
self.tokens.is_some()
}
pub fn generate_code(&self, time: u64) -> String {
self.shared_secret.generate_code(time)
2021-08-08 12:54:46 -04:00
}
2021-08-11 19:39:29 -04:00
/// Removes the mobile authenticator from the steam account. If this operation succeeds, this object can no longer be considered valid.
/// Returns whether or not the operation was successful.
///
/// A convenience method for [`AccountLinker::remove_authenticator`].
pub fn remove_authenticator(
&self,
transport: impl Transport,
revocation_code: Option<&String>,
) -> Result<(), RemoveAuthenticatorError> {
let Some(tokens) = &self.tokens else {
return Err(RemoveAuthenticatorError::TransportError(
TransportError::Unauthorized,
));
2021-08-08 12:54:46 -04:00
};
let revocation_code =
Some(revocation_code.unwrap_or_else(|| self.revocation_code.expose_secret()));
let linker = AccountLinker::new(transport, tokens.clone());
linker.remove_authenticator(revocation_code)
2021-08-08 12:54:46 -04:00
}
}