Remove deprecated APIs

develop
trivernis 2 years ago
parent 5cddeee14b
commit 24f7bdb40f
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -207,11 +207,7 @@ pub struct FileFullMetadata {
pub is_trashed: bool, pub is_trashed: bool,
pub file_services: FileMetadataServices, pub file_services: FileMetadataServices,
pub known_urls: Vec<String>, pub known_urls: Vec<String>,
#[deprecated]
pub service_names_to_statuses_to_tags: HashMap<String, HashMap<String, Vec<String>>>,
pub service_keys_to_statuses_to_tags: HashMap<String, HashMap<String, Vec<String>>>, pub service_keys_to_statuses_to_tags: HashMap<String, HashMap<String, Vec<String>>>,
#[deprecated]
pub service_names_to_statuses_to_display_tags: HashMap<String, HashMap<String, Vec<String>>>,
pub service_keys_to_statuses_to_display_tags: HashMap<String, HashMap<String, Vec<String>>>, pub service_keys_to_statuses_to_display_tags: HashMap<String, HashMap<String, Vec<String>>>,
} }

@ -7,7 +7,7 @@ use crate::error::{Error, Result};
use crate::utils::tag_list_to_string_list; use crate::utils::tag_list_to_string_list;
use crate::wrapper::builders::delete_files_builder::DeleteFilesBuilder; use crate::wrapper::builders::delete_files_builder::DeleteFilesBuilder;
use crate::wrapper::builders::notes_builder::AddNotesBuilder; use crate::wrapper::builders::notes_builder::AddNotesBuilder;
use crate::wrapper::service::ServiceName;
use crate::wrapper::tag::Tag; use crate::wrapper::tag::Tag;
use crate::Client; use crate::Client;
use chrono::{NaiveDateTime, TimeZone, Utc}; use chrono::{NaiveDateTime, TimeZone, Utc};
@ -289,18 +289,19 @@ impl HydrusFile {
/// ///
/// Deprecation: Use [HydrusFile::services_with_tags] instead. /// Deprecation: Use [HydrusFile::services_with_tags] instead.
#[deprecated(note = "Deprecated in the official API. Use services_with_tags instead.")] #[deprecated(note = "Deprecated in the official API. Use services_with_tags instead.")]
pub async fn service_names_with_tags(&mut self) -> Result<HashMap<ServiceName, Vec<Tag>>> { pub async fn service_names_with_tags(
&mut self,
) -> Result<HashMap<ServiceIdentifier, Vec<Tag>>> {
let metadata = self.metadata().await?; let metadata = self.metadata().await?;
let mut tag_mappings = HashMap::new(); let mut tag_mappings = HashMap::new();
#[allow(deprecated)] for (service, status_tags) in &metadata.service_keys_to_statuses_to_tags {
for (service, status_tags) in &metadata.service_names_to_statuses_to_tags {
let mut tag_list = Vec::new(); let mut tag_list = Vec::new();
for (_, tags) in status_tags { for (_, tags) in status_tags {
tag_list.append(&mut tags.into_iter().map(|t| t.into()).collect()) tag_list.append(&mut tags.into_iter().map(|t| t.into()).collect())
} }
tag_mappings.insert(ServiceName(service.clone()), tag_list); tag_mappings.insert(ServiceIdentifier::Key(service.clone()), tag_list);
} }
Ok(tag_mappings) Ok(tag_mappings)

Loading…
Cancel
Save