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 "
" . __('Backend error', 'sakurairo') . "
"; } $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 = '
'. lazyload_img(str_replace('http://', 'https://', $folder_content_info['cover']),'folder-img',array('alt'=>$folder_content_info['title'])). '

' . $folder_content_info['title'] . '

'. '

' . __('Item count: ', 'sakurairo') . $folder_content_info['media_count'] . '

'. '
'. '
'; $load = BilibiliFavList::load_more(rest_url('sakura/v1/favlist/bilibili') . '?page=1' . '&folder_id=' . $folder_id); return $html . $load . '

'; } 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 = '' . __('All item has been loaded.', 'sakurairo') . ''; } 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 '
'. ''. '

' . $item['title'] . '

'. '
' . $item['intro'] . '
'. '
'; } private static function load_more($href) { return '' . __('Load More', 'sakurairo') . ''; } }