123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- namespace Sakura\API;
- class Bilibili
- {
- private $uid;
- private $cookies;
- public function __construct()
- {
- $this->uid = iro_opt('bilibili_id');
- $this->cookies = iro_opt('bilibili_cookie');
- }
- /**
- * 获取Bilibili用户追番列表
- * @param integer $type
- * @param integer $page 页数
- * @author siroi <mrgaopw@hotmail.com>
- * @author KotoriK
- */
- function fetch_api(int $type, int $page = 1)
- {
- $uid = $this->uid;
- $cookies = $this->cookies;
- $url = "https://api.bilibili.com/x/space/bangumi/follow/list?type=$type&pn=$page&ps=15&follow_status=0&vmid=$uid";
- $args = array(
- 'headers' => array(
- 'Cookie' => $cookies,
- '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);
- }else{
- return array('code'=>-1);
- }
- }
- public function get_bgm_items($page = 1)
- {
- $resp = $this->fetch_api(1, $page);
- $code = $resp["code"];
- switch ($code) {
- case -1://指示在网络请求阶段发生了错误
- return "<div>" . __('Backend error', 'sakurairo') . "</div>";
- case 0: {
- $bgm = $resp['data'];
- $totalpage = $bgm["total"] / 15;
- if ($totalpage - $page < 0) {
- $next = "<span>" . __('Following ', 'sakurairo') . $bgm["total"] . __(' anime.', 'sakurairo') . "</span>";
- } else {
- $next = Bilibili::anchor_pagination_next(rest_url('sakura/v1/bangumi/bilibili') . '?page=' . ++$page);
- }
- $lists = $bgm["list"];
- $html = "";
- foreach ((array)$lists as $item) {
- $percent = Bilibili::get_percent($item);
- $html .= Bilibili::bangumi_item($item, $percent);
- }
- $html .= '</div><br><div id="bangumi-pagination">' . $next . '</div>';
- return $html;
- }
- case 53013: //用户隐私设置未公开
- //TODO:制作错误页面
- return "<div>" . __('The author seems to have hidden their bangumi list.', 'sakurairo') . "</div>";
- }
- }
- public function get_bfv_items($page = 1)
- {
- $resp = $this->fetch_api(2, $page);
- $code = $resp["code"];
- switch ($code) {
- case 0: {
- $bgm = $resp['data'];
- $totalpage = $bgm["total"] / 15;
- if ($totalpage - $page < 0) {
- $next = '<span>共追剧' . $bgm["total"] . '部,继续加油吧!٩(ˊᗜˋ*)و</span>';
- } else {
- $next = Bilibili::anchor_pagination_next(rest_url('sakura/v1/bangumi/bilibili-ctp') . '?page=' . ++$page);
- }
- $lists = $bgm["list"];
- $html = "";
- foreach ((array)$lists as $item) {
- $percent = Bilibili::get_percent($item);
- $html .= Bilibili::bangumi_item($item, $percent);
- }
- $html .= '</div><br><div id="bangumi-pagination">' . $next . '</div>';
- return $html;
- }
- }
- }
- private static function anchor_pagination_next(string $href)
- {
- return '<a class="bangumi-next" data-href="' . $href . '"><i class="fa-solid fa-bolt-lightning"></i></i> NEXT </a>';
- }
- private static function bangumi_item(array $item, $percent)
- {
- //in_array('index_show','new_ep')
- return '<div class="column">' .
- '<a class="bangumi-item" href="https://bangumi.bilibili.com/anime/' . $item['season_id'] . '/" target="_blank" rel="nofollow">'
- .lazyload_img(str_replace('http://', 'https://', $item['cover']),'bangumi-image',array('alt'=>$item['title'])).
- '<div class="bangumi-info">' .
- '<h3 class="bangumi-title" title="' . $item['title'] . '">' . $item['title'] . '</h2>'
- . '<div class="bangumi-summary"> ' . $item['evaluate'] . ' </div>' .
- '<div class="bangumi-status">'
- . '<div class="bangumi-status-bar" style="width: ' . $percent . '%"></div>'
- . '<p>' . ($item['new_ep']['index_show'] ?? ''). '</p>'
- . '</div>'
- . '</div>'
- . '</a>'
- . '</div>';
- }
- private static function get_percent(array $item)
- {
- $percent = 0;
- if (preg_match('/看完/m', $item["progress"], $matches_finish)) {
- $percent = 100;
- } else {
- preg_match('/第(\d+)./m', $item['progress'], $matches_progress);
- if (isset($item["new_ep"]['index_show'])) {
- preg_match('/第(\d+)./m', $item["new_ep"]['index_show'], $matches_new);
- }
- if (isset($matches_progress[1])) {
- $progress = is_numeric($matches_progress[1]) ? $matches_progress[1] : 0;
- } else {
- $progress = 0;
- }
- $total = (isset($matches_new[1]) && is_numeric($matches_new[1])) ? $matches_new[1] : $item['total_count'];
- if ($total == 0) {
- //电影类剧集$total可能得到0
- $percent = 0;
- } else {
- $percent = $progress / $total * 100;
- }
- }
- return $percent;
- }
- }
|