mirror of
https://github.com/lifegpc/pixiv_downloader.git
synced 2026-07-08 01:32:41 +08:00
Update
This commit is contained in:
@@ -17,6 +17,7 @@ pub struct FanboxItemList {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl FanboxItemList {
|
impl FanboxItemList {
|
||||||
|
#[allow(dead_code)]
|
||||||
/// Get next page.
|
/// Get next page.
|
||||||
/// # Note
|
/// # Note
|
||||||
/// If no next page presented, will return a error.
|
/// If no next page presented, will return a error.
|
||||||
@@ -38,6 +39,7 @@ impl FanboxItemList {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
/// Returns true if next page is presented.
|
/// Returns true if next page is presented.
|
||||||
pub fn has_next_page(&self) -> bool {
|
pub fn has_next_page(&self) -> bool {
|
||||||
self.next_url.is_some()
|
self.next_url.is_some()
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ impl PaginatedCreatorPosts {
|
|||||||
Ok(Self { client, pages })
|
Ok(Self { client, pages })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
/// Get posts' data in specified page.
|
/// Get posts' data in specified page.
|
||||||
/// * `index` - The index of the page
|
/// * `index` - The index of the page
|
||||||
pub async fn get_page(&self, index: usize) -> Option<FanboxItemList> {
|
pub async fn get_page(&self, index: usize) -> Option<FanboxItemList> {
|
||||||
@@ -72,6 +73,7 @@ impl PaginatedCreatorPosts {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Returns the total pages
|
/// Returns the total pages
|
||||||
pub fn len(&self) -> usize {
|
pub fn len(&self) -> usize {
|
||||||
|
|||||||
@@ -104,6 +104,27 @@ impl FanboxPostArticle {
|
|||||||
self.data["publishedDatetime"].as_str()
|
self.data["publishedDatetime"].as_str()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn tags(&self) -> Option<Vec<&str>> {
|
||||||
|
let mut list = Vec::new();
|
||||||
|
let tags = &self.data["tags"];
|
||||||
|
if tags.is_array() {
|
||||||
|
for i in tags.members() {
|
||||||
|
match i.as_str() {
|
||||||
|
Some(tag) => {
|
||||||
|
list.push(tag);
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(list)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn title(&self) -> Option<&str> {
|
pub fn title(&self) -> Option<&str> {
|
||||||
self.data["title"].as_str()
|
self.data["title"].as_str()
|
||||||
@@ -147,6 +168,7 @@ impl Debug for FanboxPostArticle {
|
|||||||
.field("next_post", &self.next_post())
|
.field("next_post", &self.next_post())
|
||||||
.field("prev_post", &self.prev_post())
|
.field("prev_post", &self.prev_post())
|
||||||
.field("published_datetime", &self.published_datetime())
|
.field("published_datetime", &self.published_datetime())
|
||||||
|
.field("tags", &self.tags())
|
||||||
.field("title", &self.title())
|
.field("title", &self.title())
|
||||||
.field("updated_datetime", &self.updated_datetime())
|
.field("updated_datetime", &self.updated_datetime())
|
||||||
.field("user_icon_url", &self.user_icon_url())
|
.field("user_icon_url", &self.user_icon_url())
|
||||||
@@ -254,6 +276,27 @@ impl FanboxPostImage {
|
|||||||
self.data["publishedDatetime"].as_str()
|
self.data["publishedDatetime"].as_str()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn tags(&self) -> Option<Vec<&str>> {
|
||||||
|
let mut list = Vec::new();
|
||||||
|
let tags = &self.data["tags"];
|
||||||
|
if tags.is_array() {
|
||||||
|
for i in tags.members() {
|
||||||
|
match i.as_str() {
|
||||||
|
Some(tag) => {
|
||||||
|
list.push(tag);
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(list)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn title(&self) -> Option<&str> {
|
pub fn title(&self) -> Option<&str> {
|
||||||
self.data["title"].as_str()
|
self.data["title"].as_str()
|
||||||
@@ -297,6 +340,7 @@ impl Debug for FanboxPostImage {
|
|||||||
.field("next_post", &self.next_post())
|
.field("next_post", &self.next_post())
|
||||||
.field("prev_post", &self.prev_post())
|
.field("prev_post", &self.prev_post())
|
||||||
.field("published_datetime", &self.published_datetime())
|
.field("published_datetime", &self.published_datetime())
|
||||||
|
.field("tags", &self.tags())
|
||||||
.field("title", &self.title())
|
.field("title", &self.title())
|
||||||
.field("updated_datetime", &self.updated_datetime())
|
.field("updated_datetime", &self.updated_datetime())
|
||||||
.field("user_icon_url", &self.user_icon_url())
|
.field("user_icon_url", &self.user_icon_url())
|
||||||
@@ -530,6 +574,27 @@ impl FanboxPost {
|
|||||||
self.get_json()["publishedDatetime"].as_str()
|
self.get_json()["publishedDatetime"].as_str()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
pub fn tags(&self) -> Option<Vec<&str>> {
|
||||||
|
let mut list = Vec::new();
|
||||||
|
let tags = &self.get_json()["tags"];
|
||||||
|
if tags.is_array() {
|
||||||
|
for i in tags.members() {
|
||||||
|
match i.as_str() {
|
||||||
|
Some(tag) => {
|
||||||
|
list.push(tag);
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(list)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn title(&self) -> Option<&str> {
|
pub fn title(&self) -> Option<&str> {
|
||||||
self.get_json()["title"].as_str()
|
self.get_json()["title"].as_str()
|
||||||
|
|||||||
Reference in New Issue
Block a user