modified: .gitignore

modified:   src/main.rs
This commit is contained in:
Michael Wain 2025-02-04 18:06:31 +03:00
parent 2a569f96e7
commit 41a78013f1
2 changed files with 39 additions and 14 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target
output.json

View File

@ -1,17 +1,17 @@
use std::{collections::HashMap, error::Error};
use std::{collections::HashMap, error::Error, fmt::format, fs::File, io::Write};
use regex::Regex;
use reqwest::header::{HOST, ORIGIN, REFERER, USER_AGENT};
const CHROME_USER_AGENT: &str = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36";
const SOUNDCLOUD_API_DOMAIN: &str = "api-v2.soundcloud.com";
const SOUNDCLOUD_DOMAIN: &str = "https://soundcloud.com";
/*
[lib]
crate-type = ["staticlib", "cdylib", "lib"]
*/
// https://soundcloud.com/soundcloud regex: "<script crossorigin src=\"" search for client_id inside of script
// https://soundcloud.com/versions.json
// version: 1738322252
// likes: https://api-v2.soundcloud.com/users/774639751/likes?client_id=zFEmsF1cEZZQ92nRRXKOg7e6ibFR1L7c&limit=10&offset=0&linked_partitioning=1&app_version=1734537250&app_locale=en
// playlists: https://api-v2.soundcloud.com/users/774639751/playlists_without_albums?client_id=zFEmsF1cEZZQ92nRRXKOg7e6ibFR1L7c&limit=10&offset=0&linked_partitioning=1&app_version=1734537250&app_locale=en
@ -22,12 +22,17 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client_id = get_client_id().await.unwrap().unwrap();
let user_id: u64 = 774639751;
println!("Likes: {}", get_likes(user_id, client_id, app_version).await.unwrap().unwrap());
let mut file = File::create("output.json").unwrap();
file.write(get_playlists(user_id, client_id, app_version).await.unwrap().unwrap().as_bytes())?;
Ok(())
}
async fn get_likes(user_id: u64, client_id: String, app_version: String) -> Result<Option<String>, Box<dyn Error>> {
let resp = reqwest::get(format!("https://api-v2.soundcloud.com/users/{}/likes?client_id={}&limit=10&offset=0&linked_partitioning=1&app_version={}&app_locale=en", user_id, client_id, app_version) )
let client = reqwest::Client::new();
let resp = client.get(format!("https://{}/users/{}/likes?client_id={}&limit=10&offset=0&linked_partitioning=1&app_version={}&app_locale=en", SOUNDCLOUD_API_DOMAIN, user_id, client_id, app_version) )
.header(USER_AGENT, CHROME_USER_AGENT)
.send()
.await?
.text()
.await?;
@ -35,16 +40,31 @@ async fn get_likes(user_id: u64, client_id: String, app_version: String) -> Resu
Ok(Some(resp))
}
/*async fn get_playlists() -> Result<Option<String>, Box<dyn Error>> {
}*/
async fn get_playlists(user_id: u64, client_id: String, app_version: String) -> Result<Option<String>, Box<dyn Error>> {
let client = reqwest::Client::new();
async fn get_app() -> Result<Option<String>, Box<dyn Error>> {
let resp = reqwest::get("https://soundcloud.com/versions.json")
let resp = client.get(format!("https://{}/users/{}/playlists_without_albums?client_id={}&limit=10&offset=0&linked_partitioning=1&app_version={}&app_locale=en", SOUNDCLOUD_API_DOMAIN, user_id, client_id, app_version))
.header(USER_AGENT, CHROME_USER_AGENT)
.send()
.await?
.text()
.await?;
Ok(Some(resp))
}
async fn get_app() -> Result<Option<String>, Box<dyn Error>> {
let client = reqwest::Client::new();
let resp = client.get(format!("{}/versions.json", SOUNDCLOUD_DOMAIN))
.header(USER_AGENT, CHROME_USER_AGENT)
.send()
.await?
.text()
.await?;
println!("Resp: {}", resp);
let json: serde_json::Value = serde_json::from_str(&resp).expect("JSON was not well-formatted");
Ok(
@ -59,7 +79,11 @@ async fn get_app() -> Result<Option<String>, Box<dyn Error>> {
}
async fn get_client_id() -> Result<Option<String>, Box<dyn Error>> {
let resp = reqwest::get("https://soundcloud.com/soundcloud")
let client = reqwest::Client::new();
let resp = client.get(format!("{}/soundcloud", SOUNDCLOUD_DOMAIN))
.header(USER_AGENT, CHROME_USER_AGENT)
.send()
.await?
.text()
.await?;