* Add launcher_feature_version to Profile * Misc fixes - Add typing to theme and settings stuff - Push instance route on creation from installing a modpack - Fixed servers not reloading properly when first added * Make old instances scan the logs folder for joined servers on launcher startup * Create AttachedWorldData * Change AttachedWorldData interface * Rename WorldType::World to WorldType::Singleplayer * Implement world display status system * Fix Minecraft font * Fix set_world_display_status Tauri error * Add 'Play instance' option * Add option to disable worlds showing in Home * Fixes - Fix available server filter only showing if there are some available - Fixed server and singleplayer filters sometimes showing when there are only servers or singleplayer worlds - Fixed new worlds not being automatically added when detected - Rephrased Jump back into worlds option description * Fixed sometimes more than 6 items showing up in Jump back in * Fix servers.dat issue with instances you haven't played before * Fix too large of bulk requests being made, limit max to 800 #3430 * Add hiding from home page, add types to Mods.vue * Make recent worlds go into grid when display is huge * Fix lint * Remove redundant media query * Fix protocol version on home page, and home page being blocked by pinging servers * Clippy fix * More Clippy fixes * Fix Prettier lints * Undo `from_string` changes --------- Co-authored-by: Josiah Glosson <soujournme@gmail.com> Co-authored-by: Alejandro González <me@alegon.dev>
640 lines
18 KiB
Rust
640 lines
18 KiB
Rust
use std::collections::HashMap;
|
|
|
|
use actix_http::StatusCode;
|
|
use actix_web::{
|
|
dev::ServiceResponse,
|
|
test::{self, TestRequest},
|
|
};
|
|
use async_trait::async_trait;
|
|
use bytes::Bytes;
|
|
use chrono::{DateTime, Utc};
|
|
use labrinth::{
|
|
models::{organizations::Organization, projects::Project},
|
|
search::SearchResults,
|
|
util::actix::AppendsMultipart,
|
|
};
|
|
use rust_decimal::Decimal;
|
|
use serde_json::json;
|
|
|
|
use crate::{
|
|
assert_status,
|
|
common::{
|
|
api_common::{
|
|
models::{CommonItemType, CommonProject, CommonVersion},
|
|
request_data::{ImageData, ProjectCreationRequestData},
|
|
Api, ApiProject, AppendsOptionalPat,
|
|
},
|
|
database::MOD_USER_PAT,
|
|
dummy_data::TestFile,
|
|
},
|
|
};
|
|
|
|
use super::{
|
|
request_data::{self, get_public_project_creation_data},
|
|
ApiV3,
|
|
};
|
|
|
|
#[async_trait(?Send)]
|
|
impl ApiProject for ApiV3 {
|
|
async fn add_public_project(
|
|
&self,
|
|
slug: &str,
|
|
version_jar: Option<TestFile>,
|
|
modify_json: Option<json_patch::Patch>,
|
|
pat: Option<&str>,
|
|
) -> (CommonProject, Vec<CommonVersion>) {
|
|
let creation_data =
|
|
get_public_project_creation_data(slug, version_jar, modify_json);
|
|
|
|
// Add a project.
|
|
let slug = creation_data.slug.clone();
|
|
let resp = self.create_project(creation_data, pat).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
|
|
// Approve as a moderator.
|
|
let req = TestRequest::patch()
|
|
.uri(&format!("/v3/project/{slug}"))
|
|
.append_pat(MOD_USER_PAT)
|
|
.set_json(json!(
|
|
{
|
|
"status": "approved"
|
|
}
|
|
))
|
|
.to_request();
|
|
let resp = self.call(req).await;
|
|
assert_status!(&resp, StatusCode::NO_CONTENT);
|
|
|
|
let project = self.get_project(&slug, pat).await;
|
|
let project = test::read_body_json(project).await;
|
|
|
|
// Get project's versions
|
|
let req = TestRequest::get()
|
|
.uri(&format!("/v3/project/{slug}/version"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
let resp = self.call(req).await;
|
|
let versions: Vec<CommonVersion> = test::read_body_json(resp).await;
|
|
|
|
(project, versions)
|
|
}
|
|
|
|
async fn get_public_project_creation_data_json(
|
|
&self,
|
|
slug: &str,
|
|
version_jar: Option<&TestFile>,
|
|
) -> serde_json::Value {
|
|
request_data::get_public_project_creation_data_json(slug, version_jar)
|
|
}
|
|
|
|
async fn create_project(
|
|
&self,
|
|
creation_data: ProjectCreationRequestData,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = TestRequest::post()
|
|
.uri("/v3/project")
|
|
.append_pat(pat)
|
|
.set_multipart(creation_data.segment_data)
|
|
.to_request();
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn remove_project(
|
|
&self,
|
|
project_slug_or_id: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::delete()
|
|
.uri(&format!("/v3/project/{project_slug_or_id}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_project(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = TestRequest::get()
|
|
.uri(&format!("/v3/project/{id_or_slug}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_project_deserialized_common(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> CommonProject {
|
|
let resp = self.get_project(id_or_slug, pat).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
// First, deserialize to the non-common format (to test the response is valid for this api version)
|
|
let project: Project = test::read_body_json(resp).await;
|
|
// Then, deserialize to the common format
|
|
let value = serde_json::to_value(project).unwrap();
|
|
serde_json::from_value(value).unwrap()
|
|
}
|
|
|
|
async fn get_projects(
|
|
&self,
|
|
ids_or_slugs: &[&str],
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let ids_or_slugs = serde_json::to_string(ids_or_slugs).unwrap();
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!(
|
|
"/v3/projects?ids={encoded}",
|
|
encoded = urlencoding::encode(&ids_or_slugs)
|
|
))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_project_dependencies(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = TestRequest::get()
|
|
.uri(&format!("/v3/project/{id_or_slug}/dependencies"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_user_projects(
|
|
&self,
|
|
user_id_or_username: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/user/{user_id_or_username}/projects"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_user_projects_deserialized_common(
|
|
&self,
|
|
user_id_or_username: &str,
|
|
pat: Option<&str>,
|
|
) -> Vec<CommonProject> {
|
|
let resp = self.get_user_projects(user_id_or_username, pat).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
// First, deserialize to the non-common format (to test the response is valid for this api version)
|
|
let projects: Vec<Project> = test::read_body_json(resp).await;
|
|
// Then, deserialize to the common format
|
|
let value = serde_json::to_value(projects).unwrap();
|
|
serde_json::from_value(value).unwrap()
|
|
}
|
|
|
|
async fn edit_project(
|
|
&self,
|
|
id_or_slug: &str,
|
|
patch: serde_json::Value,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::patch()
|
|
.uri(&format!("/v3/project/{id_or_slug}"))
|
|
.append_pat(pat)
|
|
.set_json(patch)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn edit_project_bulk(
|
|
&self,
|
|
ids_or_slugs: &[&str],
|
|
patch: serde_json::Value,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let projects_str = ids_or_slugs
|
|
.iter()
|
|
.map(|s| format!("\"{s}\""))
|
|
.collect::<Vec<_>>()
|
|
.join(",");
|
|
let req = test::TestRequest::patch()
|
|
.uri(&format!(
|
|
"/v3/projects?ids={encoded}",
|
|
encoded = urlencoding::encode(&format!("[{projects_str}]"))
|
|
))
|
|
.append_pat(pat)
|
|
.set_json(patch)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn edit_project_icon(
|
|
&self,
|
|
id_or_slug: &str,
|
|
icon: Option<ImageData>,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
if let Some(icon) = icon {
|
|
// If an icon is provided, upload it
|
|
let req = test::TestRequest::patch()
|
|
.uri(&format!(
|
|
"/v3/project/{id_or_slug}/icon?ext={ext}",
|
|
ext = icon.extension
|
|
))
|
|
.append_pat(pat)
|
|
.set_payload(Bytes::from(icon.icon))
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
} else {
|
|
// If no icon is provided, delete the icon
|
|
let req = test::TestRequest::delete()
|
|
.uri(&format!("/v3/project/{id_or_slug}/icon"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
}
|
|
|
|
async fn create_report(
|
|
&self,
|
|
report_type: &str,
|
|
id: &str,
|
|
item_type: CommonItemType,
|
|
body: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::post()
|
|
.uri("/v3/report")
|
|
.append_pat(pat)
|
|
.set_json(json!(
|
|
{
|
|
"report_type": report_type,
|
|
"item_id": id,
|
|
"item_type": item_type.as_str(),
|
|
"body": body,
|
|
}
|
|
))
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_report(&self, id: &str, pat: Option<&str>) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/report/{id}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_reports(
|
|
&self,
|
|
ids: &[&str],
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let ids_str = serde_json::to_string(ids).unwrap();
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!(
|
|
"/v3/reports?ids={encoded}",
|
|
encoded = urlencoding::encode(&ids_str)
|
|
))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_user_reports(&self, pat: Option<&str>) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri("/v3/report")
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn edit_report(
|
|
&self,
|
|
id: &str,
|
|
patch: serde_json::Value,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::patch()
|
|
.uri(&format!("/v3/report/{id}"))
|
|
.append_pat(pat)
|
|
.set_json(patch)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn delete_report(
|
|
&self,
|
|
id: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::delete()
|
|
.uri(&format!("/v3/report/{id}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
async fn add_gallery_item(
|
|
&self,
|
|
id_or_slug: &str,
|
|
image: ImageData,
|
|
featured: bool,
|
|
title: Option<String>,
|
|
description: Option<String>,
|
|
ordering: Option<i32>,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let mut url = format!(
|
|
"/v3/project/{id_or_slug}/gallery?ext={ext}&featured={featured}",
|
|
ext = image.extension,
|
|
featured = featured
|
|
);
|
|
if let Some(title) = title {
|
|
url.push_str(&format!("&title={title}"));
|
|
}
|
|
if let Some(description) = description {
|
|
url.push_str(&format!("&description={description}"));
|
|
}
|
|
if let Some(ordering) = ordering {
|
|
url.push_str(&format!("&ordering={ordering}"));
|
|
}
|
|
|
|
let req = test::TestRequest::post()
|
|
.uri(&url)
|
|
.append_pat(pat)
|
|
.set_payload(Bytes::from(image.icon))
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn edit_gallery_item(
|
|
&self,
|
|
id_or_slug: &str,
|
|
image_url: &str,
|
|
patch: HashMap<String, String>,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let mut url = format!(
|
|
"/v3/project/{id_or_slug}/gallery?url={image_url}",
|
|
image_url = urlencoding::encode(image_url)
|
|
);
|
|
|
|
for (key, value) in patch {
|
|
url.push_str(&format!(
|
|
"&{key}={value}",
|
|
key = key,
|
|
value = urlencoding::encode(&value)
|
|
));
|
|
}
|
|
|
|
let req = test::TestRequest::patch()
|
|
.uri(&url)
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn remove_gallery_item(
|
|
&self,
|
|
id_or_slug: &str,
|
|
url: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::delete()
|
|
.uri(&format!("/v3/project/{id_or_slug}/gallery?url={url}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_thread(&self, id: &str, pat: Option<&str>) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/thread/{id}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_threads(
|
|
&self,
|
|
ids: &[&str],
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let ids_str = serde_json::to_string(ids).unwrap();
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!(
|
|
"/v3/threads?ids={encoded}",
|
|
encoded = urlencoding::encode(&ids_str)
|
|
))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn write_to_thread(
|
|
&self,
|
|
id: &str,
|
|
r#type: &str,
|
|
content: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::post()
|
|
.uri(&format!("/v3/thread/{id}"))
|
|
.append_pat(pat)
|
|
.set_json(json!({
|
|
"body": {
|
|
"type": r#type,
|
|
"body": content
|
|
}
|
|
}))
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn get_moderation_inbox(&self, pat: Option<&str>) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri("/v3/thread/inbox")
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn read_thread(
|
|
&self,
|
|
id: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::post()
|
|
.uri(&format!("/v3/thread/{id}/read"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
async fn delete_thread_message(
|
|
&self,
|
|
id: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::delete()
|
|
.uri(&format!("/v3/message/{id}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
}
|
|
|
|
impl ApiV3 {
|
|
pub async fn get_project_deserialized(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> Project {
|
|
let resp = self.get_project(id_or_slug, pat).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
test::read_body_json(resp).await
|
|
}
|
|
|
|
pub async fn get_project_organization(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/project/{id_or_slug}/organization"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
pub async fn get_project_organization_deserialized(
|
|
&self,
|
|
id_or_slug: &str,
|
|
pat: Option<&str>,
|
|
) -> Organization {
|
|
let resp = self.get_project_organization(id_or_slug, pat).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
test::read_body_json(resp).await
|
|
}
|
|
|
|
pub async fn search_deserialized(
|
|
&self,
|
|
query: Option<&str>,
|
|
facets: Option<serde_json::Value>,
|
|
pat: Option<&str>,
|
|
) -> SearchResults {
|
|
let query_field = if let Some(query) = query {
|
|
format!("&query={}", urlencoding::encode(query))
|
|
} else {
|
|
"".to_string()
|
|
};
|
|
|
|
let facets_field = if let Some(facets) = facets {
|
|
format!("&facets={}", urlencoding::encode(&facets.to_string()))
|
|
} else {
|
|
"".to_string()
|
|
};
|
|
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/search?{query_field}{facets_field}"))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
let resp = self.call(req).await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
test::read_body_json(resp).await
|
|
}
|
|
|
|
pub async fn get_analytics_revenue(
|
|
&self,
|
|
id_or_slugs: Vec<&str>,
|
|
ids_are_version_ids: bool,
|
|
start_date: Option<DateTime<Utc>>,
|
|
end_date: Option<DateTime<Utc>>,
|
|
resolution_minutes: Option<u32>,
|
|
pat: Option<&str>,
|
|
) -> ServiceResponse {
|
|
let pv_string = if ids_are_version_ids {
|
|
let version_string: String =
|
|
serde_json::to_string(&id_or_slugs).unwrap();
|
|
let version_string = urlencoding::encode(&version_string);
|
|
format!("version_ids={version_string}")
|
|
} else {
|
|
let projects_string: String =
|
|
serde_json::to_string(&id_or_slugs).unwrap();
|
|
let projects_string = urlencoding::encode(&projects_string);
|
|
format!("project_ids={projects_string}")
|
|
};
|
|
|
|
let mut extra_args = String::new();
|
|
if let Some(start_date) = start_date {
|
|
let start_date = start_date.to_rfc3339();
|
|
// let start_date = serde_json::to_string(&start_date).unwrap();
|
|
let start_date = urlencoding::encode(&start_date);
|
|
extra_args.push_str(&format!("&start_date={start_date}"));
|
|
}
|
|
if let Some(end_date) = end_date {
|
|
let end_date = end_date.to_rfc3339();
|
|
// let end_date = serde_json::to_string(&end_date).unwrap();
|
|
let end_date = urlencoding::encode(&end_date);
|
|
extra_args.push_str(&format!("&end_date={end_date}"));
|
|
}
|
|
if let Some(resolution_minutes) = resolution_minutes {
|
|
extra_args
|
|
.push_str(&format!("&resolution_minutes={resolution_minutes}"));
|
|
}
|
|
|
|
let req = test::TestRequest::get()
|
|
.uri(&format!("/v3/analytics/revenue?{pv_string}{extra_args}",))
|
|
.append_pat(pat)
|
|
.to_request();
|
|
|
|
self.call(req).await
|
|
}
|
|
|
|
pub async fn get_analytics_revenue_deserialized(
|
|
&self,
|
|
id_or_slugs: Vec<&str>,
|
|
ids_are_version_ids: bool,
|
|
start_date: Option<DateTime<Utc>>,
|
|
end_date: Option<DateTime<Utc>>,
|
|
resolution_minutes: Option<u32>,
|
|
pat: Option<&str>,
|
|
) -> HashMap<String, HashMap<i64, Decimal>> {
|
|
let resp = self
|
|
.get_analytics_revenue(
|
|
id_or_slugs,
|
|
ids_are_version_ids,
|
|
start_date,
|
|
end_date,
|
|
resolution_minutes,
|
|
pat,
|
|
)
|
|
.await;
|
|
assert_status!(&resp, StatusCode::OK);
|
|
test::read_body_json(resp).await
|
|
}
|
|
}
|