diff --git a/.github/workflows/builder.yaml b/.github/workflows/docker.yaml similarity index 67% rename from .github/workflows/builder.yaml rename to .github/workflows/docker.yaml index a5d40cb..2d621c3 100644 --- a/.github/workflows/builder.yaml +++ b/.github/workflows/docker.yaml @@ -1,8 +1,12 @@ -name: build docker image +name: Build and push docker image on: push: branches: - 'master' + paths-ignore: + - '**.md' + - '**.yml' + - 'LICENSE' jobs: docker: @@ -64,7 +68,35 @@ jobs: with: string: ${{ github.event.repository.full_name }} - - name: Build and push + - name: Start MongoDB + uses: supercharge/mongodb-github-action@1.8.0 + with: + mongodb-version: "6.0" + + - name: Build CI docker images + uses: docker/build-push-action@v2 + with: + context: . + # due to the limitation of docker, we can only save one platform at a time. + # for CI purposes, we only need to save amd64 and then build multi-arch later + platforms: linux/amd64 + load: true + tags: | + ${{ steps.dh_string.outputs.lowercase }} + build-args: | + env=dev + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max + + - name: Restore database and run tests + run: | + sudo apt update && sudo apt install -y wget + wget -q https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.6.1.deb + sudo dpkg -i mongodb-database-tools-ubuntu2204-x86_64-100.6.1.deb + mongorestore --gzip --archive=assets/ci.gz + make ci-test + + - name: Build and push docker images uses: docker/build-push-action@v2 with: context: . @@ -86,4 +118,4 @@ jobs: TOKEN: ${{ secrets.BOT_TOKEN }} run: | curl "https://api.telegram.org/bot$TOKEN/sendMessage?chat_id=260260121&text=Normal%20Build%20complete!" - echo "Build complete!" + echo "YYeTsBot Build complete!" diff --git a/.github/workflows/onekey.yaml b/.github/workflows/golang-onekey.yaml similarity index 95% rename from .github/workflows/onekey.yaml rename to .github/workflows/golang-onekey.yaml index 022db4b..eefcff3 100644 --- a/.github/workflows/onekey.yaml +++ b/.github/workflows/golang-onekey.yaml @@ -1,4 +1,4 @@ -name: publish release +name: Publish golang one key release on: push: tags: diff --git a/.github/workflows/normal_upgrade.yaml b/.github/workflows/normal-upgrade.yaml similarity index 100% rename from .github/workflows/normal_upgrade.yaml rename to .github/workflows/normal-upgrade.yaml diff --git a/.github/workflows/ci.yml b/.github/workflows/pr.yml similarity index 67% rename from .github/workflows/ci.yml rename to .github/workflows/pr.yml index 9a08ae1..92ef1c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/pr.yml @@ -1,4 +1,4 @@ -name: CI Test +name: Pull Request CI test on: pull_request: @@ -6,22 +6,21 @@ on: - master paths-ignore: - '**.md' + - '**.yml' + - 'LICENSE' + jobs: ci: - name: Build Image Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - - name: Lower case for ghcr - id: ghcr_string - uses: ASzc/change-string-case-action@v1 + - name: Checkout + uses: actions/checkout@v2 with: - string: ${{ github.event.repository.full_name }} + submodules: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 - + - name: Cache Docker layers uses: actions/cache@v2 with: @@ -37,7 +36,7 @@ jobs: platforms: linux/amd64 load: true tags: | - ghcr.io/${{ steps.ghcr_string.outputs.lowercase }} + yyetsbot:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new @@ -46,25 +45,38 @@ jobs: rm -rf /tmp/.buildx-cache mv /tmp/.buildx-cache-new /tmp/.buildx-cache + - name: Start MongoDB + uses: supercharge/mongodb-github-action@1.8.0 + with: + mongodb-version: "6.0" + + - name: Restore database and run tests + run: | + sudo apt update && sudo apt install -y wget + wget -q https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.6.1.deb + sudo dpkg -i mongodb-database-tools-ubuntu2204-x86_64-100.6.1.deb + mongorestore --gzip --archive=assets/ci.gz + make ci-test + - name: Install trivy run: | wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add - echo deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list.d/trivy.list sudo apt-get update sudo apt-get install trivy -y - + - name: Scan for CVE uses: mathiasvr/command-output@v1 id: trivy with: run: | - trivy image --no-progress --severity "HIGH,CRITICAL" ghcr.io/${{ steps.ghcr_string.outputs.lowercase }} - - - name: Comment CVE PR + trivy image --no-progress --severity "HIGH,CRITICAL" yyetsbot:latest + + - name: Comment on CVE PR uses: thollander/actions-comment-pull-request@v1 with: message: | ``` ${{ steps.trivy.outputs.stdout }} ``` - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/rapid_upgrade.yaml b/.github/workflows/rapid_upgrade.yaml deleted file mode 100644 index 72d2ec6..0000000 --- a/.github/workflows/rapid_upgrade.yaml +++ /dev/null @@ -1,36 +0,0 @@ -name: Rapid upgrade -on: - issues: - types: - - opened - - reopened - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: emergency update from ssh - if: github.event.issue.labels[0].name == 'upgrade' - uses: appleboy/ssh-action@master - env: - TOKEN: ${{ secrets.BOT_TOKEN }} - with: - envs: TOKEN - host: ${{ secrets.PROD_HOST }} - username: ${{ secrets.PROD_USERNAME }} - key: ${{ secrets.SSH_KEY }} - command_timeout: 30m - script: | - docker save bennythink/yyetsbot > /root/yyetsbot-old.tar - cd /root/YYeTsBot - make prod - docker-compose -f /home/WebsiteRunner/docker-compose.yml up -d - docker-compose -f /home/BotsRunner/docker-compose.yml up -d - curl "https://api.telegram.org/bot$TOKEN/sendMessage?chat_id=260260121&text=Rapid%20upgrade%20complete!" - echo "Rapid upgrade complete!" - - - name: Close Issue - if: github.event.issue.labels[0].name == 'upgrade' - uses: peter-evans/close-issue@v1 - with: - comment: Upgrade complete. Close this issue. diff --git a/Makefile b/Makefile index 5ee5a8e..7d90b7a 100644 --- a/Makefile +++ b/Makefile @@ -83,3 +83,9 @@ universal: release: git tag $(shell git rev-parse --short HEAD) git push --tags + +ci-test: + docker run --rm bennythink/yyetsbot /bin/sh -c "cd /YYeTsBot/yyetsweb/tests;python -m unittest discover -p '*_test.py'" + +test: + cd $(WEB)/tests;python -m unittest discover -p '*_test.py' diff --git a/assets/ci.gz b/assets/ci.gz new file mode 100644 index 0000000..8649c62 Binary files /dev/null and b/assets/ci.gz differ diff --git a/requirements.txt b/requirements.txt index 70cc2dd..64e4d6a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ pymongo==4.3.3 tornado==6.2 captcha==0.4 passlib==1.7.4 -fakeredis==2.8.0 +fakeredis==2.9.0 pytz==2022.7.1 filetype==1.2.0 requests[socks] @@ -16,6 +16,6 @@ tqdm==4.64.1 retry==0.9.2 pymysql==1.0.2 git+https://github.com/tgbot-collection/python-akismet -openpyxl==3.1.0 +openpyxl==3.1.1 zhconv==1.4.3 jinja2==3.1.2 diff --git a/scripts/dev_robots.sh b/scripts/dev_robots.sh index 378002e..c4a40f7 100644 --- a/scripts/dev_robots.sh +++ b/scripts/dev_robots.sh @@ -1,4 +1,4 @@ -cat << EOF > /build/build/robots.txt +cat << EOF > /YYeTsBot/YYeTsFE/build/robots.txt User-agent: * Disallow: / -EOF \ No newline at end of file +EOF diff --git a/yyetsweb/database.py b/yyetsweb/database.py index 69b257c..e19019f 100644 --- a/yyetsweb/database.py +++ b/yyetsweb/database.py @@ -14,7 +14,6 @@ import os import random import re import string -import sys import fakeredis import redis @@ -26,11 +25,13 @@ predefined_str = re.sub(r"[1l0oOI]", "", string.ascii_letters + string.digits) class Redis: def __init__(self): - if getattr(sys, '_MEIPASS', None): + self.r = redis.StrictRedis(host=os.getenv("redis") or "localhost", decode_responses=True) + try: + self.r.ping() + except redis.exceptions.ConnectionError: + # we can't connect to redis, either generated by pyinstaller(_MEIPASS), or forget to run it. logging.info("%s Disable redis for standalone exe! %s", "#" * 10, "#" * 10) self.r = fakeredis.FakeStrictRedis() - else: - self.r = redis.StrictRedis(host=os.getenv("redis") or "localhost", decode_responses=True) def __del__(self): self.r.close() diff --git a/yyetsweb/templates/js/sample.json b/yyetsweb/templates/js/sample.json index 664e3ee..56996e0 100644 --- a/yyetsweb/templates/js/sample.json +++ b/yyetsweb/templates/js/sample.json @@ -1,938 +1,937 @@ { - "status": 1, - "info": "OK", - "data": { - "info": { - "id": 34812, - "cnname": "逃避可耻却有用", - "enname": "NIGERUHA HAJIDAGA YAKUNITATSU", - "aliasname": "逃避虽可耻但有用 / 雇佣妻子(港) / 月薪娇妻(台) / 逃跑是可耻但是有用 / 逃避虽可耻但很有用 / 逃避可耻但有用", - "channel": "tv", - "channel_cn": "日剧", - "area": "日本", - "show_type": "", - "expire": "1610399344", - "views": 1200, - "year": [ - 2016, - 2017, - 2021 - ] - }, - "list": [ - { - "season_num": "101", - "season_cn": "单剧", - "items": { - "APP": [ - { - "itemid": "554385", - "episode": "12", - "name": "yyets://N=逃避可耻却有用 人类加油!新春特别篇!!.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ganbare.Jinrui.Shinshun.Special.SP.Chi_Jap.HDTVrip.1280X720.mp4|S=1505489064|H=b7aae378e30689eab20125e3bff3bac1d16a043e|", - "size": "", - "yyets_trans": 0, - "dateline": "1609622857", - "files": [ - { - "way": "102", - "way_cn": "百度云", - "address": "https://pan.baidu.com/s/149tnE0DWW68jU5nMbdFH3w", - "passwd": "x28a" - }, - { - "way": "115", - "way_cn": "微云", - "address": "https://share.weiyun.com/Y2ooLgRe", - "passwd": "" - } - ] - }, - { - "itemid": "298235", - "episode": "11", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=733784950|H=c464b9e32a999b417324b53cd92d2fbfa89b597a|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298234", - "episode": "10", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=733930391|H=3c572ede5b41a2368d0f64071ea733592876344a|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298233", - "episode": "9", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629132305|H=129e9e73d44ccf575afc70eecdd171732fc89329|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298232", - "episode": "8", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629207765|H=47e4573d0d72fa7d2394a377f467d0b352fce08f|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298231", - "episode": "7", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629119647|H=bb2ff32f008d3d2e58371f34b83292ddde7b51e8|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298230", - "episode": "6", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629239487|H=83f72df4cd440c22c8c5ab94b559773eb472c46d|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298229", - "episode": "5", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629262958|H=30bb5f65bff74ebe60d848edd4748b3c3e7e76c7|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298228", - "episode": "4", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629037391|H=3274e38c1ba20493a0bf62d4f7c65bec651dc3d2|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298227", - "episode": "3", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=628416378|H=9ac2a719d66b3626011c2d3366367a9d56c20e26|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298226", - "episode": "2", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|S=629086728|H=d21a081cc6a32daa85310ca6aad81e378f0b736e|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - }, - { - "itemid": "298225", - "episode": "1", - "name": "yyets://N=逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.1280X720-ZhuixinFanV2.mp4|S=733967923|H=fa1a42ee8066da0aa2b66ca470814489160ad214|", - "size": "", - "yyets_trans": 0, - "dateline": "1491891741", - "files": null - } - ], - "HR-HDTV": [ - { - "itemid": "554384", - "episode": "12", - "name": "逃避可耻却有用 人类加油!新春特别篇!!.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ganbare.Jinrui.Shinshun.Special.SP.Chi_Jap.HDTVrip.1280X720.mp4", - "size": "1.4GB", - "yyets_trans": 0, - "dateline": "1609622857", - "files": [ - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:4a6be139e640db770dbe266471e5cc81357c205e&tr=http://tr.cili001.com:8070/announce&tr=udp://p4p.arenabg.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://open.demonii.com:1337", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "https://pan.baidu.com/s/149tnE0DWW68jU5nMbdFH3w", - "passwd": "x28a" - } - ] - }, - { - "itemid": "284973", - "episode": "11", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "699.79MB", - "yyets_trans": 0, - "dateline": "1482282868", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|733784950|51a18ead729a833f58264700b963113a|h=ncojnutlufhohfrl42xr7t2m6lqdwzjf|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:78930bae5efe391ee6bcc4c7dcfa237b05a493f0&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1jHAM8aq", - "passwd": "" - } - ] - }, - { - "itemid": "284430", - "episode": "10", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "699.93MB", - "yyets_trans": 0, - "dateline": "1481704074", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|733930391|15b6440bdd991d04a7ff6ba9d22e07d6|h=aodlfl4jgt7paj6v4vbolfjeho5d744t|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:1e50cd628d6829127534e5b9411d505efaea98f8&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1nvPP4db", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/DFw163629975", - "passwd": "" - } - ] - }, - { - "itemid": "283661", - "episode": "9", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "599.99MB", - "yyets_trans": 0, - "dateline": "1481098725", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629132305|9d5152f4f21f1a1bf053ce33abd41ad5|h=mwd7hctmq5ziym7ugc2vptn6ieazici3|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:7d047723d5697c68361b05eb20da1c50d224425e&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1nu9tJM5", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/9K9162939027", - "passwd": "" - } - ] - }, - { - "itemid": "282897", - "episode": "8", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "600.06MB", - "yyets_trans": 0, - "dateline": "1480497463", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629207765|1ba73a37879514eabd5ab2adf938be40|h=scdffp3xfc4e36fdhslh5p3sr76oh5a6|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:3ac5f75b4ad9e59f1a9752067eaa8ed9117a0931&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1kUGjaMb", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/Ula162377565", - "passwd": "" - } - ] - }, - { - "itemid": "282123", - "episode": "7", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "599.98MB", - "yyets_trans": 0, - "dateline": "1479886413", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629119647|1565719ed7d08c10a7bac9a740e3bdda|h=5pho2gfiivlv3rkhrh7q4dvsietozz5r|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:b8283af2cdca0b1b751f716423611e4795fbee77&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1qYfaU3E", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/AtK161811663", - "passwd": "" - } - ] - }, - { - "itemid": "281371", - "episode": "6", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "600.09MB", - "yyets_trans": 0, - "dateline": "1479281049", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629239487|9fc21b8ce21f0699f035404ad4baae6a|h=4yse343oq7vymc4qe6qtjyge2yfukf7q|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:0186d5447834e8051af6551faa4cfde44476aff5&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1slzXo3z", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/4ia161194698", - "passwd": "" - } - ] - }, - { - "itemid": "280656", - "episode": "5", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "600.11MB", - "yyets_trans": 0, - "dateline": "1478670362", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629262958|ba41b35dcfec2716f90ab664048f7e09|h=yrdanlqzxpqrsldgoi5aobjqhldxm6vq|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:f52c3ba04703cd4298e7a6a09ee87f520f700f7b&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1c1Rl1BU", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/fMW160612929", - "passwd": "" - } - ] - }, - { - "itemid": "280068", - "episode": "4", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "599.9MB", - "yyets_trans": 0, - "dateline": "1478065113", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629037391|07d320c3db4ad737e398cc7ba08c5216|h=yzfnqwlsvw2yloobhvkjf6yil6gc5kag|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:46ec914334a77f968d1c789b2f4a9fee8648435a&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1pKED1gv", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/cOt160028088", - "passwd": "" - } - ] - }, - { - "itemid": "279384", - "episode": "3", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "599.3MB", - "yyets_trans": 0, - "dateline": "1477483732", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|628416378|8fdc3bd1714d5dab282f5e0f7cdf25be|h=on5tdwesk4maldu4txop3eutgihi2yyu|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:157d2fc48b9efbe8f846643652a7c2f3d7f14989&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1ge3yfL5", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/Ov3159483996", - "passwd": "" - } - ] - }, - { - "itemid": "278649", - "episode": "2", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", - "size": "599.94MB", - "yyets_trans": 0, - "dateline": "1476868310", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4|629086728|3812eb6a3ef37b3ead6ad9c3a26efa24|h=jogqyi4cauhueoppsgcgdnprpbu7om3g|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:1e5a9180c2be2aa6a1e932479dae91ce082ca22d&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1gfHRfnt", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/2Tb158731035", - "passwd": "" - } - ] - }, - { - "itemid": "277958", - "episode": "1", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.1280X720-ZhuixinFanV2.mp4", - "size": "699.97MB", - "yyets_trans": 0, - "dateline": "1476238571", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.1280X720-ZhuixinFanV2.mp4|733967923|7116a9dfb86fceed3f5b71604e48745f|h=ku7saiivihhc26hcbx4cjsplvkum62ho|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:2a331028531d0254a2b1f30e55edf99b6b716e49&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1hrOugEK", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/Dde158319090", - "passwd": "" - } - ] - } - ], - "MP4": [ - { - "itemid": "554387", - "episode": "12", - "name": "逃避可耻却有用 人类加油!新春特别篇!!.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ganbare.Jinrui.Shinshun.Special.SP.Chi_Jap.HDTVrip.1280X720.mp4", - "size": "1.4GB", - "yyets_trans": 0, - "dateline": "1609622857", - "files": [ - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:4a6be139e640db770dbe266471e5cc81357c205e&tr=http://tr.cili001.com:8070/announce&tr=udp://p4p.arenabg.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://open.demonii.com:1337", - "passwd": "" - } - ] - }, - { - "itemid": "284971", - "episode": "11", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "273.97MB", - "yyets_trans": 0, - "dateline": "1482265302", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|287277713|c5e3cda7312d5c959b054ce1fe2d9648|h=yons5tync72soz55fil76fhasuyef2p5|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:e643ee71dcfc70ef5c768f4801937bee3474ab7c&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1nu7sDDJ", - "passwd": "" - } - ] - }, - { - "itemid": "284424", - "episode": "10", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "250.46MB", - "yyets_trans": 0, - "dateline": "1481694187", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|262629609|5ddda8755130865fd0b506b897dd3933|h=56ncsvze3suc4pszccf3frhbw24u454u|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:64c03d502e04f592fa7dc86ea9b13ccce52c53e5&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1cvdJye", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/mcp163620606", - "passwd": "" - } - ] - }, - { - "itemid": "283576", - "episode": "9", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "197.99MB", - "yyets_trans": 0, - "dateline": "1481091708", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|207609828|c3bf94d4f2e63139d7196f0297aa3882|h=lixjdvvffgkozmcbujjkeusdmx5uz6h4|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:f331279acc58e85d679418c7a11ebeefb4b02b42&tr=http://tracker.openbittorrent.com/announce&tr=udp://tracker.openbittorrent.com:80/announce&tr=udp://tr.cili001.com:6666/announce&tr=http://tracker.publicbt.com/announce&tr=udp://open.demonii.com:1337&tr=udp://tracker.opentrackr.org:1337/announce&tr=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1miyMEbm", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/pU0162934266", - "passwd": "" - } - ] - }, - { - "itemid": "282890", - "episode": "8", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "193.81MB", - "yyets_trans": 0, - "dateline": "1480490078", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|203226404|0b2c976116eead8cee3a086d112ce738|h=b56bqcmprjcnkhwez5siuz2dzzvfljo4|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:2fc115a1a26ed12f8d2f540e9f8699b989193e04&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1kUIkQ7X", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/NyN162369651", - "passwd": "" - } - ] - }, - { - "itemid": "282120", - "episode": "7", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "205.1MB", - "yyets_trans": 0, - "dateline": "1479881031", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|215062889|ca0ffa335b3a595e41f71d3c8f277040|h=a65hvn5lzc5c6loc746tf3yexszea4eh|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:2d47c371eba87c52e7618a782b627a95fffed7b4&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1bo9Dwv1", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/8Tk161811666", - "passwd": "" - } - ] - }, - { - "itemid": "281368", - "episode": "6", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "225.23MB", - "yyets_trans": 0, - "dateline": "1479275434", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|236167107|5d1ca5827f3cf88cb39bf55df64e017b|h=k2bzvh2zpyljsq6b2g5xbtci3s63q5xy|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:043c0fe675011d2d6a1fcba243e130864e5ab461&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1qYQxCBi", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/aXo161179959", - "passwd": "" - } - ] - }, - { - "itemid": "280651", - "episode": "5", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "214.19MB", - "yyets_trans": 0, - "dateline": "1478665773", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|224589979|fc95f51dd77b80abcfc8d2be7955a0fe|h=wgrml4u6cey6iiyxgtx4ml6yrzqdx7ap|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:fb7c0b0c634af47bd5249873eecef81edaefbb5e&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1miLLJBi", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/zRI160610232", - "passwd": "" - } - ] - }, - { - "itemid": "280038", - "episode": "4", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "191.02MB", - "yyets_trans": 0, - "dateline": "1478060356", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|200298651|b9e1eef644649f12ef4684f92fdb0379|h=5cvm2z6kxke24ti7gqpgcwesvsfejkvr|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:4edc1466dea534e178214ed701731f6a376996b1&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1hrZk4cc", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/DuN160026666", - "passwd": "" - } - ] - }, - { - "itemid": "279352", - "episode": "3", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "230.2MB", - "yyets_trans": 0, - "dateline": "1477463950", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|241387154|923cd649dd5d48840a7f1c42d8ba3700|h=czevlgexn5os63rxulctjubd2u65ukf6|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:0f71cd2401057ef47cdc6ede0dcb1ebaec2e1618&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1gfPtce3", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/Xsc159444636", - "passwd": "" - } - ] - }, - { - "itemid": "278647", - "episode": "2", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", - "size": "200.22MB", - "yyets_trans": 0, - "dateline": "1476861702", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4|209947733|ed7626c02262f287b92f2472c5ed1a29|h=f5dwdur3fhjifrztundnr7psdhzzqihv|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:f5e244402d31013208dafea5e0231084cd4b3ed3&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1o8Rgrm6", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/POv158726721", - "passwd": "" - } - ] - }, - { - "itemid": "277951", - "episode": "1", - "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.852X480-ZhuixinFanV2.mp4", - "size": "304.92MB", - "yyets_trans": 0, - "dateline": "1476216447", - "files": [ - { - "way": "1", - "way_cn": "电驴", - "address": "ed2k://|file|%E9%80%83%E9%81%BF%E5%8F%AF%E8%80%BB%E5%8D%B4%E6%9C%89%E7%94%A8.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.852X480-ZhuixinFanV2.mp4|319730163|56c0ff1e0c00f4ae8b2636d6fa0c20ee|h=teyixuxqajhhehxiupbozfst3r5b5ytk|/", - "passwd": "" - }, - { - "way": "2", - "way_cn": "磁力", - "address": "magnet:?xt=urn:btih:e4dcb4f8fc0f99416107da0beb6697ce77b8b66b&tr.1=http://tracker.openbittorrent.com/announce&tr.2=udp://tracker.openbittorrent.com:80/announce&tr.3=udp://tr.cili001.com:6666/announce&tr.4=http://tracker.publicbt.com/announce&tr.5=udp://open.demonii.com:1337&tr.6=udp://tracker.opentrackr.org:1337/announce&tr.7=http://tr.cili001.com:6666/announce", - "passwd": "" - }, - { - "way": "9", - "way_cn": "网盘", - "address": "http://pan.baidu.com/s/1kUTD9cj", - "passwd": "" - }, - { - "way": "12", - "way_cn": "诚通网盘", - "address": "http://ZiMuZuUSTV.ctfile.com/fs/07i158318898", - "passwd": "" - } - ] - } - ] - }, - "formats": [ - "HR-HDTV", - "MP4", - "APP" - ] - } - ] + "status": 1, + "info": "OK", + "data": { + "info": { + "id": 34812, + "cnname": "逃避可耻却有用", + "enname": "NIGERUHA HAJIDAGA YAKUNITATSU", + "aliasname": "逃避虽可耻但有用 / 雇佣妻子(港) / 月薪娇妻(台) / 逃跑是可耻但是有用 / 逃避虽可耻但很有用 / 逃避可耻但有用", + "channel": "tv", + "channel_cn": "日剧", + "area": "日本", + "show_type": "", + "expire": "1610399344", + "views": 1200, + "year": [ + 2016, + 2017, + 2021 + ] }, - "is_like": false -} \ No newline at end of file + "list": [ + { + "season_num": "101", + "season_cn": "单剧", + "items": { + "APP": [ + { + "itemid": "554385", + "episode": "12", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1609622857", + "files": [ + { + "way": "102", + "way_cn": "百度云", + "address": "https://exmaple.com", + "passwd": "x28a" + }, + { + "way": "115", + "way_cn": "微云", + "address": "https://exmaple.com", + "passwd": "" + } + ] + }, + { + "itemid": "298235", + "episode": "11", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298234", + "episode": "10", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298233", + "episode": "9", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298232", + "episode": "8", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298231", + "episode": "7", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298230", + "episode": "6", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298229", + "episode": "5", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298228", + "episode": "4", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298227", + "episode": "3", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298226", + "episode": "2", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + }, + { + "itemid": "298225", + "episode": "1", + "name": "yyets://N.fake", + "size": "", + "yyets_trans": 0, + "dateline": "1491891741", + "files": null + } + ], + "HR-HDTV": [ + { + "itemid": "554384", + "episode": "12", + "name": "逃避可耻却有用 人类加油!新春特别篇!!.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ganbare.Jinrui.Shinshun.Special.SP.Chi_Jap.HDTVrip.1280X720.mp4", + "size": "1.4GB", + "yyets_trans": 0, + "dateline": "1609622857", + "files": [ + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "https://exmaple.com", + "passwd": "x28a" + } + ] + }, + { + "itemid": "284973", + "episode": "11", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "699.79MB", + "yyets_trans": 0, + "dateline": "1482282868", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "284430", + "episode": "10", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "699.93MB", + "yyets_trans": 0, + "dateline": "1481704074", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "283661", + "episode": "9", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "599.99MB", + "yyets_trans": 0, + "dateline": "1481098725", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "282897", + "episode": "8", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "600.06MB", + "yyets_trans": 0, + "dateline": "1480497463", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "282123", + "episode": "7", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "599.98MB", + "yyets_trans": 0, + "dateline": "1479886413", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "281371", + "episode": "6", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "600.09MB", + "yyets_trans": 0, + "dateline": "1479281049", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "280656", + "episode": "5", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "600.11MB", + "yyets_trans": 0, + "dateline": "1478670362", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "280068", + "episode": "4", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "599.9MB", + "yyets_trans": 0, + "dateline": "1478065113", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "279384", + "episode": "3", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "599.3MB", + "yyets_trans": 0, + "dateline": "1477483732", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "278649", + "episode": "2", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.1280X720-ZhuixinFan.mp4", + "size": "599.94MB", + "yyets_trans": 0, + "dateline": "1476868310", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "277958", + "episode": "1", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.1280X720-ZhuixinFanV2.mp4", + "size": "699.97MB", + "yyets_trans": 0, + "dateline": "1476238571", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + } + ], + "MP4": [ + { + "itemid": "554387", + "episode": "12", + "name": "逃避可耻却有用 人类加油!新春特别篇!!.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ganbare.Jinrui.Shinshun.Special.SP.Chi_Jap.HDTVrip.1280X720.mp4", + "size": "1.4GB", + "yyets_trans": 0, + "dateline": "1609622857", + "files": [ + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + } + ] + }, + { + "itemid": "284971", + "episode": "11", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep11.Final.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "273.97MB", + "yyets_trans": 0, + "dateline": "1482265302", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "284424", + "episode": "10", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep10.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "250.46MB", + "yyets_trans": 0, + "dateline": "1481694187", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "283576", + "episode": "9", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep09.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "197.99MB", + "yyets_trans": 0, + "dateline": "1481091708", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "282890", + "episode": "8", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep08.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "193.81MB", + "yyets_trans": 0, + "dateline": "1480490078", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "282120", + "episode": "7", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep07.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "205.1MB", + "yyets_trans": 0, + "dateline": "1479881031", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "281368", + "episode": "6", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep06.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "225.23MB", + "yyets_trans": 0, + "dateline": "1479275434", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "280651", + "episode": "5", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep05.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "214.19MB", + "yyets_trans": 0, + "dateline": "1478665773", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "280038", + "episode": "4", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep04.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "191.02MB", + "yyets_trans": 0, + "dateline": "1478060356", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "279352", + "episode": "3", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep03.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "230.2MB", + "yyets_trans": 0, + "dateline": "1477463950", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "278647", + "episode": "2", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep02.Chi_Jap.HDTVrip.852X480-ZhuixinFan.mp4", + "size": "200.22MB", + "yyets_trans": 0, + "dateline": "1476861702", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + }, + { + "itemid": "277951", + "episode": "1", + "name": "逃避可耻却有用.NIGERUHA.HAJIDAGA.YAKUNITATSU.Ep01.Chi_Jap.HDTVrip.852X480-ZhuixinFanV2.mp4", + "size": "304.92MB", + "yyets_trans": 0, + "dateline": "1476216447", + "files": [ + { + "way": "1", + "way_cn": "电驴", + "address": "ed2k://|file|a", + "passwd": "" + }, + { + "way": "2", + "way_cn": "磁力", + "address": "magnet:?xt=urn", + "passwd": "" + }, + { + "way": "9", + "way_cn": "网盘", + "address": "http://abc.com", + "passwd": "" + }, + { + "way": "12", + "way_cn": "诚通网盘", + "address": "http://abc.com", + "passwd": "" + } + ] + } + ] + }, + "formats": [ + "HR-HDTV", + "MP4", + "APP" + ] + } + ] + } +} diff --git a/yyetsweb/tests/router_test.py b/yyetsweb/tests/router_test.py new file mode 100644 index 0000000..7d23eda --- /dev/null +++ b/yyetsweb/tests/router_test.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +# coding: utf-8 + +import pathlib +import sys +import unittest + +from tornado.testing import AsyncHTTPTestCase + +sys.path.append(pathlib.Path(__file__).parent.parent.as_posix()) +from server import RunServer + + +class YYeTsTest(AsyncHTTPTestCase): + def get_app(self): + return RunServer.application + + +class TestIndex(YYeTsTest): + + def test_homepage(self): + response = self.fetch('/') + self.assertEqual(response.code, 200) + self.assertTrue(b'' in response.body) + + +if __name__ == '__main__': + unittest.main()