123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- namespace Sakura\API;
- class BilibiliFavList
- {
- private $uid;
- public function __construct()
- {
- $this->uid = iro_opt('bilibili_id');
- }
- function fetch_folder_api()
- {
- $uid = $this->uid;
- $url = "https://api.bilibili.com/x/v3/fav/folder/created/list-all?up_mid=$uid&jsonp=jsonp";
- $args = array(
- 'headers' => array(
- 'Host' => 'api.bilibili.com',
- 'User-Agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97'
- )
- );
- $response = wp_remote_get($url, $args);
- if(is_array($response)){
- return json_decode($response["body"], true) || false;
- }else{
- return false;
- }
- }
- function fetch_folder_item_api(int $folder_id, int $page)
- {
- $url = "https://api.bilibili.com/x/v3/fav/resource/list?media_id=$folder_id&pn=$page&ps=9&platform=web&jsonp=jsonp";
- $args = array(
- 'headers' => array(
- 'Host' => 'api.bilibili.com',
- 'User-Agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97'
- )
- );
- $response = wp_remote_get($url, $args);
- if(is_array($response)){
- return json_decode($response["body"], true) || false;
- }else{
- return false;
- }
- }
- public function get_folders()
- {
- $resp = $this->fetch_folder_api();
- if ($resp === false)
- {
- return "<div>" . __('Backend error', 'sakurairo') . "</div>";
- }
- $folders_data = $resp['data'];
- $folders = $folders_data['list'];
- $html = '';
- foreach ((array)$folders as $folder){
- $html .= BilibiliFavList::folder_display($folder['id']);
- }
- return $html;
- }
- public function folder_display(int $folder_id)
- {
- $folder_resp = $this->fetch_folder_item_api($folder_id, 1);
- $folder_content_info = $folder_resp['data']['info'];
- $html = '<div class="folder"><div class="folder-top">'.
- lazyload_img(str_replace('http://', 'https://', $folder_content_info['cover']),'folder-img',array('alt'=>$folder_content_info['title'])).
- '<div class="folder-detail"><h3>' . $folder_content_info['title'] . '</h3>'.
- '<p>' . __('Item count: ', 'sakurairo') . $folder_content_info['media_count'] . '</p>'.
- '<button class="expand-button">' . __('Expand', 'sakurairo') . '</button></div></div>'.
- '<hr><div class="folder-content">';
- $load = BilibiliFavList::load_more(rest_url('sakura/v1/favlist/bilibili') . '?page=1' . '&folder_id=' . $folder_id);
- return $html . $load . '</div></div></br>';
- }
- public function load_folder_items(int $folder_id, $page = 1)
- {
- $folder_resp = $this->fetch_folder_item_api($folder_id, $page);
- $folder_content = $folder_resp['data']['medias'];
- $html = '';
- foreach ((array)$folder_content as $item) {
- $html .= BilibiliFavList::folder_item_display($item);
- }
- if ($folder_resp['data']['has_more']){
- $load = BilibiliFavList::load_more(rest_url('sakura/v1/favlist/bilibili') . '?page=' . ++$page . '&folder_id=' . $folder_id);
- }else{
- $load = '<a class="load-more"><i class="fa fa-ban" aria-hidden="true"></i>' . __('All item has been loaded.', 'sakurairo') . '</a>';
- }
- return $html . $load;
- }
- private static function folder_item_display(array $item)
- {
- if ($item['type'] == 24){
- $link = $item['link'];
- }else{
- $link = "https://www.bilibili.com/video/" . $item['bvid'];
- }
- // TODO: add lazyload to item-image with typescript
- return '<div class="column"><a class="folder-item" href="' . $link . '" target="_blank" rel="nofollow">'.
- '<img class="item-image" src="' . $item['cover'] . '">'.
- '<div class="item-info"><h3 class="item-title" title="' . $item['title'] . '">' . $item['title'] . '</h3>'.
- '<div class="item-intro" title="' . $item['intro'] . '">' . $item['intro'] . '</div>'.
- '</div></a></div>';
- }
- private static function load_more($href)
- {
- return '<a class="load-more" data-href="' . $href . '"><i class="fa fa-bolt" aria-hidden="true"></i>' . __('Load More', 'sakurairo') . '</a>';
- }
- }
|