Compare commits
71 Commits
master
...
710d70dbfd
| Author | SHA1 | Date | |
|---|---|---|---|
| 710d70dbfd | |||
| 6f2edeaf89 | |||
| 769d40e5bb | |||
| c53f1f50c9 | |||
| 9cae04584d | |||
| efcadde111 | |||
| 145e277895 | |||
| 1b76d36352 | |||
| a7cf43e0cc | |||
| dd8a68a267 | |||
| 6bf816db10 | |||
| becfc7feef | |||
| 25cddecfe9 | |||
| 292a3fd388 | |||
| 87461cce4a | |||
| 080ae6ab0c | |||
| c8284f86b7 | |||
| f4717c74e4 | |||
| c6940bbca5 | |||
| 5506cc2e7f | |||
| 10bd5e7412 | |||
| 3162911f1e | |||
| 7f00ca6055 | |||
| 367cb85657 | |||
| 9be3e03c2d | |||
| 2c67b0cacd | |||
| 6c198dcc76 | |||
| e37a3c652b | |||
| 0e45dc8de7 | |||
| 52c0802572 | |||
| 361490fc43 | |||
| b4641b6591 | |||
| ab343b92b7 | |||
| 548902e095 | |||
| e92c5f1c47 | |||
| b079e75029 | |||
| 5483b57a50 | |||
| fd380c1890 | |||
| 957cffe48d | |||
| 022347688d | |||
| 3675cb0538 | |||
| 4fbbbf5122 | |||
| 4fc4181e4c | |||
| d944ca48f2 | |||
| 9907d6b484 | |||
| cae6985aec | |||
| a9ea8f193f | |||
| ab346ccb19 | |||
| 7a529aa27b | |||
| 4527e54647 | |||
| d6aa3ff42b | |||
| 1ec1100f52 | |||
| dffddb7d28 | |||
| 21ef7c4bfc | |||
| af965a7ef9 | |||
| 09bb3e4a8a | |||
| 3ac8f3af8e | |||
| a3a6a84c97 | |||
| 1111d37074 | |||
| 48bb5dd489 | |||
| 6a309e0e11 | |||
| 7a82dc2fc7 | |||
| b4b567704c | |||
| 8a78d40c15 | |||
| 11afb7bf38 | |||
| 2af1e6d738 | |||
| 9f1de7aa8c | |||
| bfa64d4b8f | |||
| 027e41be46 | |||
| ce13a3e829 | |||
| 8e5c73c686 |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,2 +1,7 @@
|
|||||||
*.pyo
|
*.pyo
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
.gitignore
|
||||||
|
*.ipynb
|
||||||
|
|||||||
BIN
bin/.DS_Store
vendored
Normal file
BIN
bin/.DS_Store
vendored
Normal file
Binary file not shown.
1
lib/plugin/__init__.py
Normal file
1
lib/plugin/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
from .ffmpeg_queue import FfmpegQueueEntity, FfmpegQueue
|
||||||
301
lib/plugin/ffmpeg_queue.py
Normal file
301
lib/plugin/ffmpeg_queue.py
Normal file
@@ -0,0 +1,301 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#########################################################
|
||||||
|
# python
|
||||||
|
import abc
|
||||||
|
import os
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
import traceback
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
from framework import py_queue
|
||||||
|
|
||||||
|
|
||||||
|
# third-party
|
||||||
|
# sjva 공용
|
||||||
|
#########################################################
|
||||||
|
|
||||||
|
|
||||||
|
class FfmpegQueueEntity(abc.ABCMeta("ABC", (object,), {"__slots__": ()})):
|
||||||
|
def __init__(self, P, module_logic, info):
|
||||||
|
self.P = P
|
||||||
|
self.module_logic = module_logic
|
||||||
|
self.entity_id = -1 # FfmpegQueueEntity.static_index
|
||||||
|
self.info = info
|
||||||
|
self.url = None
|
||||||
|
self.ffmpeg_status = -1
|
||||||
|
self.ffmpeg_status_kor = "대기중"
|
||||||
|
self.ffmpeg_percent = 0
|
||||||
|
self.ffmpeg_arg = None
|
||||||
|
self.cancel = False
|
||||||
|
self.created_time = datetime.now().strftime("%m-%d %H:%M:%S")
|
||||||
|
self.savepath = None
|
||||||
|
self.filename = None
|
||||||
|
self.filepath = None
|
||||||
|
self.quality = None
|
||||||
|
self.headers = None
|
||||||
|
# FfmpegQueueEntity.static_index += 1
|
||||||
|
# FfmpegQueueEntity.entity_list.append(self)
|
||||||
|
|
||||||
|
def get_video_url(self):
|
||||||
|
return self.url
|
||||||
|
|
||||||
|
def get_video_filepath(self):
|
||||||
|
return self.filepath
|
||||||
|
|
||||||
|
@abc.abstractmethod
|
||||||
|
def refresh_status(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abc.abstractmethod
|
||||||
|
def info_dict(self, tmp):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def download_completed(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def as_dict(self):
|
||||||
|
tmp = {}
|
||||||
|
tmp["entity_id"] = self.entity_id
|
||||||
|
tmp["url"] = self.url
|
||||||
|
tmp["ffmpeg_status"] = self.ffmpeg_status
|
||||||
|
tmp["ffmpeg_status_kor"] = self.ffmpeg_status_kor
|
||||||
|
tmp["ffmpeg_percent"] = self.ffmpeg_percent
|
||||||
|
tmp["ffmpeg_arg"] = self.ffmpeg_arg
|
||||||
|
tmp["cancel"] = self.cancel
|
||||||
|
tmp["created_time"] = self.created_time # .strftime('%m-%d %H:%M:%S')
|
||||||
|
tmp["savepath"] = self.savepath
|
||||||
|
tmp["filename"] = self.filename
|
||||||
|
tmp["filepath"] = self.filepath
|
||||||
|
tmp["quality"] = self.quality
|
||||||
|
# tmp['current_speed'] = self.ffmpeg_arg['current_speed'] if self.ffmpeg_arg is not None else ''
|
||||||
|
tmp = self.info_dict(tmp)
|
||||||
|
return tmp
|
||||||
|
|
||||||
|
|
||||||
|
class FfmpegQueue(object):
|
||||||
|
def __init__(self, P, max_ffmpeg_count):
|
||||||
|
self.P = P
|
||||||
|
self.static_index = 1
|
||||||
|
self.entity_list = []
|
||||||
|
self.current_ffmpeg_count = 0
|
||||||
|
self.download_queue = None
|
||||||
|
self.download_thread = None
|
||||||
|
self.max_ffmpeg_count = max_ffmpeg_count
|
||||||
|
if self.max_ffmpeg_count is None or self.max_ffmpeg_count == "":
|
||||||
|
self.max_ffmpeg_count = 1
|
||||||
|
|
||||||
|
def queue_start(self):
|
||||||
|
try:
|
||||||
|
if self.download_queue is None:
|
||||||
|
self.download_queue = py_queue.Queue()
|
||||||
|
if self.download_thread is None:
|
||||||
|
self.download_thread = threading.Thread(
|
||||||
|
target=self.download_thread_function, args=()
|
||||||
|
)
|
||||||
|
self.download_thread.daemon = True
|
||||||
|
self.download_thread.start()
|
||||||
|
except Exception as exception:
|
||||||
|
self.P.logger.error("Exception:%s", exception)
|
||||||
|
self.P.logger.error(traceback.format_exc())
|
||||||
|
|
||||||
|
def download_thread_function(self):
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
if self.current_ffmpeg_count < self.max_ffmpeg_count:
|
||||||
|
break
|
||||||
|
time.sleep(5)
|
||||||
|
except Exception as exception:
|
||||||
|
self.P.logger.error("Exception:%s", exception)
|
||||||
|
self.P.logger.error(traceback.format_exc())
|
||||||
|
self.P.logger.error(
|
||||||
|
"current_ffmpeg_count : %s", self.current_ffmpeg_count
|
||||||
|
)
|
||||||
|
self.P.logger.error(
|
||||||
|
"max_ffmpeg_count : %s", self.max_ffmpeg_count
|
||||||
|
)
|
||||||
|
break
|
||||||
|
entity = self.download_queue.get()
|
||||||
|
if entity.cancel:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# from .logic_ani24 import LogicAni24
|
||||||
|
# entity.url = LogicAni24.get_video_url(entity.info['code'])
|
||||||
|
video_url = entity.get_video_url()
|
||||||
|
if video_url is None:
|
||||||
|
entity.ffmpeg_status_kor = "URL실패"
|
||||||
|
entity.refresh_status()
|
||||||
|
# plugin.socketio_list_refresh()
|
||||||
|
continue
|
||||||
|
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
# max_pf_count = 0
|
||||||
|
# save_path = ModelSetting.get('download_path')
|
||||||
|
# if ModelSetting.get('auto_make_folder') == 'True':
|
||||||
|
# program_path = os.path.join(save_path, entity.info['filename'].split('.')[0])
|
||||||
|
# save_path = program_path
|
||||||
|
# try:
|
||||||
|
# if not os.path.exists(save_path):
|
||||||
|
# os.makedirs(save_path)
|
||||||
|
# except:
|
||||||
|
# logger.debug('program path make fail!!')
|
||||||
|
|
||||||
|
# 파일 존재여부 체크
|
||||||
|
filepath = str(entity.get_video_filepath())
|
||||||
|
self.P.logger.debug(filepath)
|
||||||
|
self.P.logger.debug(entity.get_video_filepath())
|
||||||
|
if os.path.exists(filepath):
|
||||||
|
entity.ffmpeg_status_kor = "파일 있음"
|
||||||
|
entity.ffmpeg_percent = 100
|
||||||
|
entity.refresh_status()
|
||||||
|
# plugin.socketio_list_refresh()
|
||||||
|
continue
|
||||||
|
dirname = os.path.dirname(filepath)
|
||||||
|
self.P.logger.debug(type(dirname))
|
||||||
|
self.P.logger.debug(dirname)
|
||||||
|
if not os.path.exists(dirname):
|
||||||
|
os.makedirs(dirname)
|
||||||
|
f = ffmpeg.Ffmpeg(
|
||||||
|
video_url,
|
||||||
|
os.path.basename(filepath),
|
||||||
|
plugin_id=entity.entity_id,
|
||||||
|
listener=self.ffmpeg_listener,
|
||||||
|
call_plugin=self.P.package_name,
|
||||||
|
save_path=dirname,
|
||||||
|
headers=entity.headers,
|
||||||
|
)
|
||||||
|
f.start()
|
||||||
|
self.current_ffmpeg_count += 1
|
||||||
|
self.download_queue.task_done()
|
||||||
|
except Exception as exception:
|
||||||
|
self.P.logger.error("Exception:%s", exception)
|
||||||
|
self.P.logger.error(traceback.format_exc())
|
||||||
|
|
||||||
|
def ffmpeg_listener(self, **arg):
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
entity = self.get_entity_by_entity_id(arg["plugin_id"])
|
||||||
|
if entity is None:
|
||||||
|
return
|
||||||
|
if arg["type"] == "status_change":
|
||||||
|
if arg["status"] == ffmpeg.Status.DOWNLOADING:
|
||||||
|
pass
|
||||||
|
elif arg["status"] == ffmpeg.Status.COMPLETED:
|
||||||
|
entity.download_completed()
|
||||||
|
elif arg["status"] == ffmpeg.Status.READY:
|
||||||
|
pass
|
||||||
|
elif arg["type"] == "last":
|
||||||
|
self.current_ffmpeg_count += -1
|
||||||
|
elif arg["type"] == "log":
|
||||||
|
pass
|
||||||
|
elif arg["type"] == "normal":
|
||||||
|
pass
|
||||||
|
|
||||||
|
entity.ffmpeg_arg = arg
|
||||||
|
entity.ffmpeg_status = int(arg["status"])
|
||||||
|
entity.ffmpeg_status_kor = str(arg["status"])
|
||||||
|
entity.ffmpeg_percent = arg["data"]["percent"]
|
||||||
|
entity.ffmpeg_arg["status"] = str(arg["status"])
|
||||||
|
# self.P.logger.debug(arg)
|
||||||
|
# import plugin
|
||||||
|
# arg['status'] = str(arg['status'])
|
||||||
|
# plugin.socketio_callback('status', arg)
|
||||||
|
entity.refresh_status()
|
||||||
|
|
||||||
|
# FfmpegQueueEntity.static_index += 1
|
||||||
|
# FfmpegQueueEntity.entity_list.append(self)
|
||||||
|
|
||||||
|
def add_queue(self, entity):
|
||||||
|
try:
|
||||||
|
# entity = QueueEntity.create(info)
|
||||||
|
# if entity is not None:
|
||||||
|
# LogicQueue.download_queue.put(entity)
|
||||||
|
# return True
|
||||||
|
entity.entity_id = self.static_index
|
||||||
|
self.static_index += 1
|
||||||
|
self.entity_list.append(entity)
|
||||||
|
self.download_queue.put(entity)
|
||||||
|
return True
|
||||||
|
except Exception as exception:
|
||||||
|
self.P.logger.error("Exception:%s", exception)
|
||||||
|
self.P.logger.error(traceback.format_exc())
|
||||||
|
return False
|
||||||
|
|
||||||
|
def set_max_ffmpeg_count(self, max_ffmpeg_count):
|
||||||
|
self.max_ffmpeg_count = max_ffmpeg_count
|
||||||
|
|
||||||
|
def get_max_ffmpeg_count(self):
|
||||||
|
return self.max_ffmpeg_count
|
||||||
|
|
||||||
|
def command(self, cmd, entity_id):
|
||||||
|
self.P.logger.debug("command :%s %s", cmd, entity_id)
|
||||||
|
ret = {}
|
||||||
|
try:
|
||||||
|
if cmd == "cancel":
|
||||||
|
self.P.logger.debug("command :%s %s", cmd, entity_id)
|
||||||
|
entity = self.get_entity_by_entity_id(entity_id)
|
||||||
|
if entity is not None:
|
||||||
|
if entity.ffmpeg_status == -1:
|
||||||
|
entity.cancel = True
|
||||||
|
entity.ffmpeg_status_kor = "취소"
|
||||||
|
# entity.refresh_status()
|
||||||
|
ret["ret"] = "refresh"
|
||||||
|
elif entity.ffmpeg_status != 5:
|
||||||
|
ret["ret"] = "notify"
|
||||||
|
ret["log"] = "다운로드중 상태가 아닙니다."
|
||||||
|
else:
|
||||||
|
idx = entity.ffmpeg_arg["data"]["idx"]
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
ffmpeg.Ffmpeg.stop_by_idx(idx)
|
||||||
|
entity.refresh_status()
|
||||||
|
ret["ret"] = "refresh"
|
||||||
|
elif cmd == "reset":
|
||||||
|
if self.download_queue is not None:
|
||||||
|
with self.download_queue.mutex:
|
||||||
|
self.download_queue.queue.clear()
|
||||||
|
for _ in self.entity_list:
|
||||||
|
if _.ffmpeg_status == 5:
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
idx = _.ffmpeg_arg["data"]["idx"]
|
||||||
|
ffmpeg.Ffmpeg.stop_by_idx(idx)
|
||||||
|
self.entity_list = []
|
||||||
|
ret["ret"] = "refresh"
|
||||||
|
elif cmd == "delete_completed":
|
||||||
|
new_list = []
|
||||||
|
for _ in self.entity_list:
|
||||||
|
if _.ffmpeg_status_kor in ["파일 있음", "취소", "사용자중지"]:
|
||||||
|
continue
|
||||||
|
if _.ffmpeg_status != 7:
|
||||||
|
new_list.append(_)
|
||||||
|
self.entity_list = new_list
|
||||||
|
ret["ret"] = "refresh"
|
||||||
|
elif cmd == "remove":
|
||||||
|
new_list = []
|
||||||
|
for _ in self.entity_list:
|
||||||
|
if _.entity_id == entity_id:
|
||||||
|
continue
|
||||||
|
new_list.append(_)
|
||||||
|
self.entity_list = new_list
|
||||||
|
ret["ret"] = "refresh"
|
||||||
|
return ret
|
||||||
|
except Exception as exception:
|
||||||
|
self.P.logger.error("Exception:%s", exception)
|
||||||
|
self.P.logger.error(traceback.format_exc())
|
||||||
|
|
||||||
|
def get_entity_by_entity_id(self, entity_id):
|
||||||
|
for _ in self.entity_list:
|
||||||
|
if _.entity_id == entity_id:
|
||||||
|
return _
|
||||||
|
return None
|
||||||
|
|
||||||
|
def get_entity_list(self):
|
||||||
|
ret = []
|
||||||
|
for x in self.entity_list:
|
||||||
|
tmp = x.as_dict()
|
||||||
|
ret.append(tmp)
|
||||||
|
return ret
|
||||||
25
lib/utils.py
Normal file
25
lib/utils.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import os
|
||||||
|
import time
|
||||||
|
from functools import wraps
|
||||||
|
|
||||||
|
try:
|
||||||
|
from loguru import logger
|
||||||
|
except:
|
||||||
|
os.system(f"pip install loguru")
|
||||||
|
from loguru import logger
|
||||||
|
|
||||||
|
|
||||||
|
def yommi_timeit(func):
|
||||||
|
@wraps(func)
|
||||||
|
def timeit_wrapper(*args, **kwargs):
|
||||||
|
start_time = time.perf_counter()
|
||||||
|
result = func(*args, **kwargs)
|
||||||
|
end_time = time.perf_counter()
|
||||||
|
total_time = end_time - start_time
|
||||||
|
# print(f"Function {func.__name__}{args} {kwargs} Took {total_time:.4f} secs")
|
||||||
|
logger.opt(colors=True).debug(
|
||||||
|
f"<red>{func.__name__}{args} {kwargs}</red> function took <green>{total_time:.4f}</green> secs"
|
||||||
|
)
|
||||||
|
return result
|
||||||
|
|
||||||
|
return timeit_wrapper
|
||||||
73
linkey.py
Normal file
73
linkey.py
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
def get_html_selenium(url, referer):
|
||||||
|
from selenium.webdriver.common.by import By
|
||||||
|
from selenium import webdriver
|
||||||
|
from selenium_stealth import stealth
|
||||||
|
from webdriver_manager.chrome import ChromeDriverManager
|
||||||
|
import time
|
||||||
|
import platform
|
||||||
|
import os
|
||||||
|
|
||||||
|
os_platform = platform.system()
|
||||||
|
|
||||||
|
options = webdriver.ChromeOptions()
|
||||||
|
# 크롬드라이버 헤더 옵션추가 (리눅스에서 실행시 필수)
|
||||||
|
options.add_argument("start-maximized")
|
||||||
|
# options.add_argument("--headless")
|
||||||
|
options.add_argument("--no-sandbox")
|
||||||
|
options.add_experimental_option("excludeSwitches", ["enable-automation"])
|
||||||
|
options.add_experimental_option("useAutomationExtension", False)
|
||||||
|
|
||||||
|
if os_platform == "Darwin":
|
||||||
|
# 크롬드라이버 경로
|
||||||
|
driver_path = "./bin/Darwin/chromedriver"
|
||||||
|
# driver = webdriver.Chrome(executable_path=driver_path, chrome_options=options)
|
||||||
|
driver = webdriver.Chrome(
|
||||||
|
ChromeDriverManager().install(), chrome_options=options
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
driver_bin_path = os.path.join(
|
||||||
|
os.path.dirname(__file__), "bin", f"{os_platform}"
|
||||||
|
)
|
||||||
|
driver_path = f"{driver_bin_path}/chromedriver"
|
||||||
|
driver = webdriver.Chrome(executable_path=driver_path, chrome_options=options)
|
||||||
|
|
||||||
|
stealth(
|
||||||
|
driver,
|
||||||
|
languages=["en-US", "en"],
|
||||||
|
vendor="Google Inc.",
|
||||||
|
platform="Win32",
|
||||||
|
webgl_vendor="Intel Inc.",
|
||||||
|
renderer="Intel Iris OpenGL Engine",
|
||||||
|
fix_hairline=True,
|
||||||
|
)
|
||||||
|
driver.get(url)
|
||||||
|
|
||||||
|
driver.refresh()
|
||||||
|
print(f"current_url:: {driver.current_url}")
|
||||||
|
# logger.debug(f"current_cookie:: {driver.get_cookies()}")
|
||||||
|
cookies_list = driver.get_cookies()
|
||||||
|
|
||||||
|
cookies_dict = {}
|
||||||
|
for cookie in cookies_list:
|
||||||
|
cookies_dict[cookie["name"]] = cookie["value"]
|
||||||
|
|
||||||
|
print(cookies_dict)
|
||||||
|
|
||||||
|
# LogicAniLife.cookies = cookies_list
|
||||||
|
# # LogicAniLife.headers["Cookie"] = driver.get_cookies()
|
||||||
|
# LogicAniLife.episode_url = driver.current_url
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
elem = driver.find_element(By.XPATH, "//*")
|
||||||
|
source_code = elem.get_attribute("outerHTML")
|
||||||
|
|
||||||
|
li_elem = driver.find_element(By.XPATH, "//li[@class='-qHwcFXhj0']//a")
|
||||||
|
li_elem.click()
|
||||||
|
|
||||||
|
time.sleep(20.0)
|
||||||
|
|
||||||
|
return source_code.encode("utf-8")
|
||||||
|
|
||||||
|
|
||||||
|
url = "https://smartstore.naver.com/flamingo_k"
|
||||||
|
get_html_selenium(url=url, referer=None)
|
||||||
358
logic_anilife.py
358
logic_anilife.py
@@ -1,4 +1,5 @@
|
|||||||
import os
|
import os
|
||||||
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import threading
|
import threading
|
||||||
import traceback
|
import traceback
|
||||||
@@ -17,12 +18,20 @@ from lxml import html
|
|||||||
from urllib import parse
|
from urllib import parse
|
||||||
import urllib
|
import urllib
|
||||||
|
|
||||||
|
# my
|
||||||
|
from .lib.utils import yommi_timeit
|
||||||
|
|
||||||
|
|
||||||
|
os.system(f"pip install playwright==1.27.1")
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
"beautifulsoup4",
|
"beautifulsoup4",
|
||||||
"requests-cache",
|
"requests-cache",
|
||||||
"cloudscraper",
|
"cloudscraper",
|
||||||
"selenium_stealth",
|
"selenium_stealth",
|
||||||
"webdriver_manager",
|
"webdriver_manager",
|
||||||
|
"html-to-json",
|
||||||
|
"playwright-har-tracer",
|
||||||
]
|
]
|
||||||
for package in packages:
|
for package in packages:
|
||||||
try:
|
try:
|
||||||
@@ -45,10 +54,14 @@ from framework.util import Util
|
|||||||
from framework.common.util import headers
|
from framework.common.util import headers
|
||||||
from plugin import (
|
from plugin import (
|
||||||
LogicModuleBase,
|
LogicModuleBase,
|
||||||
FfmpegQueueEntity,
|
|
||||||
FfmpegQueue,
|
|
||||||
default_route_socketio,
|
default_route_socketio,
|
||||||
|
# FfmpegQueue,
|
||||||
|
# FfmpegQueueEntity,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# 철자가 틀린 부분이 있어서 분리함
|
||||||
|
#
|
||||||
|
from .lib.plugin import FfmpegQueue, FfmpegQueueEntity
|
||||||
from tool_base import d
|
from tool_base import d
|
||||||
|
|
||||||
# 패키지
|
# 패키지
|
||||||
@@ -65,20 +78,21 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
db_default = {
|
db_default = {
|
||||||
"anilife_db_version": "1",
|
"anilife_db_version": "1",
|
||||||
"anilife_url": "https://anilife.live",
|
"anilife_url": "https://anilife.live",
|
||||||
"anilife_download_path": os.path.join(path_data, P.package_name, "ohli24"),
|
"anilife_download_path": os.path.join(path_data, P.package_name, "anilife"),
|
||||||
"anilife_auto_make_folder": "True",
|
"anilife_auto_make_folder": "True",
|
||||||
"anilife_auto_make_season_folder": "True",
|
"anilife_auto_make_season_folder": "True",
|
||||||
"anilife_finished_insert": "[완결]",
|
"anilife_finished_insert": "[완결]",
|
||||||
"anilife_max_ffmpeg_process_count": "1",
|
"anilife_max_ffmpeg_process_count": "1",
|
||||||
"anilife_order_desc": "False",
|
"anilife_order_desc": "True",
|
||||||
"anilife_auto_start": "False",
|
"anilife_auto_start": "False",
|
||||||
"anilife_interval": "* 5 * * *",
|
"anilife_interval": "* 5 * * *",
|
||||||
"anilife_auto_mode_all": "False",
|
"anilife_auto_mode_all": "False",
|
||||||
"anilife_auto_code_list": "all",
|
"anilife_auto_code_list": "",
|
||||||
"anilife_current_code": "",
|
"anilife_current_code": "",
|
||||||
"anilife_uncompleted_auto_enqueue": "False",
|
"anilife_uncompleted_auto_enqueue": "False",
|
||||||
"anilife_image_url_prefix_series": "https://www.jetcloud.cc/series/",
|
"anilife_image_url_prefix_series": "",
|
||||||
"anilife_image_url_prefix_episode": "https://www.jetcloud-list.cc/thumbnail/",
|
"anilife_image_url_prefix_episode": "",
|
||||||
|
"anilife_discord_notify": "True",
|
||||||
}
|
}
|
||||||
|
|
||||||
current_headers = None
|
current_headers = None
|
||||||
@@ -160,7 +174,7 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
async def get_html_playwright(
|
async def get_html_playwright(
|
||||||
url: str,
|
url: str,
|
||||||
headless: bool = False,
|
headless: bool = False,
|
||||||
referer: str = None,
|
referer: str = "",
|
||||||
engine: str = "chrome",
|
engine: str = "chrome",
|
||||||
stealth: bool = False,
|
stealth: bool = False,
|
||||||
) -> str:
|
) -> str:
|
||||||
@@ -172,43 +186,59 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
cookie = None
|
cookie = None
|
||||||
|
# browser_args = [
|
||||||
|
# "--window-size=1300,570",
|
||||||
|
# "--window-position=000,000",
|
||||||
|
# "--disable-dev-shm-usage",
|
||||||
|
# "--no-sandbox",
|
||||||
|
# "--disable-web-security",
|
||||||
|
# "--disable-features=site-per-process",
|
||||||
|
# "--disable-setuid-sandbox",
|
||||||
|
# "--disable-accelerated-2d-canvas",
|
||||||
|
# "--no-first-run",
|
||||||
|
# "--no-zygote",
|
||||||
|
# # '--single-process',
|
||||||
|
# "--disable-gpu",
|
||||||
|
# # "--use-gl=egl",
|
||||||
|
# "--disable-blink-features=AutomationControlled",
|
||||||
|
# # "--disable-background-networking",
|
||||||
|
# # "--enable-features=NetworkService,NetworkServiceInProcess",
|
||||||
|
# "--disable-background-timer-throttling",
|
||||||
|
# "--disable-backgrounding-occluded-windows",
|
||||||
|
# "--disable-breakpad",
|
||||||
|
# "--disable-client-side-phishing-detection",
|
||||||
|
# "--disable-component-extensions-with-background-pages",
|
||||||
|
# "--disable-default-apps",
|
||||||
|
# "--disable-extensions",
|
||||||
|
# "--disable-features=Translate",
|
||||||
|
# "--disable-hang-monitor",
|
||||||
|
# "--disable-ipc-flooding-protection",
|
||||||
|
# "--disable-popup-blocking",
|
||||||
|
# "--disable-prompt-on-repost",
|
||||||
|
# # "--disable-renderer-backgrounding",
|
||||||
|
# "--disable-sync",
|
||||||
|
# "--force-color-profile=srgb",
|
||||||
|
# # "--metrics-recording-only",
|
||||||
|
# # "--enable-automation",
|
||||||
|
# "--password-store=basic",
|
||||||
|
# # "--use-mock-keychain",
|
||||||
|
# # "--hide-scrollbars",
|
||||||
|
# "--mute-audio",
|
||||||
|
# ]
|
||||||
browser_args = [
|
browser_args = [
|
||||||
"--window-size=1300,570",
|
"--window-size=1300,570",
|
||||||
"--window-position=000,000",
|
"--window-position=0,0",
|
||||||
"--disable-dev-shm-usage",
|
# "--disable-dev-shm-usage",
|
||||||
"--no-sandbox",
|
"--no-sandbox",
|
||||||
"--disable-web-security",
|
# "--disable-web-security",
|
||||||
"--disable-features=site-per-process",
|
# "--disable-features=site-per-process",
|
||||||
"--disable-setuid-sandbox",
|
# "--disable-setuid-sandbox",
|
||||||
"--disable-accelerated-2d-canvas",
|
# "--disable-accelerated-2d-canvas",
|
||||||
"--no-first-run",
|
# "--no-first-run",
|
||||||
"--no-zygote",
|
# "--no-zygote",
|
||||||
# '--single-process',
|
# "--single-process",
|
||||||
"--disable-gpu",
|
"--disable-gpu",
|
||||||
"--use-gl=egl",
|
# "--use-gl=egl",
|
||||||
"--disable-blink-features=AutomationControlled",
|
|
||||||
"--disable-background-networking",
|
|
||||||
"--enable-features=NetworkService,NetworkServiceInProcess",
|
|
||||||
"--disable-background-timer-throttling",
|
|
||||||
"--disable-backgrounding-occluded-windows",
|
|
||||||
"--disable-breakpad",
|
|
||||||
"--disable-client-side-phishing-detection",
|
|
||||||
"--disable-component-extensions-with-background-pages",
|
|
||||||
"--disable-default-apps",
|
|
||||||
"--disable-extensions",
|
|
||||||
"--disable-features=Translate",
|
|
||||||
"--disable-hang-monitor",
|
|
||||||
"--disable-ipc-flooding-protection",
|
|
||||||
"--disable-popup-blocking",
|
|
||||||
"--disable-prompt-on-repost",
|
|
||||||
"--disable-renderer-backgrounding",
|
|
||||||
"--disable-sync",
|
|
||||||
"--force-color-profile=srgb",
|
|
||||||
"--metrics-recording-only",
|
|
||||||
"--enable-automation",
|
|
||||||
"--password-store=basic",
|
|
||||||
"--use-mock-keychain",
|
|
||||||
"--hide-scrollbars",
|
|
||||||
"--mute-audio",
|
"--mute-audio",
|
||||||
]
|
]
|
||||||
# scraper = cloudscraper.create_scraper(
|
# scraper = cloudscraper.create_scraper(
|
||||||
@@ -296,7 +326,8 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
url, wait_until="load", referer=LogicAniLife.headers["Referer"]
|
url, wait_until="load", referer=LogicAniLife.headers["Referer"]
|
||||||
)
|
)
|
||||||
# page.wait_for_timeout(10000)
|
# page.wait_for_timeout(10000)
|
||||||
await asyncio.sleep(2.9)
|
# await asyncio.sleep(2.9)
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
# await page.reload()
|
# await page.reload()
|
||||||
|
|
||||||
@@ -307,11 +338,13 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
print(f"page.url:: {page.url}")
|
print(f"page.url:: {page.url}")
|
||||||
LogicAniLife.origin_url = page.url
|
LogicAniLife.origin_url = page.url
|
||||||
|
|
||||||
# print(page.content())
|
temp_content = await page.content()
|
||||||
|
#
|
||||||
|
# print(temp_content)
|
||||||
|
|
||||||
print(f"run at {time.time() - start} sec")
|
print(f"run at {time.time() - start} sec")
|
||||||
|
|
||||||
return await page.content()
|
return temp_content
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Exception:%s", e)
|
logger.error("Exception:%s", e)
|
||||||
logger.error(traceback.format_exc())
|
logger.error(traceback.format_exc())
|
||||||
@@ -538,14 +571,12 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
har = await tracer.flush()
|
har = await tracer.flush()
|
||||||
|
|
||||||
# page.wait_for_timeout(10000)
|
# page.wait_for_timeout(10000)
|
||||||
await asyncio.sleep(2)
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
# logger.debug(har)
|
# logger.debug(har)
|
||||||
# page.reload()
|
# page.reload()
|
||||||
|
|
||||||
# time.sleep(10)
|
# time.sleep(10)
|
||||||
# cookies = context.cookies
|
|
||||||
# print(cookies)
|
|
||||||
|
|
||||||
# print(page.content())
|
# print(page.content())
|
||||||
# vod_url = page.evaluate(
|
# vod_url = page.evaluate(
|
||||||
@@ -558,31 +589,59 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
# return _0x55265f(0x99) + alJson[_0x55265f(0x91)]
|
# return _0x55265f(0x99) + alJson[_0x55265f(0x91)]
|
||||||
# }"""
|
# }"""
|
||||||
# )
|
# )
|
||||||
result_har_json = har.to_json()
|
# result_har_json = har.to_json()
|
||||||
|
|
||||||
|
await context.close()
|
||||||
|
await browser.close()
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Exception:%s", e)
|
||||||
|
result = subprocess.run(
|
||||||
|
["playwright", "install"], stdout=subprocess.PIPE, text=True
|
||||||
|
)
|
||||||
|
print(result.stdout)
|
||||||
|
|
||||||
|
logger.error(traceback.format_exc())
|
||||||
|
|
||||||
|
finally:
|
||||||
|
await browser.close()
|
||||||
|
|
||||||
result_har_dict = har.to_dict()
|
result_har_dict = har.to_dict()
|
||||||
# logger.debug(result_har_dict)
|
# logger.debug(result_har_dict)
|
||||||
|
|
||||||
tmp_video_url = []
|
tmp_video_url = []
|
||||||
for i, elem in enumerate(result_har_dict["log"]["entries"]):
|
for i, elem in enumerate(result_har_dict["log"]["entries"]):
|
||||||
|
# if "m3u8" in elem["request"]["url"]:
|
||||||
if "m3u8" in elem["request"]["url"]:
|
if "m3u8" in elem["request"]["url"]:
|
||||||
logger.debug(elem["request"]["url"])
|
logger.debug(elem["request"]["url"])
|
||||||
tmp_video_url.append(elem["request"]["url"])
|
tmp_video_url.append(elem["request"]["url"])
|
||||||
|
|
||||||
|
logger.debug(tmp_video_url)
|
||||||
vod_url = tmp_video_url[-1]
|
vod_url = tmp_video_url[-1]
|
||||||
|
for i, el in enumerate(tmp_video_url):
|
||||||
|
if el.endswith("m3u8"):
|
||||||
|
vod_url = el
|
||||||
|
|
||||||
logger.debug(f"vod_url:: {vod_url}")
|
logger.debug(f"vod_url:: {vod_url}")
|
||||||
|
|
||||||
logger.debug(f"run at {time.time() - start} sec")
|
logger.debug(f"run at {time.time() - start} sec")
|
||||||
|
|
||||||
return vod_url
|
return vod_url
|
||||||
except Exception as e:
|
|
||||||
logger.error("Exception:%s", e)
|
|
||||||
logger.error(traceback.format_exc())
|
|
||||||
finally:
|
|
||||||
await browser.close()
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_html_selenium(url: str, referer: str) -> bytes:
|
@yommi_timeit
|
||||||
|
def get_html_selenium(
|
||||||
|
url: str,
|
||||||
|
referer: str,
|
||||||
|
headless=True,
|
||||||
|
linux=True,
|
||||||
|
maximize=True,
|
||||||
|
user_agent=False,
|
||||||
|
lang_kr=False,
|
||||||
|
secret_mode=False,
|
||||||
|
download_path=None,
|
||||||
|
stealth: bool = False,
|
||||||
|
) -> bytes:
|
||||||
from selenium.webdriver.common.by import By
|
from selenium.webdriver.common.by import By
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
from selenium_stealth import stealth
|
from selenium_stealth import stealth
|
||||||
@@ -590,16 +649,44 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
options = webdriver.ChromeOptions()
|
options = webdriver.ChromeOptions()
|
||||||
|
# options.add_experimental_option('excludeSwitches', ['enable-logging'])
|
||||||
# 크롬드라이버 헤더 옵션추가 (리눅스에서 실행시 필수)
|
# 크롬드라이버 헤더 옵션추가 (리눅스에서 실행시 필수)
|
||||||
options.add_argument("start-maximized")
|
|
||||||
|
if headless:
|
||||||
options.add_argument("--headless")
|
options.add_argument("--headless")
|
||||||
options.add_argument("--no-sandbox")
|
options.add_argument("--no-sandbox")
|
||||||
options.add_argument("window-size=1920x1080")
|
options.add_argument("window-size=1920x1080")
|
||||||
options.add_argument("disable-gpu")
|
options.add_argument("disable-gpu")
|
||||||
# options.add_argument('--no-sandbox')
|
# options.add_argument('--no-sandbox')
|
||||||
options.add_argument("--disable-dev-shm-usage")
|
options.add_argument("--disable-dev-shm-usage")
|
||||||
options.add_experimental_option("excludeSwitches", ["enable-automation"])
|
# 크롬 드라이버에 setuid를 하지 않음으로써 크롬의 충돌 막음
|
||||||
|
options.add_argument("--disable-setuid-sandbox")
|
||||||
|
|
||||||
|
# disabling extensions
|
||||||
|
options.add_argument("--disable-extensions")
|
||||||
|
|
||||||
|
if download_path:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if maximize:
|
||||||
|
options.add_argument("start-maximized")
|
||||||
|
|
||||||
|
# 일단 좀 더 확인 필요
|
||||||
|
options.add_experimental_option(
|
||||||
|
"excludeSwitches", ["enable-automation", "enable-logging"]
|
||||||
|
)
|
||||||
options.add_experimental_option("useAutomationExtension", False)
|
options.add_experimental_option("useAutomationExtension", False)
|
||||||
|
options.add_argument("--single-process")
|
||||||
|
|
||||||
|
if user_agent:
|
||||||
|
options.add_argument(
|
||||||
|
"user-agent=Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 "
|
||||||
|
"Safari/537.36"
|
||||||
|
)
|
||||||
|
if lang_kr:
|
||||||
|
options.add_argument("--lang=ko_KR")
|
||||||
|
if secret_mode:
|
||||||
|
options.add_argument("--incognito")
|
||||||
|
|
||||||
if LogicAniLife.os_platform == "Darwin":
|
if LogicAniLife.os_platform == "Darwin":
|
||||||
# 크롬드라이버 경로
|
# 크롬드라이버 경로
|
||||||
@@ -608,15 +695,22 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
driver = webdriver.Chrome(
|
driver = webdriver.Chrome(
|
||||||
ChromeDriverManager().install(), chrome_options=options
|
ChromeDriverManager().install(), chrome_options=options
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
driver_bin_path = os.path.join(
|
# driver_bin_path = os.path.join(
|
||||||
os.path.dirname(__file__), "bin", f"{LogicAniLife.os_platform}"
|
# os.path.dirname(__file__), "bin", f"{LogicAniLife.os_platform}"
|
||||||
)
|
# )
|
||||||
driver_path = f"{driver_bin_path}/chromedriver"
|
# driver_path = f"{driver_bin_path}/chromedriver"
|
||||||
|
# driver = webdriver.Chrome(
|
||||||
|
# executable_path=driver_path, chrome_options=options
|
||||||
|
# )
|
||||||
driver = webdriver.Chrome(
|
driver = webdriver.Chrome(
|
||||||
executable_path=driver_path, chrome_options=options
|
ChromeDriverManager().install(), chrome_options=options
|
||||||
)
|
)
|
||||||
|
|
||||||
|
driver.implicitly_wait(10)
|
||||||
|
|
||||||
|
if stealth:
|
||||||
stealth(
|
stealth(
|
||||||
driver,
|
driver,
|
||||||
languages=["ko-KR", "ko"],
|
languages=["ko-KR", "ko"],
|
||||||
@@ -628,7 +722,8 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
)
|
)
|
||||||
driver.get(url)
|
driver.get(url)
|
||||||
|
|
||||||
driver.refresh()
|
# driver.refresh()
|
||||||
|
|
||||||
logger.debug(f"current_url:: {driver.current_url}")
|
logger.debug(f"current_url:: {driver.current_url}")
|
||||||
# logger.debug(f"current_cookie:: {driver.get_cookies()}")
|
# logger.debug(f"current_cookie:: {driver.get_cookies()}")
|
||||||
cookies_list = driver.get_cookies()
|
cookies_list = driver.get_cookies()
|
||||||
@@ -641,7 +736,7 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
LogicAniLife.cookies = cookies_list
|
LogicAniLife.cookies = cookies_list
|
||||||
# LogicAniLife.headers["Cookie"] = driver.get_cookies()
|
# LogicAniLife.headers["Cookie"] = driver.get_cookies()
|
||||||
LogicAniLife.episode_url = driver.current_url
|
LogicAniLife.episode_url = driver.current_url
|
||||||
time.sleep(1)
|
# time.sleep(1)
|
||||||
elem = driver.find_element(By.XPATH, "//*")
|
elem = driver.find_element(By.XPATH, "//*")
|
||||||
source_code = elem.get_attribute("outerHTML")
|
source_code = elem.get_attribute("outerHTML")
|
||||||
|
|
||||||
@@ -771,6 +866,7 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
return render_template("sample.html", title="%s - %s" % (P.package_name, sub))
|
return render_template("sample.html", title="%s - %s" % (P.package_name, sub))
|
||||||
|
|
||||||
def process_ajax(self, sub, req):
|
def process_ajax(self, sub, req):
|
||||||
|
data = []
|
||||||
try:
|
try:
|
||||||
if sub == "analysis":
|
if sub == "analysis":
|
||||||
# code = req.form['code']
|
# code = req.form['code']
|
||||||
@@ -779,7 +875,6 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
|
|
||||||
wr_id = request.form.get("wr_id", None)
|
wr_id = request.form.get("wr_id", None)
|
||||||
bo_table = request.form.get("bo_table", None)
|
bo_table = request.form.get("bo_table", None)
|
||||||
data = []
|
|
||||||
|
|
||||||
# logger.info("code::: %s", code)
|
# logger.info("code::: %s", code)
|
||||||
P.ModelSetting.set("anilife_current_code", code)
|
P.ModelSetting.set("anilife_current_code", code)
|
||||||
@@ -787,7 +882,6 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
self.current_data = data
|
self.current_data = data
|
||||||
return jsonify({"ret": "success", "data": data, "code": code})
|
return jsonify({"ret": "success", "data": data, "code": code})
|
||||||
elif sub == "anime_list":
|
elif sub == "anime_list":
|
||||||
data = []
|
|
||||||
cate = request.form["type"]
|
cate = request.form["type"]
|
||||||
page = request.form["page"]
|
page = request.form["page"]
|
||||||
|
|
||||||
@@ -797,7 +891,6 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
{"ret": "success", "cate": cate, "page": page, "data": data}
|
{"ret": "success", "cate": cate, "page": page, "data": data}
|
||||||
)
|
)
|
||||||
elif sub == "complete_list":
|
elif sub == "complete_list":
|
||||||
data = []
|
|
||||||
|
|
||||||
cate = request.form["type"]
|
cate = request.form["type"]
|
||||||
logger.debug("cate:: %s", cate)
|
logger.debug("cate:: %s", cate)
|
||||||
@@ -809,9 +902,7 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
{"ret": "success", "cate": cate, "page": page, "data": data}
|
{"ret": "success", "cate": cate, "page": page, "data": data}
|
||||||
)
|
)
|
||||||
elif sub == "search":
|
elif sub == "search":
|
||||||
data = []
|
|
||||||
# cate = request.form["type"]
|
|
||||||
# page = request.form["page"]
|
|
||||||
cate = request.form["type"]
|
cate = request.form["type"]
|
||||||
query = request.form["query"]
|
query = request.form["query"]
|
||||||
page = request.form["page"]
|
page = request.form["page"]
|
||||||
@@ -867,8 +958,25 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
return jsonify(ModelAniLifeItem.web_list(request))
|
return jsonify(ModelAniLifeItem.web_list(request))
|
||||||
elif sub == "db_remove":
|
elif sub == "db_remove":
|
||||||
return jsonify(ModelAniLifeItem.delete_by_id(req.form["id"]))
|
return jsonify(ModelAniLifeItem.delete_by_id(req.form["id"]))
|
||||||
|
elif sub == "add_whitelist":
|
||||||
|
try:
|
||||||
|
# params = request.get_data()
|
||||||
|
# logger.debug(f"params: {params}")
|
||||||
|
# data_code = request.args.get("data_code")
|
||||||
|
params = request.get_json()
|
||||||
|
logger.debug(f"params:: {params}")
|
||||||
|
if params is not None:
|
||||||
|
code = params["data_code"]
|
||||||
|
logger.debug(f"params: {code}")
|
||||||
|
ret = LogicAniLife.add_whitelist(code)
|
||||||
|
else:
|
||||||
|
ret = LogicAniLife.add_whitelist()
|
||||||
|
return jsonify(ret)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
P.logger.error("Exception:%s", e)
|
logger.error("Exception:%s", e)
|
||||||
|
logger.error(traceback.format_exc())
|
||||||
|
except Exception as e:
|
||||||
|
P.logger.error(f"Exception: {str(e)}")
|
||||||
P.logger.error(traceback.format_exc())
|
P.logger.error(traceback.format_exc())
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@@ -925,21 +1033,42 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
return ret
|
return ret
|
||||||
|
|
||||||
def setting_save_after(self):
|
def setting_save_after(self):
|
||||||
if self.queue.get_max_ffmpeg_count() != P.ModelSetting.get_int(
|
pass
|
||||||
"anilife_max_ffmpeg_process_count"
|
# Todo: 버그 고쳐야함
|
||||||
):
|
# if self.queue.get_max_ffmpeg_count() != P.ModelSetting.get_int(
|
||||||
self.queue.set_max_ffmpeg_count(
|
# "anilife_max_ffmpeg_process_count"
|
||||||
P.ModelSetting.get_int("anilife_max_ffmpeg_process_count")
|
# ):
|
||||||
)
|
# self.queue.set_max_ffmpeg_count(
|
||||||
|
# P.ModelSetting.get_int("anilife_max_ffmpeg_process_count")
|
||||||
|
# )
|
||||||
|
|
||||||
def scheduler_function(self):
|
def scheduler_function(self):
|
||||||
logger.debug(f"ohli24 scheduler_function::=========================")
|
logger.debug(f"anilife scheduler_function:: =========================")
|
||||||
|
|
||||||
|
content_code_list = P.ModelSetting.get_list("anilife_auto_code_list", "|")
|
||||||
|
|
||||||
content_code_list = P.ModelSetting.get_list("ohli24_auto_code_list", "|")
|
|
||||||
url = f'{P.ModelSetting.get("anilife_url")}/dailyani'
|
|
||||||
if "all" in content_code_list:
|
if "all" in content_code_list:
|
||||||
|
url = f'{P.ModelSetting.get("anilife_url")}/dailyani'
|
||||||
ret_data = LogicAniLife.get_auto_anime_info(self, url=url)
|
ret_data = LogicAniLife.get_auto_anime_info(self, url=url)
|
||||||
|
|
||||||
|
elif len(content_code_list) > 0:
|
||||||
|
for item in content_code_list:
|
||||||
|
url = P.ModelSetting.get("anilife_url") + "/detail/id/" + item
|
||||||
|
print("scheduling url: %s", url)
|
||||||
|
# ret_data = LogicOhli24.get_auto_anime_info(self, url=url)
|
||||||
|
content_info = self.get_series_info(item)
|
||||||
|
|
||||||
|
# logger.debug(content_info)
|
||||||
|
# exit()
|
||||||
|
|
||||||
|
for episode_info in content_info["episode"]:
|
||||||
|
add_ret = self.add(episode_info)
|
||||||
|
if add_ret.startswith("enqueue"):
|
||||||
|
self.socketio_callback("list_refresh", "")
|
||||||
|
# logger.debug(f"data: {data}")
|
||||||
|
# self.current_data = data
|
||||||
|
# db에서 다운로드 완료 유무 체크
|
||||||
|
|
||||||
def plugin_load(self):
|
def plugin_load(self):
|
||||||
self.queue = FfmpegQueue(
|
self.queue = FfmpegQueue(
|
||||||
P, P.ModelSetting.get_int("anilife_max_ffmpeg_process_count")
|
P, P.ModelSetting.get_int("anilife_max_ffmpeg_process_count")
|
||||||
@@ -975,6 +1104,14 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
.strip()
|
.strip()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
regex = r"\t+"
|
||||||
|
subst = ""
|
||||||
|
regex1 = r"[\n]+"
|
||||||
|
subst1 = "<br/>"
|
||||||
|
des_items1 = re.sub(regex, subst, des_items1, 0, re.MULTILINE)
|
||||||
|
des_items1 = re.sub(regex1, subst1, des_items1, 0, re.MULTILINE)
|
||||||
|
# print(des_items1)
|
||||||
|
|
||||||
des = {}
|
des = {}
|
||||||
des_key = [
|
des_key = [
|
||||||
"_otit",
|
"_otit",
|
||||||
@@ -1038,7 +1175,7 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
"ep_num": ep_num,
|
"ep_num": ep_num,
|
||||||
"title": f"{main_title} {ep_num}화 - {title}",
|
"title": f"{main_title} {ep_num}화 - {title}",
|
||||||
"link": link,
|
"link": link,
|
||||||
"thumbnail": image,
|
"thumbnail": thumbnail,
|
||||||
"date": date,
|
"date": date,
|
||||||
"day": date,
|
"day": date,
|
||||||
"_id": title,
|
"_id": title,
|
||||||
@@ -1049,21 +1186,6 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
# print(lxml.etree.tostring(des_items, method="text"))
|
|
||||||
#
|
|
||||||
# for idx, item in enumerate(des_items):
|
|
||||||
# span = item.xpath(".//b/text()")
|
|
||||||
# logger.info(f"0: {span[0]}")
|
|
||||||
# key = description_dict[span[0].replace(":", "")]
|
|
||||||
# logger.debug(f"key:: {key}")
|
|
||||||
# try:
|
|
||||||
# print(item.xpath(".//text()")[1].strip())
|
|
||||||
# des[key] = item.xpath(".//text()")[1].strip()
|
|
||||||
# except IndexError:
|
|
||||||
# if item.xpath(".//a"):
|
|
||||||
# des[key] = item.xpath(".//a")[0]
|
|
||||||
# des[key] = ""
|
|
||||||
|
|
||||||
ser_description = "작품 설명 부분"
|
ser_description = "작품 설명 부분"
|
||||||
des = ""
|
des = ""
|
||||||
des1 = ""
|
des1 = ""
|
||||||
@@ -1077,6 +1199,9 @@ class LogicAniLife(LogicModuleBase):
|
|||||||
"episode": episodes,
|
"episode": episodes,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if not P.ModelSetting.get_bool("anilife_order_desc"):
|
||||||
|
data["episode"] = list(reversed(data["episode"]))
|
||||||
|
data["list_order"] = "desc"
|
||||||
return data
|
return data
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@@ -1224,11 +1349,18 @@ class AniLifeQueueEntity(FfmpegQueueEntity):
|
|||||||
tmp["epi_queue"] = self.epi_queue
|
tmp["epi_queue"] = self.epi_queue
|
||||||
return tmp
|
return tmp
|
||||||
|
|
||||||
|
def download_completed(self):
|
||||||
|
db_entity = ModelAniLifeItem.get_by_anilife_id(self.info["_id"])
|
||||||
|
if db_entity is not None:
|
||||||
|
db_entity.status = "completed"
|
||||||
|
db_entity.completed_time = datetime.now()
|
||||||
|
db_entity.save()
|
||||||
|
|
||||||
def donwload_completed(self):
|
def donwload_completed(self):
|
||||||
db_entity = ModelAniLifeItem.get_by_anilife_id(self.info["_id"])
|
db_entity = ModelAniLifeItem.get_by_anilife_id(self.info["_id"])
|
||||||
if db_entity is not None:
|
if db_entity is not None:
|
||||||
db_entity.status = "completed"
|
db_entity.status = "completed"
|
||||||
db_entity.complated_time = datetime.now()
|
db_entity.completed_time = datetime.now()
|
||||||
db_entity.save()
|
db_entity.save()
|
||||||
|
|
||||||
def make_episode_info(self):
|
def make_episode_info(self):
|
||||||
@@ -1244,13 +1376,11 @@ class AniLifeQueueEntity(FfmpegQueueEntity):
|
|||||||
ourls = parse.urlparse(url)
|
ourls = parse.urlparse(url)
|
||||||
|
|
||||||
self.headers = {
|
self.headers = {
|
||||||
"Referer": f"{ourls.scheme}://{ourls.netloc}",
|
"Referer": LogicAniLife.episode_url,
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36",
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) "
|
||||||
|
"Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36",
|
||||||
}
|
}
|
||||||
|
|
||||||
headers["Referer"] = "https://anilife.live/detail/id/471"
|
|
||||||
headers["Referer"] = LogicAniLife.episode_url
|
|
||||||
|
|
||||||
logger.debug("make_episode_info()::url==> %s", url)
|
logger.debug("make_episode_info()::url==> %s", url)
|
||||||
logger.info(f"self.info:::> {self.info}")
|
logger.info(f"self.info:::> {self.info}")
|
||||||
|
|
||||||
@@ -1276,13 +1406,9 @@ class AniLifeQueueEntity(FfmpegQueueEntity):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
# vod_1080p_url = text
|
|
||||||
|
|
||||||
# logger.debug(text)
|
|
||||||
soup = BeautifulSoup(text, "lxml")
|
soup = BeautifulSoup(text, "lxml")
|
||||||
|
|
||||||
all_scripts = soup.find_all("script")
|
all_scripts = soup.find_all("script")
|
||||||
# print(all_scripts)
|
|
||||||
|
|
||||||
regex = r"(?P<jawcloud_url>http?s:\/\/.*=jawcloud)"
|
regex = r"(?P<jawcloud_url>http?s:\/\/.*=jawcloud)"
|
||||||
match = re.compile(regex).search(text)
|
match = re.compile(regex).search(text)
|
||||||
@@ -1331,34 +1457,36 @@ class AniLifeQueueEntity(FfmpegQueueEntity):
|
|||||||
|
|
||||||
self.filename = Util.change_text_for_use_filename(ret)
|
self.filename = Util.change_text_for_use_filename(ret)
|
||||||
logger.info(f"self.filename::> {self.filename}")
|
logger.info(f"self.filename::> {self.filename}")
|
||||||
self.savepath = P.ModelSetting.get("ohli24_download_path")
|
self.savepath = P.ModelSetting.get("anilife_download_path")
|
||||||
logger.info(f"self.savepath::> {self.savepath}")
|
logger.info(f"self.savepath::> {self.savepath}")
|
||||||
|
|
||||||
if P.ModelSetting.get_bool("ohli24_auto_make_folder"):
|
if P.ModelSetting.get_bool("anilife_auto_make_folder"):
|
||||||
if self.info["day"].find("완결") != -1:
|
if self.info["day"].find("완결") != -1:
|
||||||
folder_name = "%s %s" % (
|
folder_name = "%s %s" % (
|
||||||
P.ModelSetting.get("ohli24_finished_insert"),
|
P.ModelSetting.get("anilife_finished_insert"),
|
||||||
self.content_title,
|
self.content_title,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
folder_name = self.content_title
|
folder_name = self.content_title
|
||||||
folder_name = Util.change_text_for_use_filename(folder_name.strip())
|
folder_name = Util.change_text_for_use_filename(folder_name.strip())
|
||||||
self.savepath = os.path.join(self.savepath, folder_name)
|
self.savepath = os.path.join(self.savepath, folder_name)
|
||||||
if P.ModelSetting.get_bool("ohli24_auto_make_season_folder"):
|
if P.ModelSetting.get_bool("anilife_auto_make_season_folder"):
|
||||||
self.savepath = os.path.join(
|
self.savepath = os.path.join(
|
||||||
self.savepath, "Season %s" % int(self.season)
|
self.savepath, "Season %s" % int(self.season)
|
||||||
)
|
)
|
||||||
self.filepath = os.path.join(self.savepath, self.filename)
|
self.filepath = os.path.join(self.savepath, self.filename)
|
||||||
|
# print(self.filepath)
|
||||||
|
# exit
|
||||||
|
|
||||||
if not os.path.exists(self.savepath):
|
if not os.path.exists(self.savepath):
|
||||||
os.makedirs(self.savepath)
|
os.makedirs(self.savepath)
|
||||||
|
|
||||||
vod_1080p_url = asyncio.run(
|
vod_1080p_url = asyncio.run(
|
||||||
LogicAniLife.get_vod_url(jawcloud_url, headless=True)
|
LogicAniLife.get_vod_url(jawcloud_url, headless=True)
|
||||||
)
|
)
|
||||||
print(f"vod_1080p_url:: {vod_1080p_url}")
|
logger.debug(f"vod_1080p_url:: {vod_1080p_url}")
|
||||||
self.url = vod_1080p_url
|
self.url = vod_1080p_url
|
||||||
|
|
||||||
logger.info(self.url)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
P.logger.error("Exception:%s", e)
|
P.logger.error("Exception:%s", e)
|
||||||
P.logger.error(traceback.format_exc())
|
P.logger.error(traceback.format_exc())
|
||||||
@@ -1479,9 +1607,9 @@ class ModelAniLifeItem(db.Model):
|
|||||||
item.episode_no = q["epi_queue"]
|
item.episode_no = q["epi_queue"]
|
||||||
item.title = q["content_title"]
|
item.title = q["content_title"]
|
||||||
item.episode_title = q["title"]
|
item.episode_title = q["title"]
|
||||||
item.ohli24_va = q["va"]
|
item.anilife_va = q["va"]
|
||||||
item.ohli24_vi = q["_vi"]
|
item.anilife_vi = q["_vi"]
|
||||||
item.ohli24_id = q["_id"]
|
item.anilife_id = q["_id"]
|
||||||
item.quality = q["quality"]
|
item.quality = q["quality"]
|
||||||
item.filepath = q["filepath"]
|
item.filepath = q["filepath"]
|
||||||
item.filename = q["filename"]
|
item.filename = q["filename"]
|
||||||
@@ -1490,5 +1618,5 @@ class ModelAniLifeItem(db.Model):
|
|||||||
item.vtt_url = q["vtt"]
|
item.vtt_url = q["vtt"]
|
||||||
item.thumbnail = q["thumbnail"]
|
item.thumbnail = q["thumbnail"]
|
||||||
item.status = "wait"
|
item.status = "wait"
|
||||||
item.ohli24_info = q["anilife_info"]
|
item.anilife_info = q["anilife_info"]
|
||||||
item.save()
|
item.save()
|
||||||
|
|||||||
1342
logic_linkkf.py
1342
logic_linkkf.py
File diff suppressed because it is too large
Load Diff
716
logic_ohli24.py
716
logic_ohli24.py
@@ -7,12 +7,16 @@
|
|||||||
# @Software: PyCharm
|
# @Software: PyCharm
|
||||||
|
|
||||||
import os, sys, traceback, re, json, threading
|
import os, sys, traceback, re, json, threading
|
||||||
|
import time
|
||||||
from datetime import datetime, date
|
from datetime import datetime, date
|
||||||
import copy
|
import copy
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
|
import discord
|
||||||
|
|
||||||
# third-party
|
# third-party
|
||||||
import requests
|
import requests
|
||||||
|
from discord_webhook import DiscordWebhook, DiscordEmbed
|
||||||
from lxml import html
|
from lxml import html
|
||||||
from urllib import parse
|
from urllib import parse
|
||||||
import urllib
|
import urllib
|
||||||
@@ -25,6 +29,8 @@ from flask import request, render_template, jsonify
|
|||||||
from sqlalchemy import or_, and_, func, not_, desc
|
from sqlalchemy import or_, and_, func, not_, desc
|
||||||
from pip._internal import main
|
from pip._internal import main
|
||||||
|
|
||||||
|
from .lib.utils import yommi_timeit
|
||||||
|
|
||||||
pkgs = ["beautifulsoup4", "jsbeautifier", "aiohttp"]
|
pkgs = ["beautifulsoup4", "jsbeautifier", "aiohttp"]
|
||||||
for pkg in pkgs:
|
for pkg in pkgs:
|
||||||
try:
|
try:
|
||||||
@@ -60,26 +66,30 @@ logger = P.logger
|
|||||||
|
|
||||||
class LogicOhli24(LogicModuleBase):
|
class LogicOhli24(LogicModuleBase):
|
||||||
db_default = {
|
db_default = {
|
||||||
"ohli24_db_version": "1",
|
"ohli24_db_version": "1.1",
|
||||||
"ohli24_url": "https://ohli24.net",
|
"ohli24_url": "https://a18.ohli24.com",
|
||||||
"ohli24_download_path": os.path.join(path_data, P.package_name, "ohli24"),
|
"ohli24_download_path": os.path.join(path_data, P.package_name, "ohli24"),
|
||||||
"ohli24_auto_make_folder": "True",
|
"ohli24_auto_make_folder": "True",
|
||||||
"ohli24_auto_make_season_folder": "True",
|
"ohli24_auto_make_season_folder": "True",
|
||||||
"ohli24_finished_insert": "[완결]",
|
"ohli24_finished_insert": "[완결]",
|
||||||
"ohli24_max_ffmpeg_process_count": "1",
|
"ohli24_max_ffmpeg_process_count": "1",
|
||||||
"ohli24_order_desc": "False",
|
"ohli24_order_desc": "True",
|
||||||
"ohli24_auto_start": "False",
|
"ohli24_auto_start": "False",
|
||||||
"ohli24_interval": "* 5 * * *",
|
"ohli24_interval": "* 5 * * *",
|
||||||
"ohli24_auto_mode_all": "False",
|
"ohli24_auto_mode_all": "False",
|
||||||
"ohli24_auto_code_list": "all",
|
"ohli24_auto_code_list": "all",
|
||||||
"ohli24_current_code": "",
|
"ohli24_current_code": "",
|
||||||
"ohli24_uncompleted_auto_enqueue": "False",
|
"ohli24_uncompleted_auto_enqueue": "False",
|
||||||
"ohli24_image_url_prefix_series": "https://www.jetcloud.cc/series/",
|
"ohli24_image_url_prefix_series": "",
|
||||||
"ohli24_image_url_prefix_episode": "https://www.jetcloud-list.cc/thumbnail/",
|
"ohli24_image_url_prefix_episode": "",
|
||||||
"ohli24_discord_notify": "True",
|
"ohli24_discord_notify": "True",
|
||||||
}
|
}
|
||||||
current_headers = None
|
current_headers = None
|
||||||
current_data = None
|
current_data = None
|
||||||
|
referer = None
|
||||||
|
origin_url = None
|
||||||
|
episode_url = None
|
||||||
|
cookies = None
|
||||||
|
|
||||||
session = requests.Session()
|
session = requests.Session()
|
||||||
headers = {
|
headers = {
|
||||||
@@ -87,7 +97,8 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
"Chrome/71.0.3578.98 Safari/537.36",
|
"Chrome/71.0.3578.98 Safari/537.36",
|
||||||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
|
||||||
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
|
"Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
|
||||||
"Referer": "",
|
# "Referer": "",
|
||||||
|
# "Cookie": "PHPSESSID=hhhnrora8o9omv1tljq4efv216; 2a0d2363701f23f8a75028924a3af643=NDkuMTYzLjExMS4xMDk=; e1192aefb64683cc97abb83c71057733=aW5n",
|
||||||
}
|
}
|
||||||
useragent = {
|
useragent = {
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, "
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, "
|
||||||
@@ -98,8 +109,205 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
super(LogicOhli24, self).__init__(P, "setting", scheduler_desc="ohli24 자동 다운로드")
|
super(LogicOhli24, self).__init__(P, "setting", scheduler_desc="ohli24 자동 다운로드")
|
||||||
self.name = "ohli24"
|
self.name = "ohli24"
|
||||||
self.queue = None
|
self.queue = None
|
||||||
|
self.last_post_title = ""
|
||||||
|
self.discord_webhook_url = "https://discord.com/api/webhooks/1071430127860334663/viCiM5ssS-U1_ONWgdWa-64KgvPfU5jJ8WQAym-4vkiyASB0e8IcnlLnxG4F40nj10kZ"
|
||||||
|
self.discord_color = "242424"
|
||||||
|
self.discord_title = "새로운 애니"
|
||||||
|
self.DISCORD_CHANNEL_ID = "1071430054023798958"
|
||||||
default_route_socketio(P, self)
|
default_route_socketio(P, self)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
async def get_html_playwright(
|
||||||
|
url: str,
|
||||||
|
headless: bool = False,
|
||||||
|
referer: str = "",
|
||||||
|
engine: str = "chrome",
|
||||||
|
stealth: bool = False,
|
||||||
|
):
|
||||||
|
try:
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
from playwright.async_api import async_playwright
|
||||||
|
from playwright_stealth import stealth_sync, stealth_async
|
||||||
|
|
||||||
|
import time
|
||||||
|
|
||||||
|
cookie = None
|
||||||
|
# browser_args = [
|
||||||
|
# "--window-size=1300,570",
|
||||||
|
# "--window-position=000,000",
|
||||||
|
# "--disable-dev-shm-usage",
|
||||||
|
# "--no-sandbox",
|
||||||
|
# "--disable-web-security",
|
||||||
|
# "--disable-features=site-per-process",
|
||||||
|
# "--disable-setuid-sandbox",
|
||||||
|
# "--disable-accelerated-2d-canvas",
|
||||||
|
# "--no-first-run",
|
||||||
|
# "--no-zygote",
|
||||||
|
# # '--single-process',
|
||||||
|
# "--disable-gpu",
|
||||||
|
# # "--use-gl=egl",
|
||||||
|
# "--disable-blink-features=AutomationControlled",
|
||||||
|
# # "--disable-background-networking",
|
||||||
|
# # "--enable-features=NetworkService,NetworkServiceInProcess",
|
||||||
|
# "--disable-background-timer-throttling",
|
||||||
|
# "--disable-backgrounding-occluded-windows",
|
||||||
|
# "--disable-breakpad",
|
||||||
|
# "--disable-client-side-phishing-detection",
|
||||||
|
# "--disable-component-extensions-with-background-pages",
|
||||||
|
# "--disable-default-apps",
|
||||||
|
# "--disable-extensions",
|
||||||
|
# "--disable-features=Translate",
|
||||||
|
# "--disable-hang-monitor",
|
||||||
|
# "--disable-ipc-flooding-protection",
|
||||||
|
# "--disable-popup-blocking",
|
||||||
|
# "--disable-prompt-on-repost",
|
||||||
|
# # "--disable-renderer-backgrounding",
|
||||||
|
# "--disable-sync",
|
||||||
|
# "--force-color-profile=srgb",
|
||||||
|
# # "--metrics-recording-only",
|
||||||
|
# # "--enable-automation",
|
||||||
|
# "--password-store=basic",
|
||||||
|
# # "--use-mock-keychain",
|
||||||
|
# # "--hide-scrollbars",
|
||||||
|
# "--mute-audio",
|
||||||
|
# ]
|
||||||
|
browser_args = [
|
||||||
|
"--window-size=1300,570",
|
||||||
|
"--window-position=0,0",
|
||||||
|
# "--disable-dev-shm-usage",
|
||||||
|
"--no-sandbox",
|
||||||
|
# "--disable-web-security",
|
||||||
|
# "--disable-features=site-per-process",
|
||||||
|
# "--disable-setuid-sandbox",
|
||||||
|
# "--disable-accelerated-2d-canvas",
|
||||||
|
# "--no-first-run",
|
||||||
|
# "--no-zygote",
|
||||||
|
# "--single-process",
|
||||||
|
"--disable-gpu",
|
||||||
|
# "--use-gl=egl",
|
||||||
|
"--mute-audio",
|
||||||
|
]
|
||||||
|
# scraper = cloudscraper.create_scraper(
|
||||||
|
# browser={"browser": "chrome", "platform": "windows", "desktop": True},
|
||||||
|
# debug=False,
|
||||||
|
# # sess=LogicAniLife.session,
|
||||||
|
# delay=10,
|
||||||
|
# )
|
||||||
|
#
|
||||||
|
# cookie_value, user_agent = scraper.get_cookie_string(url)
|
||||||
|
#
|
||||||
|
# logger.debug(f"cookie_value:: {cookie_value}")
|
||||||
|
|
||||||
|
start = time.time()
|
||||||
|
ua = (
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
|
||||||
|
"AppleWebKit/537.36 (KHTML, like Gecko) "
|
||||||
|
"Chrome/69.0.3497.100 Safari/537.36"
|
||||||
|
)
|
||||||
|
|
||||||
|
# from playwright_stealth import stealth_sync
|
||||||
|
|
||||||
|
def set_cookie(req):
|
||||||
|
nonlocal cookie
|
||||||
|
if "cookie" in req.headers:
|
||||||
|
cookie = req.headers["cookie"]
|
||||||
|
|
||||||
|
async with async_playwright() as p:
|
||||||
|
try:
|
||||||
|
if engine == "chrome":
|
||||||
|
browser = await p.chromium.launch(
|
||||||
|
channel="chrome", args=browser_args, headless=headless
|
||||||
|
)
|
||||||
|
elif engine == "webkit":
|
||||||
|
browser = await p.webkit.launch(
|
||||||
|
headless=headless,
|
||||||
|
args=browser_args,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
browser = await p.firefox.launch(
|
||||||
|
headless=headless,
|
||||||
|
args=browser_args,
|
||||||
|
)
|
||||||
|
# context = browser.new_context(
|
||||||
|
# user_agent=ua,
|
||||||
|
# )
|
||||||
|
|
||||||
|
LogicOhli24.headers["Referer"] = "https://anilife.com/detail/id/471"
|
||||||
|
# print(LogicAniLife.headers)
|
||||||
|
|
||||||
|
LogicOhli24.headers["Referer"] = LogicOhli24.episode_url
|
||||||
|
|
||||||
|
if referer is not None:
|
||||||
|
LogicOhli24.headers["Referer"] = referer
|
||||||
|
|
||||||
|
# logger.debug(f"LogicAniLife.headers::: {LogicOhli24.headers}")
|
||||||
|
context = await browser.new_context(
|
||||||
|
extra_http_headers=LogicOhli24.headers, ignore_https_errors=True
|
||||||
|
)
|
||||||
|
# await context.add_cookies(LogicOhli24.cookies)
|
||||||
|
|
||||||
|
# LogicAniLife.headers["Cookie"] = cookie_value
|
||||||
|
|
||||||
|
# await context.set_extra_http_headers(LogicOhli24.headers)
|
||||||
|
|
||||||
|
page = await context.new_page()
|
||||||
|
|
||||||
|
# page.set_extra_http_headers(LogicAniLife.headers)
|
||||||
|
|
||||||
|
if stealth:
|
||||||
|
await stealth_async(page)
|
||||||
|
|
||||||
|
# page.on("request", set_cookie)
|
||||||
|
# stealth_sync(page)
|
||||||
|
# print(LogicOhli24.headers["Referer"])
|
||||||
|
|
||||||
|
# page.on("request", set_cookie)
|
||||||
|
|
||||||
|
print(f'Referer:: {LogicOhli24.headers["Referer"]}')
|
||||||
|
# await page.set_extra_http_headers(LogicAniLife.headers)
|
||||||
|
|
||||||
|
# domcontentloaded
|
||||||
|
# load
|
||||||
|
# networkidle
|
||||||
|
await page.goto(
|
||||||
|
url,
|
||||||
|
wait_until="load",
|
||||||
|
# referer=LogicOhli24.headers["Referer"],
|
||||||
|
)
|
||||||
|
# await page.wait_for_url(url, wait_until="domcontentloaded")
|
||||||
|
# page.wait_for_timeout(10000)
|
||||||
|
# await asyncio.sleep(2.9)
|
||||||
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
|
# await page.reload()
|
||||||
|
|
||||||
|
# time.sleep(10)
|
||||||
|
# cookies = context.cookies
|
||||||
|
# print(cookies)
|
||||||
|
|
||||||
|
print(f"page.url:: {page.url}")
|
||||||
|
LogicOhli24.origin_url = page.url
|
||||||
|
|
||||||
|
temp_content = await page.content()
|
||||||
|
#
|
||||||
|
# print(temp_content)
|
||||||
|
|
||||||
|
print(f"run at {time.time() - start} sec")
|
||||||
|
|
||||||
|
return temp_content
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Exception:%s", e)
|
||||||
|
logger.error(traceback.format_exc())
|
||||||
|
finally:
|
||||||
|
await browser.close()
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Exception:%s", e)
|
||||||
|
logger.error(traceback.format_exc())
|
||||||
|
finally:
|
||||||
|
# browser.close()
|
||||||
|
pass
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def db_init():
|
def db_init():
|
||||||
pass
|
pass
|
||||||
@@ -188,6 +396,7 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
elif sub == "add_queue":
|
elif sub == "add_queue":
|
||||||
|
logger.debug(f"linkkf add_queue routine ===============")
|
||||||
ret = {}
|
ret = {}
|
||||||
info = json.loads(request.form["data"])
|
info = json.loads(request.form["data"])
|
||||||
logger.info(f"info:: {info}")
|
logger.info(f"info:: {info}")
|
||||||
@@ -244,14 +453,53 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
logger.error("Exception:%s", e)
|
logger.error("Exception:%s", e)
|
||||||
logger.error(traceback.format_exc())
|
logger.error(traceback.format_exc())
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
P.logger.error("Exception:%s", e)
|
P.logger.error(f"Exception: {str(e)}")
|
||||||
P.logger.error(traceback.format_exc())
|
P.logger.error(traceback.format_exc())
|
||||||
|
|
||||||
|
def process_api(self, sub, req):
|
||||||
|
logger.debug("here!")
|
||||||
|
ret = {}
|
||||||
|
try:
|
||||||
|
if sub == "anime_list":
|
||||||
|
logger.debug(f"anime_list =*==")
|
||||||
|
logger.debug(req)
|
||||||
|
data = []
|
||||||
|
cate = req.form["type"]
|
||||||
|
page = req.form["page"]
|
||||||
|
|
||||||
|
data = self.get_anime_info(cate, page)
|
||||||
|
# self.current_data = data
|
||||||
|
return jsonify(
|
||||||
|
{"ret": "success", "cate": cate, "page": page, "data": data}
|
||||||
|
)
|
||||||
|
|
||||||
|
except Exception as exception:
|
||||||
|
logger.error("Exception:%s", exception)
|
||||||
|
logger.error(traceback.format_exc())
|
||||||
|
ret["ret"] = "exception"
|
||||||
|
ret["data"] = str(exception)
|
||||||
|
return jsonify(ret)
|
||||||
|
|
||||||
|
#########################################################
|
||||||
|
# API
|
||||||
|
#########################################################
|
||||||
|
# @blueprint.route("/api/<sub>", methods=["GET", "POST"])
|
||||||
|
# @check_api
|
||||||
|
# def api(self, sub):
|
||||||
|
# if sub == "ohli24":
|
||||||
|
# try:
|
||||||
|
# logger.debug("api ohli24")
|
||||||
|
# data = {"aaaa"}
|
||||||
|
# except Exception as e:
|
||||||
|
# logger.error("Exception:%s", e)
|
||||||
|
# logger.error(traceback.format_exc())
|
||||||
|
# return data
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def add_whitelist(*args):
|
def add_whitelist(*args):
|
||||||
ret = {}
|
ret = {}
|
||||||
|
|
||||||
logger.debug(f"args: {args}")
|
# logger.debug(f"args: {args}")
|
||||||
try:
|
try:
|
||||||
|
|
||||||
if len(args) == 0:
|
if len(args) == 0:
|
||||||
@@ -259,13 +507,10 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
else:
|
else:
|
||||||
code = str(args[0])
|
code = str(args[0])
|
||||||
|
|
||||||
print(code)
|
# print(code)
|
||||||
|
|
||||||
whitelist_program = P.ModelSetting.get("ohli24_auto_code_list")
|
whitelist_program = P.ModelSetting.get("ohli24_auto_code_list")
|
||||||
# whitelist_programs = [
|
|
||||||
# str(x.strip().replace(" ", ""))
|
|
||||||
# for x in whitelist_program.replace("\n", "|").split("|")
|
|
||||||
# ]
|
|
||||||
whitelist_programs = [
|
whitelist_programs = [
|
||||||
str(x.strip()) for x in whitelist_program.replace("\n", "|").split("|")
|
str(x.strip()) for x in whitelist_program.replace("\n", "|").split("|")
|
||||||
]
|
]
|
||||||
@@ -353,8 +598,12 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
url = P.ModelSetting.get("ohli24_url") + "/c/" + item
|
url = P.ModelSetting.get("ohli24_url") + "/c/" + item
|
||||||
print("scheduling url: %s", url)
|
print("scheduling url: %s", url)
|
||||||
# ret_data = LogicOhli24.get_auto_anime_info(self, url=url)
|
# ret_data = LogicOhli24.get_auto_anime_info(self, url=url)
|
||||||
|
print("debug===")
|
||||||
|
print(item)
|
||||||
content_info = self.get_series_info(item, "", "")
|
content_info = self.get_series_info(item, "", "")
|
||||||
|
|
||||||
|
# logger.debug(content_info)
|
||||||
|
|
||||||
for episode_info in content_info["episode"]:
|
for episode_info in content_info["episode"]:
|
||||||
add_ret = self.add(episode_info)
|
add_ret = self.add(episode_info)
|
||||||
if add_ret.startswith("enqueue"):
|
if add_ret.startswith("enqueue"):
|
||||||
@@ -425,7 +674,7 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
logger.debug("url:::> %s", url)
|
# logger.debug("url:::> %s", url)
|
||||||
|
|
||||||
# self.current_headers = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)
|
# self.current_headers = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)
|
||||||
# AppleWebKit/537.36 (KHTML, like Gecko) ' 'Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36',
|
# AppleWebKit/537.36 (KHTML, like Gecko) ' 'Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36',
|
||||||
@@ -486,7 +735,7 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
+ li.xpath('.//a[@class="item-subject"]/@href')[0]
|
+ li.xpath('.//a[@class="item-subject"]/@href')[0]
|
||||||
)
|
)
|
||||||
# logger.debug(f"link:: {link}")
|
# logger.debug(f"link:: {link}")
|
||||||
date = li.xpath('.//div[@class="wr-date"]/text()')[0]
|
_date = li.xpath('.//div[@class="wr-date"]/text()')[0]
|
||||||
m = hashlib.md5(title.encode("utf-8"))
|
m = hashlib.md5(title.encode("utf-8"))
|
||||||
# _vi = hashlib.md5(title.encode('utf-8').hexdigest())
|
# _vi = hashlib.md5(title.encode('utf-8').hexdigest())
|
||||||
# logger.info(m.hexdigest())
|
# logger.info(m.hexdigest())
|
||||||
@@ -496,8 +745,8 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
"title": title,
|
"title": title,
|
||||||
"link": link,
|
"link": link,
|
||||||
"thumbnail": image,
|
"thumbnail": image,
|
||||||
"date": date,
|
"date": _date,
|
||||||
"day": date,
|
"day": _date,
|
||||||
"_id": title,
|
"_id": title,
|
||||||
"va": link,
|
"va": link,
|
||||||
"_vi": _vi,
|
"_vi": _vi,
|
||||||
@@ -505,7 +754,13 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
logger.info("des_items length:: %s", len(des_items))
|
# 정렬 여부 체크
|
||||||
|
# logger.debug(P.ModelSetting.get("ohli24_order_desc"))
|
||||||
|
# if P.ModelSetting.get("ohli24_order_desc") == "False":
|
||||||
|
# print("Here....")
|
||||||
|
# episodes.reverse()
|
||||||
|
|
||||||
|
# logger.info("des_items length:: %s", len(des_items))
|
||||||
for idx, item in enumerate(des_items):
|
for idx, item in enumerate(des_items):
|
||||||
# key = des_key[idx]
|
# key = des_key[idx]
|
||||||
span = item.xpath(".//span//text()")
|
span = item.xpath(".//span//text()")
|
||||||
@@ -519,7 +774,7 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
# logger.info(f"des::>> {des}")
|
# logger.info(f"des::>> {des}")
|
||||||
image = image.replace("..", P.ModelSetting.get("ohli24_url"))
|
image = image.replace("..", P.ModelSetting.get("ohli24_url"))
|
||||||
# logger.info("images:: %s", image)
|
# logger.info("images:: %s", image)
|
||||||
logger.info("title:: %s", title)
|
# logger.info("title:: %s", title)
|
||||||
|
|
||||||
ser_description = tree.xpath(
|
ser_description = tree.xpath(
|
||||||
'//div[@class="view-stocon"]/div[@class="c"]/text()'
|
'//div[@class="view-stocon"]/div[@class="c"]/text()'
|
||||||
@@ -534,7 +789,7 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
"episode": episodes,
|
"episode": episodes,
|
||||||
}
|
}
|
||||||
|
|
||||||
if P.ModelSetting.get_bool("ohli24_order_desc"):
|
if not P.ModelSetting.get_bool("ohli24_order_desc"):
|
||||||
data["episode"] = list(reversed(data["episode"]))
|
data["episode"] = list(reversed(data["episode"]))
|
||||||
data["list_order"] = "desc"
|
data["list_order"] = "desc"
|
||||||
|
|
||||||
@@ -573,9 +828,21 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
+ page
|
+ page
|
||||||
)
|
)
|
||||||
# cate == "complete":
|
# cate == "complete":
|
||||||
logger.info("url:::> %s", url)
|
|
||||||
|
# logger.info("url:::> %s", url)
|
||||||
|
|
||||||
data = {}
|
data = {}
|
||||||
response_data = LogicOhli24.get_html(url, timeout=10)
|
response_data = LogicOhli24.get_html(url, timeout=10)
|
||||||
|
# response_data = asyncio.run(
|
||||||
|
# LogicOhli24.get_html_playwright(
|
||||||
|
# url,
|
||||||
|
# headless=False,
|
||||||
|
# # referer=referer_url,
|
||||||
|
# engine="chrome",
|
||||||
|
# # stealth=True,
|
||||||
|
# )
|
||||||
|
# )
|
||||||
|
# print(response_data)
|
||||||
tree = html.fromstring(response_data)
|
tree = html.fromstring(response_data)
|
||||||
tmp_items = tree.xpath('//div[@class="list-row"]')
|
tmp_items = tree.xpath('//div[@class="list-row"]')
|
||||||
data["anime_count"] = len(tmp_items)
|
data["anime_count"] = len(tmp_items)
|
||||||
@@ -588,9 +855,21 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
entity["title"] = item.xpath(".//div[@class='post-title']/text()")[
|
entity["title"] = item.xpath(".//div[@class='post-title']/text()")[
|
||||||
0
|
0
|
||||||
].strip()
|
].strip()
|
||||||
entity["image_link"] = item.xpath(".//div[@class='img-item']/img/@src")[
|
# logger.debug(item.xpath(".//div[@class='img-item']/img/@src")[0])
|
||||||
0
|
# logger.debug(item.xpath(".//div[@class='img-item']/img/@data-ezsrc")[0])
|
||||||
].replace("..", P.ModelSetting.get("ohli24_url"))
|
# entity["image_link"] = item.xpath(".//div[@class='img-item']/img/@src")[
|
||||||
|
# 0
|
||||||
|
# ].replace("..", P.ModelSetting.get("ohli24_url"))
|
||||||
|
|
||||||
|
if len(item.xpath(".//div[@class='img-item']/img/@src")) > 0:
|
||||||
|
entity["image_link"] = item.xpath(
|
||||||
|
".//div[@class='img-item']/img/@src"
|
||||||
|
)[0].replace("..", P.ModelSetting.get("ohli24_url"))
|
||||||
|
else:
|
||||||
|
entity["image_link"] = item.xpath(
|
||||||
|
".//div[@class='img-item']/img/@data-ezsrc"
|
||||||
|
)[0]
|
||||||
|
|
||||||
data["ret"] = "success"
|
data["ret"] = "success"
|
||||||
data["anime_list"].append(entity)
|
data["anime_list"].append(entity)
|
||||||
|
|
||||||
@@ -674,6 +953,61 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
P.logger.error(traceback.format_exc())
|
P.logger.error(traceback.format_exc())
|
||||||
return {"ret": "exception", "log": str(e)}
|
return {"ret": "exception", "log": str(e)}
|
||||||
|
|
||||||
|
def check_for_new_post(self):
|
||||||
|
# Get the HTML content of the page
|
||||||
|
res = requests.get(
|
||||||
|
f'{P.ModelSetting.get("ohli24_url")}/bbs/board.php?bo_table=ing'
|
||||||
|
)
|
||||||
|
soup = BeautifulSoup(res.content, "html.parser")
|
||||||
|
|
||||||
|
# Find the latest post on the page
|
||||||
|
latest_post = soup.find("div", class_="post-title").text
|
||||||
|
latest_post_image = (
|
||||||
|
soup.find("div", class_="img-item")
|
||||||
|
.find("img", class_="wr-img")
|
||||||
|
.get("src")
|
||||||
|
.replace("..", P.ModelSetting.get("ohli24_url"))
|
||||||
|
)
|
||||||
|
|
||||||
|
logger.debug(f"latest_post:: {latest_post}")
|
||||||
|
logger.debug(f"self.last_post_title:: {self.last_post_title}")
|
||||||
|
logger.debug(f"latest_post_image:: {latest_post_image}")
|
||||||
|
|
||||||
|
# Compare the latest post with the last recorded post
|
||||||
|
if latest_post != self.last_post_title:
|
||||||
|
# If there is a new post, update the last recorded post
|
||||||
|
self.last_post_title = latest_post
|
||||||
|
|
||||||
|
# Send a notification to Discord channel
|
||||||
|
# discord_client = discord.Client()
|
||||||
|
# discord_client.run(self.DISCORD_BOT_TOKEN)
|
||||||
|
#
|
||||||
|
# async def on_ready():
|
||||||
|
# channel = discord_client.get_channel(self.DISCORD_CHANNEL_ID)
|
||||||
|
# await channel.send(f"A new post has been added: {latest_post}")
|
||||||
|
#
|
||||||
|
# discord_client.close()
|
||||||
|
|
||||||
|
webhook = DiscordWebhook(url=self.discord_webhook_url)
|
||||||
|
embed = DiscordEmbed(title=self.discord_title, color=self.discord_color)
|
||||||
|
embed.set_timestamp()
|
||||||
|
path = self.last_post_title
|
||||||
|
embed.set_image(url=latest_post_image)
|
||||||
|
embed.add_embed_field(name="", value=path, inline=True)
|
||||||
|
embed.set_timestamp()
|
||||||
|
webhook.add_embed(embed)
|
||||||
|
response = webhook.execute()
|
||||||
|
|
||||||
|
return self.last_post_title
|
||||||
|
return self.last_post_title
|
||||||
|
|
||||||
|
def send_notify(self):
|
||||||
|
logger.debug("send_notify() routine")
|
||||||
|
while True:
|
||||||
|
self.last_post_title = self.check_for_new_post()
|
||||||
|
logger.debug(self.last_post_title)
|
||||||
|
time.sleep(600)
|
||||||
|
|
||||||
# @staticmethod
|
# @staticmethod
|
||||||
def plugin_load(self):
|
def plugin_load(self):
|
||||||
try:
|
try:
|
||||||
@@ -684,6 +1018,10 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
self.current_data = None
|
self.current_data = None
|
||||||
self.queue.queue_start()
|
self.queue.queue_start()
|
||||||
|
|
||||||
|
logger.debug(P.ModelSetting.get_bool("ohli24_discord_notify"))
|
||||||
|
if P.ModelSetting.get_bool("ohli24_discord_notify"):
|
||||||
|
self.send_notify()
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Exception:%s", e)
|
logger.error("Exception:%s", e)
|
||||||
logger.error(traceback.format_exc())
|
logger.error(traceback.format_exc())
|
||||||
@@ -704,23 +1042,58 @@ class LogicOhli24(LogicModuleBase):
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_html(url, referer=None, stream=False, timeout=5):
|
@yommi_timeit
|
||||||
|
def get_html(
|
||||||
|
url, headers=None, referer=None, stream=False, timeout=10, stealth=False
|
||||||
|
):
|
||||||
|
# global response_data
|
||||||
data = ""
|
data = ""
|
||||||
|
# response_date = ""
|
||||||
try:
|
try:
|
||||||
|
|
||||||
|
print("cloudflare protection bypass ==================P")
|
||||||
|
response_date = ""
|
||||||
|
if headers is not None:
|
||||||
|
LogicOhli24.headers = headers
|
||||||
|
|
||||||
|
# logger.debug(f"headers: {LogicOhli24.headers}")
|
||||||
|
|
||||||
|
# response_data = asyncio.run(
|
||||||
|
# LogicOhli24.get_html_playwright(
|
||||||
|
# url,
|
||||||
|
# headless=True,
|
||||||
|
# # referer=referer_url,
|
||||||
|
# engine="chrome",
|
||||||
|
# # stealth=True,
|
||||||
|
# )
|
||||||
|
# )
|
||||||
|
# # print(response_data)
|
||||||
|
#
|
||||||
|
# logger.debug(len(response_data))
|
||||||
|
|
||||||
|
# return response_data
|
||||||
|
|
||||||
if LogicOhli24.session is None:
|
if LogicOhli24.session is None:
|
||||||
LogicOhli24.session = requests.session()
|
LogicOhli24.session = requests.session()
|
||||||
|
|
||||||
# logger.debug('get_html :%s', url)
|
# logger.debug('get_html :%s', url)
|
||||||
headers["Referer"] = "" if referer is None else referer
|
# LogicOhli24.headers["Referer"] = "" if referer is None else referer
|
||||||
|
# logger.debug(f"referer:: {referer}")
|
||||||
|
if referer:
|
||||||
|
LogicOhli24.headers["Referer"] = referer
|
||||||
|
|
||||||
|
# logger.info(headers)
|
||||||
|
# logger.debug(f"LogicOhli24.headers:: {LogicOhli24.headers}")
|
||||||
page_content = LogicOhli24.session.get(
|
page_content = LogicOhli24.session.get(
|
||||||
url, headers=headers, timeout=timeout
|
url, headers=LogicOhli24.headers, timeout=timeout
|
||||||
)
|
)
|
||||||
data = page_content.text
|
response_data = page_content.text
|
||||||
|
# logger.debug(response_data)
|
||||||
|
return response_data
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Exception:%s", e)
|
logger.error("Exception:%s", e)
|
||||||
logger.error(traceback.format_exc())
|
logger.error(traceback.format_exc())
|
||||||
return data
|
# return response_data
|
||||||
|
|
||||||
#########################################################
|
#########################################################
|
||||||
def add(self, episode_info):
|
def add(self, episode_info):
|
||||||
@@ -792,25 +1165,30 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
db_entity.save()
|
db_entity.save()
|
||||||
|
|
||||||
# Get episode info from OHLI24 site
|
# Get episode info from OHLI24 site
|
||||||
def make_episode_info_old(self):
|
def make_episode_info(self):
|
||||||
try:
|
try:
|
||||||
# url = 'https://ohli24.net/e/' + self.info['va']
|
base_url = "https://a18.ohli24.com"
|
||||||
base_url = "https://ohli24.net"
|
base_url = P.ModelSetting.get("ohli24_url")
|
||||||
iframe_url = ""
|
iframe_url = ""
|
||||||
|
|
||||||
# https://ohli24.net/e/%EB%85%B9%EC%9D%84%20%EB%A8%B9%EB%8A%94%20%EB%B9%84%EC%8A%A4%EC%BD%94%206%ED%99%94
|
# https://ohli24.org/e/%EB%85%B9%EC%9D%84%20%EB%A8%B9%EB%8A%94%20%EB%B9%84%EC%8A%A4%EC%BD%94%206%ED%99%94
|
||||||
url = self.info["va"]
|
url = self.info["va"]
|
||||||
|
|
||||||
ourls = parse.urlparse(url)
|
ourls = parse.urlparse(url)
|
||||||
|
|
||||||
headers = {
|
headers = {
|
||||||
"Referer": f"{ourls.scheme}://{ourls.netloc}",
|
"Referer": f"{ourls.scheme}://{ourls.netloc}",
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36",
|
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) "
|
||||||
|
"Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36",
|
||||||
}
|
}
|
||||||
|
logger.debug(headers)
|
||||||
logger.debug("make_episode_info()::url==> %s", url)
|
logger.debug("make_episode_info()::url==> %s", url)
|
||||||
logger.info(f"self.info:::> {self.info}")
|
logger.info(f"self.info:::> {self.info}")
|
||||||
|
|
||||||
text = requests.get(url, headers=headers).text
|
# text = requests.get(url, headers=headers).text
|
||||||
|
text = LogicOhli24.get_html(
|
||||||
|
url, headers=headers, referer=f"{ourls.scheme}://{ourls.netloc}"
|
||||||
|
)
|
||||||
# logger.debug(text)
|
# logger.debug(text)
|
||||||
soup1 = BeautifulSoup(text, "lxml")
|
soup1 = BeautifulSoup(text, "lxml")
|
||||||
pattern = re.compile(r"url : \"\.\.(.*)\"")
|
pattern = re.compile(r"url : \"\.\.(.*)\"")
|
||||||
@@ -822,15 +1200,35 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
iframe_url = match.group(1)
|
iframe_url = match.group(1)
|
||||||
logger.info("iframe_url::> %s", iframe_url)
|
logger.info("iframe_url::> %s", iframe_url)
|
||||||
|
|
||||||
resp = requests.get(base_url + iframe_url, headers=headers, timeout=20).text
|
# try:
|
||||||
soup2 = BeautifulSoup(resp, "lxml")
|
# iframe_url = soup1.find("iframe")["src"]
|
||||||
iframe_src = soup2.find("iframe")["src"]
|
# except:
|
||||||
# print(resp1)
|
#
|
||||||
|
# pattern = r"\.\.\/(.*stream.php.*)"
|
||||||
|
#
|
||||||
|
# match = re.search(pattern, text, re.MULTILINE)
|
||||||
|
# if match:
|
||||||
|
# print(match)
|
||||||
|
# matched_line = match.group(0)
|
||||||
|
# print(matched_line)
|
||||||
|
# iframe_url = "https://ohli24.org/"
|
||||||
|
iframe_src = f'{P.ModelSetting.get("ohli24_url")}{iframe_url}'
|
||||||
|
|
||||||
|
iframe_html = LogicOhli24.get_html(iframe_src, headers=headers, timeout=600)
|
||||||
|
|
||||||
|
# print(iframe_html)
|
||||||
|
pattern = r"<iframe src=\"(.*?)\" allowfullscreen>"
|
||||||
|
|
||||||
|
match = re.search(pattern, iframe_html)
|
||||||
|
if match:
|
||||||
|
iframe_src = match.group(1)
|
||||||
|
print(iframe_src)
|
||||||
|
|
||||||
logger.debug(f"iframe_src:::> {iframe_src}")
|
logger.debug(f"iframe_src:::> {iframe_src}")
|
||||||
|
|
||||||
resp1 = requests.get(iframe_src, headers=headers, timeout=600).text
|
# resp1 = requests.get(iframe_src, headers=headers, timeout=600).text
|
||||||
# logger.info('resp1::>> %s', resp1)
|
resp1 = LogicOhli24.get_html(iframe_src, headers=headers, timeout=600)
|
||||||
|
# logger.info("resp1::>> %s", resp1)
|
||||||
soup3 = BeautifulSoup(resp1, "lxml")
|
soup3 = BeautifulSoup(resp1, "lxml")
|
||||||
# packed_pattern = re.compile(r'\\{*(eval.+)*\\}', re.MULTILINE | re.DOTALL)
|
# packed_pattern = re.compile(r'\\{*(eval.+)*\\}', re.MULTILINE | re.DOTALL)
|
||||||
s_pattern = re.compile(r"(eval.+)", re.MULTILINE | re.DOTALL)
|
s_pattern = re.compile(r"(eval.+)", re.MULTILINE | re.DOTALL)
|
||||||
@@ -839,19 +1237,17 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
)
|
)
|
||||||
packed_script = soup3.find("script", text=s_pattern)
|
packed_script = soup3.find("script", text=s_pattern)
|
||||||
# packed_script = soup3.find('script')
|
# packed_script = soup3.find('script')
|
||||||
# logger.info('packed_script>>> %s', packed_script.text)
|
# logger.info("packed_script>>> %s", packed_script.text)
|
||||||
unpack_script = None
|
unpack_script = None
|
||||||
if packed_script is not None:
|
if packed_script is not None:
|
||||||
# logger.debug('zzzzzzzzzzzz')
|
# logger.debug('zzzzzzzzzzzz')
|
||||||
match = packed_pattern.search(packed_script.text)
|
match = packed_pattern.search(packed_script.text)
|
||||||
# match = re.search(packed_pattern, packed_script.text)
|
# match = re.search(packed_pattern, packed_script.text)
|
||||||
# logger.debug("match::: %s", match.group())
|
# logger.debug("match::: %s", match.group())
|
||||||
unpack_script = jsbeautifier.beautify(match.group(3))
|
# unpack_script = jsbeautifier.beautify(match.group(3))
|
||||||
|
|
||||||
# logger.info('match groups:: %s', match.groups())
|
logger.debug(type(packed_script))
|
||||||
# logger.info('match group3:: %s', match.group(3))
|
unpack_script = jsbeautifier.beautify(str(packed_script))
|
||||||
# print('packed_script==>', packed_script)
|
|
||||||
# logger.debug(unpack_script)
|
|
||||||
|
|
||||||
p1 = re.compile(r"(\"tracks\".*\])\,\"captions\"", re.MULTILINE | re.DOTALL)
|
p1 = re.compile(r"(\"tracks\".*\])\,\"captions\"", re.MULTILINE | re.DOTALL)
|
||||||
m2 = re.search(
|
m2 = re.search(
|
||||||
@@ -862,7 +1258,7 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
# print(m2.group(1))
|
# print(m2.group(1))
|
||||||
dict_string = "{" + m2.group(1) + "}"
|
dict_string = "{" + m2.group(1) + "}"
|
||||||
|
|
||||||
logger.info(f"dict_string::> {dict_string}")
|
# logger.info(f"dict_string::> {dict_string}")
|
||||||
tracks = json.loads(dict_string)
|
tracks = json.loads(dict_string)
|
||||||
self.srt_url = tracks["tracks"][0]["file"]
|
self.srt_url = tracks["tracks"][0]["file"]
|
||||||
|
|
||||||
@@ -883,8 +1279,9 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
"Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 "
|
"Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 "
|
||||||
"Whale/3.12.129.46 Safari/537.36",
|
"Whale/3.12.129.46 Safari/537.36",
|
||||||
"X-Requested-With": "XMLHttpRequest",
|
"X-Requested-With": "XMLHttpRequest",
|
||||||
|
"Cookie": "PHPSESSID=hhhnrora8o9omv1tljq4efv216; 2a0d2363701f23f8a75028924a3af643=NDkuMTYzLjExMS4xMDk=; e1192aefb64683cc97abb83c71057733=aW5n",
|
||||||
}
|
}
|
||||||
# print(headers)
|
|
||||||
payload = {
|
payload = {
|
||||||
"hash": video_hash[-1],
|
"hash": video_hash[-1],
|
||||||
}
|
}
|
||||||
@@ -912,6 +1309,12 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.url = stream_info[1].strip()
|
self.url = stream_info[1].strip()
|
||||||
|
logger.info(self.url)
|
||||||
|
if "anibeast.com" in self.url:
|
||||||
|
self.headers["Referer"] = iframe_src
|
||||||
|
if "crazypatutu.com" in self.url:
|
||||||
|
self.headers["Referer"] = iframe_src
|
||||||
|
|
||||||
match = re.compile(r'NAME="(?P<quality>.*?)"').search(stream_info[0])
|
match = re.compile(r'NAME="(?P<quality>.*?)"').search(stream_info[0])
|
||||||
self.quality = "720P"
|
self.quality = "720P"
|
||||||
if match is not None:
|
if match is not None:
|
||||||
@@ -977,216 +1380,11 @@ class Ohli24QueueEntity(FfmpegQueueEntity):
|
|||||||
self.savepath, self.filename.replace(".mp4", ".ko.srt")
|
self.savepath, self.filename.replace(".mp4", ".ko.srt")
|
||||||
)
|
)
|
||||||
|
|
||||||
if self.srt_url is not None and not os.path.exists(srt_filepath):
|
if (
|
||||||
# vtt_data = requests.get(self.vtt, headers=headers).text
|
self.srt_url is not None
|
||||||
# srt_data = convert_vtt_to_srt(vtt_data)
|
and not os.path.exists(srt_filepath)
|
||||||
|
and not ("thumbnails.vtt" in self.srt_url)
|
||||||
srt_data = requests.get(self.srt_url, headers=headers).text
|
):
|
||||||
write_file(srt_data, srt_filepath)
|
|
||||||
|
|
||||||
except Exception as e:
|
|
||||||
P.logger.error("Exception:%s", e)
|
|
||||||
P.logger.error(traceback.format_exc())
|
|
||||||
|
|
||||||
def make_episode_info(self):
|
|
||||||
try:
|
|
||||||
# url = 'https://ohli24.net/e/' + self.info['va']
|
|
||||||
base_url = "https://ohli24.net"
|
|
||||||
iframe_url = ""
|
|
||||||
|
|
||||||
# https://ohli24.net/e/%EB%85%B9%EC%9D%84%20%EB%A8%B9%EB%8A%94%20%EB%B9%84%EC%8A%A4%EC%BD%94%206%ED%99%94
|
|
||||||
url = self.info["va"]
|
|
||||||
|
|
||||||
ourls = parse.urlparse(url)
|
|
||||||
|
|
||||||
headers = {
|
|
||||||
"referer": f"{ourls.scheme}://{ourls.netloc}",
|
|
||||||
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36",
|
|
||||||
}
|
|
||||||
logger.debug("make_episode_info()::url==> %s", url)
|
|
||||||
logger.info(f"self.info:::> {self.info}")
|
|
||||||
|
|
||||||
text = requests.get(url, headers=headers).text
|
|
||||||
# logger.debug(text)
|
|
||||||
soup1 = BeautifulSoup(text, "lxml")
|
|
||||||
pattern = re.compile(r"url : \"\.\.(.*)\"")
|
|
||||||
script = soup1.find("script", text=pattern)
|
|
||||||
|
|
||||||
if script:
|
|
||||||
match = pattern.search(script.text)
|
|
||||||
if match:
|
|
||||||
iframe_url = match.group(1)
|
|
||||||
logger.info("iframe_url::> %s", iframe_url)
|
|
||||||
|
|
||||||
logger.debug(soup1.find("iframe"))
|
|
||||||
|
|
||||||
iframe_url = soup1.find("iframe")["src"]
|
|
||||||
logger.info("iframe_url::> %s", iframe_url)
|
|
||||||
|
|
||||||
print(base_url)
|
|
||||||
print(iframe_url)
|
|
||||||
# exit()
|
|
||||||
|
|
||||||
# resp = requests.get(iframe_url, headers=headers, timeout=20).text
|
|
||||||
# soup2 = BeautifulSoup(resp, "lxml")
|
|
||||||
# iframe_src = soup2.find("iframe")["src"]
|
|
||||||
iframe_src = iframe_url
|
|
||||||
# print(resp1)
|
|
||||||
|
|
||||||
logger.debug(f"iframe_src:::> {iframe_src}")
|
|
||||||
|
|
||||||
resp1 = requests.get(iframe_src, headers=headers, timeout=600).text
|
|
||||||
# logger.info('resp1::>> %s', resp1)
|
|
||||||
soup3 = BeautifulSoup(resp1, "lxml")
|
|
||||||
# packed_pattern = re.compile(r'\\{*(eval.+)*\\}', re.MULTILINE | re.DOTALL)
|
|
||||||
s_pattern = re.compile(r"(eval.+)", re.MULTILINE | re.DOTALL)
|
|
||||||
packed_pattern = re.compile(
|
|
||||||
r"if?.([^{}]+)\{.*(eval.+)\}.+else?.{.(eval.+)\}", re.DOTALL
|
|
||||||
)
|
|
||||||
packed_script = soup3.find("script", text=s_pattern)
|
|
||||||
# packed_script = soup3.find('script')
|
|
||||||
# logger.info('packed_script>>> %s', packed_script.text)
|
|
||||||
unpack_script = None
|
|
||||||
if packed_script is not None:
|
|
||||||
# logger.debug('zzzzzzzzzzzz')
|
|
||||||
match = packed_pattern.search(packed_script.text)
|
|
||||||
# match = re.search(packed_pattern, packed_script.text)
|
|
||||||
# logger.debug("match::: %s", match.group())
|
|
||||||
unpack_script = jsbeautifier.beautify(match.group(3))
|
|
||||||
|
|
||||||
# logger.info('match groups:: %s', match.groups())
|
|
||||||
# logger.info('match group3:: %s', match.group(3))
|
|
||||||
# print('packed_script==>', packed_script)
|
|
||||||
# logger.debug(unpack_script)
|
|
||||||
|
|
||||||
p1 = re.compile(r"(\"tracks\".*\])\,\"captions\"", re.MULTILINE | re.DOTALL)
|
|
||||||
m2 = re.search(
|
|
||||||
r"(\"tracks\".*\]).*\"captions\"",
|
|
||||||
unpack_script,
|
|
||||||
flags=re.MULTILINE | re.DOTALL,
|
|
||||||
)
|
|
||||||
# print(m2.group(1))
|
|
||||||
dict_string = "{" + m2.group(1) + "}"
|
|
||||||
|
|
||||||
logger.info(f"dict_string::> {dict_string}")
|
|
||||||
tracks = json.loads(dict_string)
|
|
||||||
self.srt_url = tracks["tracks"][0]["file"]
|
|
||||||
|
|
||||||
logger.debug(f'srt_url::: {tracks["tracks"][0]["file"]}')
|
|
||||||
|
|
||||||
video_hash = iframe_src.split("/")
|
|
||||||
video_hashcode = re.sub(r"index\.php\?data=", "", video_hash[-1])
|
|
||||||
self._vi = video_hashcode
|
|
||||||
video_info_url = f"{video_hash[0]}//{video_hash[2]}/player/index.php?data={video_hashcode}&do=getVideo"
|
|
||||||
# print('hash:::', video_hash)
|
|
||||||
logger.debug(f"video_info_url::: {video_info_url}")
|
|
||||||
|
|
||||||
headers = {
|
|
||||||
"referer": f"{iframe_src}",
|
|
||||||
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) "
|
|
||||||
"Chrome/96.0.4664.110 Whale/3.12.129.46 Safari/537.36"
|
|
||||||
"Mozilla/5.0 (Macintosh; Intel "
|
|
||||||
"Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 "
|
|
||||||
"Whale/3.12.129.46 Safari/537.36",
|
|
||||||
"X-Requested-With": "XMLHttpRequest",
|
|
||||||
}
|
|
||||||
# print(headers)
|
|
||||||
payload = {
|
|
||||||
"hash": video_hash[-1],
|
|
||||||
}
|
|
||||||
resp2 = requests.post(
|
|
||||||
video_info_url, headers=headers, data=payload, timeout=20
|
|
||||||
).json()
|
|
||||||
|
|
||||||
logger.debug("resp2::> %s", resp2)
|
|
||||||
|
|
||||||
hls_url = resp2["videoSource"]
|
|
||||||
logger.debug(f"video_url::> {hls_url}")
|
|
||||||
|
|
||||||
resp3 = requests.get(hls_url, headers=headers).text
|
|
||||||
# logger.debug(resp3)
|
|
||||||
|
|
||||||
# stream_url = hls_url.split('\n')[-1].strip()
|
|
||||||
stream_info = resp3.split("\n")[-2:]
|
|
||||||
# logger.debug('stream_url:: %s', stream_url)
|
|
||||||
logger.debug(f"stream_info:: {stream_info}")
|
|
||||||
self.headers = {
|
|
||||||
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
|
|
||||||
"Chrome/71.0.3554.0 Safari/537.36Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
|
|
||||||
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3554.0 Safari/537.36",
|
|
||||||
"Referer": "https://ndoodle.xyz/video/03a3655fff3e9bdea48de9f49e938e32",
|
|
||||||
}
|
|
||||||
|
|
||||||
self.url = stream_info[1].strip()
|
|
||||||
match = re.compile(r'NAME="(?P<quality>.*?)"').search(stream_info[0])
|
|
||||||
self.quality = "720P"
|
|
||||||
if match is not None:
|
|
||||||
self.quality = match.group("quality")
|
|
||||||
logger.info(self.quality)
|
|
||||||
|
|
||||||
match = re.compile(
|
|
||||||
r"(?P<title>.*?)\s*((?P<season>\d+)%s)?\s*((?P<epi_no>\d+)%s)"
|
|
||||||
% ("기", "화")
|
|
||||||
).search(self.info["title"])
|
|
||||||
|
|
||||||
# epi_no 초기값
|
|
||||||
epi_no = 1
|
|
||||||
|
|
||||||
if match:
|
|
||||||
self.content_title = match.group("title").strip()
|
|
||||||
if "season" in match.groupdict() and match.group("season") is not None:
|
|
||||||
self.season = int(match.group("season"))
|
|
||||||
|
|
||||||
# epi_no = 1
|
|
||||||
epi_no = int(match.group("epi_no"))
|
|
||||||
ret = "%s.S%sE%s.%s-OHNI24.mp4" % (
|
|
||||||
self.content_title,
|
|
||||||
"0%s" % self.season if self.season < 10 else self.season,
|
|
||||||
"0%s" % epi_no if epi_no < 10 else epi_no,
|
|
||||||
self.quality,
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
self.content_title = self.info["title"]
|
|
||||||
P.logger.debug("NOT MATCH")
|
|
||||||
ret = "%s.720p-OHNI24.mp4" % self.info["title"]
|
|
||||||
|
|
||||||
# logger.info('self.content_title:: %s', self.content_title)
|
|
||||||
self.epi_queue = epi_no
|
|
||||||
self.filename = Util.change_text_for_use_filename(ret)
|
|
||||||
logger.info(f"self.filename::> {self.filename}")
|
|
||||||
self.savepath = P.ModelSetting.get("ohli24_download_path")
|
|
||||||
logger.info(f"self.savepath::> {self.savepath}")
|
|
||||||
|
|
||||||
# TODO: 완결 처리
|
|
||||||
|
|
||||||
if P.ModelSetting.get_bool("ohli24_auto_make_folder"):
|
|
||||||
if self.info["day"].find("완결") != -1:
|
|
||||||
folder_name = "%s %s" % (
|
|
||||||
P.ModelSetting.get("ohli24_finished_insert"),
|
|
||||||
self.content_title,
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
folder_name = self.content_title
|
|
||||||
folder_name = Util.change_text_for_use_filename(folder_name.strip())
|
|
||||||
self.savepath = os.path.join(self.savepath, folder_name)
|
|
||||||
if P.ModelSetting.get_bool("ohli24_auto_make_season_folder"):
|
|
||||||
self.savepath = os.path.join(
|
|
||||||
self.savepath, "Season %s" % int(self.season)
|
|
||||||
)
|
|
||||||
self.filepath = os.path.join(self.savepath, self.filename)
|
|
||||||
if not os.path.exists(self.savepath):
|
|
||||||
os.makedirs(self.savepath)
|
|
||||||
|
|
||||||
from framework.common.util import write_file, convert_vtt_to_srt
|
|
||||||
|
|
||||||
srt_filepath = os.path.join(
|
|
||||||
self.savepath, self.filename.replace(".mp4", ".ko.srt")
|
|
||||||
)
|
|
||||||
|
|
||||||
if self.srt_url is not None and not os.path.exists(srt_filepath):
|
|
||||||
# vtt_data = requests.get(self.vtt, headers=headers).text
|
|
||||||
# srt_data = convert_vtt_to_srt(vtt_data)
|
|
||||||
|
|
||||||
srt_data = requests.get(self.srt_url, headers=headers).text
|
srt_data = requests.get(self.srt_url, headers=headers).text
|
||||||
write_file(srt_data, srt_filepath)
|
write_file(srt_data, srt_filepath)
|
||||||
|
|
||||||
|
|||||||
@@ -89,9 +89,10 @@ def initialize():
|
|||||||
PluginUtil.make_info_json(P.plugin_info, __file__)
|
PluginUtil.make_info_json(P.plugin_info, __file__)
|
||||||
from .logic_ohli24 import LogicOhli24
|
from .logic_ohli24 import LogicOhli24
|
||||||
from .logic_anilife import LogicAniLife
|
from .logic_anilife import LogicAniLife
|
||||||
|
from .logic_linkkf import LogicLinkkf
|
||||||
|
|
||||||
# P.module_list = [LogicOhli24(P), LogicLinkkf(P)]
|
# P.module_list = [LogicOhli24(P), LogicLinkkf(P)]
|
||||||
P.module_list = [LogicOhli24(P), LogicAniLife(P)]
|
P.module_list = [LogicOhli24(P), LogicAniLife(P), LogicLinkkf(P)]
|
||||||
P.logic = Logic(P)
|
P.logic = Logic(P)
|
||||||
default_route(P)
|
default_route(P)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
243
static/css/linkkf.css
Normal file
243
static/css/linkkf.css
Normal file
@@ -0,0 +1,243 @@
|
|||||||
|
button.code-button {
|
||||||
|
min-width: 82px !important;
|
||||||
|
}
|
||||||
|
.tooltip {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:after {
|
||||||
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
|
||||||
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 7px 12px;
|
||||||
|
position: absolute;
|
||||||
|
width: auto;
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 300px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
left: -9999px;
|
||||||
|
top: 90%;
|
||||||
|
|
||||||
|
content: attr(data-tooltip-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover:after {
|
||||||
|
top: 230%;
|
||||||
|
left: 0;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
[data-tooltip-text]:hover {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:after {
|
||||||
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
|
||||||
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 7px 12px;
|
||||||
|
position: absolute;
|
||||||
|
width: auto;
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 300px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
left: -9999px;
|
||||||
|
top: -210% !important;
|
||||||
|
|
||||||
|
content: attr(data-tooltip-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover:after {
|
||||||
|
top: 130%;
|
||||||
|
left: 0;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#airing_list {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cut-text {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.container {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1280px) {
|
||||||
|
#yommi_wrapper {
|
||||||
|
max-width: 80%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#screen_movie_list {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
/* .spinner {*/
|
||||||
|
/* width: 40px;*/
|
||||||
|
/* height: 40px;*/
|
||||||
|
/* background-color: #333;*/
|
||||||
|
|
||||||
|
/* margin: 100px auto;*/
|
||||||
|
/* -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;*/
|
||||||
|
/* animation: sk-rotateplane 1.2s infinite ease-in-out;*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
|
/*@-webkit-keyframes sk-rotateplane {*/
|
||||||
|
/* 0% { -webkit-transform: perspective(120px) }*/
|
||||||
|
/* 50% { -webkit-transform: perspective(120px) rotateY(180deg) }*/
|
||||||
|
/* 100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
|
/*@keyframes sk-rotateplane {*/
|
||||||
|
/* 0% {*/
|
||||||
|
/* transform: perspective(120px) rotateX(0deg) rotateY(0deg);*/
|
||||||
|
/* -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)*/
|
||||||
|
/* } 50% {*/
|
||||||
|
/* transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);*/
|
||||||
|
/* -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)*/
|
||||||
|
/* } 100% {*/
|
||||||
|
/* transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);*/
|
||||||
|
/* -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);*/
|
||||||
|
/* }*/
|
||||||
|
|
||||||
|
/*}*/
|
||||||
|
.spinner {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
margin: 100px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.double-bounce1,
|
||||||
|
.double-bounce2 {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #333;
|
||||||
|
opacity: 0.6;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
|
||||||
|
-webkit-animation: sk-bounce 2s infinite ease-in-out;
|
||||||
|
animation: sk-bounce 2s infinite ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.double-bounce2 {
|
||||||
|
-webkit-animation-delay: -1s;
|
||||||
|
animation-delay: -1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes sk-bounce {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: scale(0);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes sk-bounce {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
transform: scale(0);
|
||||||
|
-webkit-transform: scale(0);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: scale(1);
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge-on-image {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
/*bottom: 2px; !* position where you want it *!*/
|
||||||
|
right: 2px;
|
||||||
|
padding: 5px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inner_screen_movie > div {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-body {
|
||||||
|
padding: 0!important;
|
||||||
|
}
|
||||||
|
.new-anime {
|
||||||
|
border-color: darksalmon;
|
||||||
|
border-width: 4px;
|
||||||
|
border-style: dashed;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-title {
|
||||||
|
padding: 1rem!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
button#add_whitelist {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.btn-favorite {
|
||||||
|
background-color: #e0ff42;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: NanumSquareNeo,system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Noto Sans,Liberation Sans,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
background-image: linear-gradient(90deg, #233f48, #6c6fa2, #768dae);
|
||||||
|
}
|
||||||
|
|
||||||
67
static/js/sjva_global1.js
Normal file
67
static/js/sjva_global1.js
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
function global_sub_request_search(page, move_top=true) {
|
||||||
|
var formData = get_formdata('#form_search')
|
||||||
|
formData += '&page=' + page;
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/web_list',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: formData,
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
current_data = data;
|
||||||
|
if (move_top)
|
||||||
|
window.scrollTo(0,0);
|
||||||
|
make_list(data.list)
|
||||||
|
make_page_html(data.paging)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function get_formdata(form_id) {
|
||||||
|
// on, off 일수도 있으니 모두 True, False로 통일하고
|
||||||
|
// 밑에서는 False인 경우 값이 추가되지 않으니.. 수동으로 넣어줌
|
||||||
|
var checkboxs = $(form_id + ' input[type=checkbox]');
|
||||||
|
//for (var i in checkboxs) {
|
||||||
|
for (var i =0 ; i < checkboxs.length; i++) {
|
||||||
|
if ( $(checkboxs[i]).is(':checked') ) {
|
||||||
|
$(checkboxs[i]).val('True');
|
||||||
|
} else {
|
||||||
|
$(checkboxs[i]).val('False');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var formData = $(form_id).serialize();
|
||||||
|
$.each($(form_id + ' input[type=checkbox]')
|
||||||
|
.filter(function(idx) {
|
||||||
|
return $(this).prop('checked') === false
|
||||||
|
}),
|
||||||
|
function(idx, el) {
|
||||||
|
var emptyVal = "False";
|
||||||
|
formData += '&' + $(el).attr('name') + '=' + emptyVal;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
formData = formData.replace("&global_scheduler=True", "")
|
||||||
|
formData = formData.replace("&global_scheduler=False", "")
|
||||||
|
formData = formData.replace("global_scheduler=True&", "")
|
||||||
|
formData = formData.replace("global_scheduler=False&", "")
|
||||||
|
return formData;
|
||||||
|
}
|
||||||
|
|
||||||
|
function globalRequestSearch2(page, move_top = true) {
|
||||||
|
var formData = getFormdata("#form_search")
|
||||||
|
formData += "&page=" + page
|
||||||
|
console.log(formData)
|
||||||
|
$.ajax({
|
||||||
|
url: "/" + PACKAGE_NAME + "/ajax/" + MODULE_NAME + "/web_list2",
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: formData,
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
current_data = data
|
||||||
|
if (move_top) window.scrollTo(0, 0)
|
||||||
|
make_list(data.list)
|
||||||
|
make_page_html(data.paging)
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
204
static/js/sjva_ui14.js
Normal file
204
static/js/sjva_ui14.js
Normal file
@@ -0,0 +1,204 @@
|
|||||||
|
|
||||||
|
|
||||||
|
function m_row_start(padding='10', align='center') {
|
||||||
|
var str = '<div class="row" style="padding-top: '+padding+'px; padding-bottom:'+padding+'px; align-items:'+align+';">';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
function m_row_start_hover(padding='10', align='center') {
|
||||||
|
var str = '<div class="row my_hover" style="padding-top: '+padding+'px; padding-bottom:'+padding+'px; align-items:'+align+';">';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
function m_row_start_top(padding='10') {
|
||||||
|
return m_row_start(padding, 'top');
|
||||||
|
}
|
||||||
|
function m_row_start_color(padding='10', align='center', color='') {
|
||||||
|
var str = '<div class="row" style="padding-top: '+padding+'px; padding-bottom:'+padding+'px; align-items:'+align+'; background-color:'+color+'">';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
function m_row_start_color2(padding='10', align='center') {
|
||||||
|
var str = '<div class="row bg-dark text-white" style="padding-top: '+padding+'px; padding-bottom:'+padding+'px; align-items:'+align+';">';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_row_end() {
|
||||||
|
var str = '</div>';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
//border
|
||||||
|
function m_col(w, h, align='left') {
|
||||||
|
var str = '<div class="col-sm-' + w + ' " style="text-align: '+align+'; word-break:break-all;">';
|
||||||
|
str += h
|
||||||
|
str += '</div>';
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_col2(w, h, align='left') {
|
||||||
|
var str = '<div class="col-sm-' + w + ' " style="padding:5px; margin:0px; text-align: '+align+'; word-break:break-all;">';
|
||||||
|
str += h
|
||||||
|
str += '</div>';
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function m_button_group(h) {
|
||||||
|
var str = '<div class="btn-group btn-group-sm flex-wrap mr-2" role="group">';
|
||||||
|
str += h
|
||||||
|
str += '</div>';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_button(id, text, data) {
|
||||||
|
var str = '<button id="'+id+'" name="'+id+'" class="btn btn-sm btn-outline-success" '
|
||||||
|
for ( var i in data) {
|
||||||
|
str += ' data-' + data[i].key + '="' + data[i].value+ '" '
|
||||||
|
}
|
||||||
|
str += '>' + text + '</button>';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_button2(id, text, data, outline_color) {
|
||||||
|
var str = '<button id="'+id+'" name="'+id+'" class="btn btn-sm btn-outline-'+outline_color+'" '
|
||||||
|
for ( var i in data) {
|
||||||
|
str += ' data-' + data[i].key + '="' + data[i].value+ '" '
|
||||||
|
}
|
||||||
|
str += '>' + text + '</button>';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function m_hr(margin='5') {
|
||||||
|
var str = '<hr style="width: 100%; margin:'+margin+'px;" />';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function m_hr_black() {
|
||||||
|
var str = '<hr style="width: 100%; color: black; height: 2px; background-color:black;" />';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
// 체크박스는 자바로 하면 on/off 스크립트가 안먹힘.
|
||||||
|
|
||||||
|
|
||||||
|
function m_modal(data='EMPTY', title='JSON', json=true) {
|
||||||
|
document.getElementById("modal_title").innerHTML = title;
|
||||||
|
if (json) {
|
||||||
|
data = JSON.stringify(data, null, 2);
|
||||||
|
}
|
||||||
|
document.getElementById("modal_body").innerHTML = "<pre>"+ data + "</pre>";;
|
||||||
|
$("#large_modal").modal();
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_tab_head(name, active) {
|
||||||
|
if (active) {
|
||||||
|
var str = '<a class="nav-item nav-link active" id="id_'+name+'" data-toggle="tab" href="#'+name+'" role="tab">'+name+'</a>';
|
||||||
|
} else {
|
||||||
|
var str = '<a class="nav-item nav-link" id="id_'+name+'" data-toggle="tab" href="#'+name+'" role="tab">'+name+'</a>';
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_tab_content(name, content, active) {
|
||||||
|
if (active) {
|
||||||
|
var str = '<div class="tab-pane fade show active" id="'+name+'" role="tabpanel" >';
|
||||||
|
} else {
|
||||||
|
var str = '<div class="tab-pane fade show" id="'+name+'" role="tabpanel" >';
|
||||||
|
}
|
||||||
|
str += content;
|
||||||
|
str += '</div>'
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function m_progress(id, width, label) {
|
||||||
|
var str = '';
|
||||||
|
str += '<div class="progress" style="height: 25px;">'
|
||||||
|
str += '<div id="'+id+'" class="progress-bar" style="background-color:yellow;width:'+width+'%"></div>';
|
||||||
|
str += '<div id="'+id+'_label" class="justify-content-center d-flex w-100 position-absolute" style="margin-top:2px">'+label+'</div>';
|
||||||
|
str += '</div>'
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function m_progress2(id, width, label) {
|
||||||
|
var str = '';
|
||||||
|
str += '<div class="progress" style="height: 25px;">'
|
||||||
|
str += '<div id="'+id+'" class="progress-bar" style="background-color:yellow;width:'+width+'%"></div>';
|
||||||
|
str += '<div id="'+id+'_label" class="justify-content-center d-flex w-100 position-absolute" style="margin:0px; margin-top:2px">'+label+'</div>';
|
||||||
|
str += '</div>'
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function make_page_html(data) {
|
||||||
|
str = ' \
|
||||||
|
<div class="d-inline-block"></div> \
|
||||||
|
<div class="row mb-3"> \
|
||||||
|
<div class="col-sm-12"> \
|
||||||
|
<div class="btn-toolbar" style="justify-content: center;" role="toolbar" aria-label="Toolbar with button groups" > \
|
||||||
|
<div class="btn-group btn-group-sm mr-2" role="group" aria-label="First group">'
|
||||||
|
if (data.prev_page) {
|
||||||
|
str += '<button id="page" data-page="' + (data.start_page-1) + '" type="button" class="btn btn-secondary">«</button>'
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var i = data.start_page ; i <= data.last_page ; i++) {
|
||||||
|
str += '<button id="page" data-page="' + i +'" type="button" class="btn btn-secondary" ';
|
||||||
|
if (i == data.current_page) {
|
||||||
|
str += 'disabled';
|
||||||
|
}
|
||||||
|
str += '>'+i+'</button>';
|
||||||
|
}
|
||||||
|
if (data.next_page) {
|
||||||
|
str += '<button id="page" data-page="' + (data.last_page+1) + '" type="button" class="btn btn-secondary">»</button>'
|
||||||
|
}
|
||||||
|
|
||||||
|
str += '</div> \
|
||||||
|
</div> \
|
||||||
|
</div> \
|
||||||
|
</div> \
|
||||||
|
'
|
||||||
|
document.getElementById("page1").innerHTML = str;
|
||||||
|
document.getElementById("page2").innerHTML = str;
|
||||||
|
}
|
||||||
|
|
||||||
|
function use_collapse(div, reverse=false) {
|
||||||
|
var ret = $('#' + div).prop('checked');
|
||||||
|
if (reverse) {
|
||||||
|
if (ret) {
|
||||||
|
$('#' + div + '_div').collapse('hide')
|
||||||
|
} else {
|
||||||
|
$('#' + div + '_div').collapse('show')
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (ret) {
|
||||||
|
$('#' + div + '_div').collapse('show')
|
||||||
|
} else {
|
||||||
|
$('#' + div + '_div').collapse('hide')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// primary, secondary, success, danger, warning, info, light, dark, white
|
||||||
|
function j_button(id, text, data={}, color='primary', outline=true, small=false, _class='') {
|
||||||
|
let str = '<button id="'+id+'" name="'+id+'" class="btn btn-sm btn';
|
||||||
|
if (outline) {
|
||||||
|
str += '-outline';
|
||||||
|
}
|
||||||
|
str += '-' + color+'';
|
||||||
|
str += ' ' + _class;
|
||||||
|
if (small) {
|
||||||
|
str += ' py-0" style="font-size: 0.8em;"';
|
||||||
|
} else {
|
||||||
|
str += '" ';
|
||||||
|
}
|
||||||
|
for ( var key in data) {
|
||||||
|
str += ' data-' + key + '="' + data[key]+ '" '
|
||||||
|
}
|
||||||
|
str += '>' + text + '</button>';
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1,21 +1,21 @@
|
|||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %} {% block content %}
|
||||||
<div id="preloader">
|
<div id="preloader">
|
||||||
<div class='demo'>
|
<div class="demo">
|
||||||
<!-- <div class="loader-inner">-->
|
<!-- <div class="loader-inner">-->
|
||||||
<div class='circle'>
|
<div class="circle">
|
||||||
<div class='inner'></div>
|
<div class="inner"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class='circle'>
|
<div class="circle">
|
||||||
<div class='inner'></div>
|
<div class="inner"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class='circle'>
|
<div class="circle">
|
||||||
<div class='inner'></div>
|
<div class="inner"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class='circle'>
|
<div class="circle">
|
||||||
<div class='inner'></div>
|
<div class="inner"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class='circle'>
|
<div class="circle">
|
||||||
<div class='inner'></div>
|
<div class="inner"></div>
|
||||||
</div>
|
</div>
|
||||||
<!-- </div>-->
|
<!-- </div>-->
|
||||||
</div>
|
</div>
|
||||||
@@ -29,26 +29,15 @@
|
|||||||
aria-label="Search"
|
aria-label="Search"
|
||||||
aria-describedby="search-addon"
|
aria-describedby="search-addon"
|
||||||
/>
|
/>
|
||||||
<button id="btn_search" type="button" class="btn btn-primary">
|
<button id="btn_search" type="button" class="btn btn-primary">search</button>
|
||||||
search
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div id="anime_category" class="btn-group" role="group" aria-label="Basic example">
|
||||||
id="anime_category"
|
|
||||||
class="btn-group"
|
|
||||||
role="group"
|
|
||||||
aria-label="Basic example"
|
|
||||||
>
|
|
||||||
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
||||||
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
||||||
<button id="complete_anilist" type="button" class="btn btn-dark">
|
<!-- <button id="complete_anilist" type="button" class="btn btn-dark">완결</button>-->
|
||||||
완결
|
<button id="top20" type="button" class="btn btn-grey">Top20</button>
|
||||||
</button>
|
|
||||||
<button id="top20" type="button" class="btn btn-grey">
|
|
||||||
Top20
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<form id="airing_list_form">
|
<form id="airing_list_form">
|
||||||
<div id="airing_list"></div>
|
<div id="airing_list"></div>
|
||||||
@@ -56,77 +45,71 @@
|
|||||||
<form id="screen_movie_list_form">
|
<form id="screen_movie_list_form">
|
||||||
<div id="screen_movie_list" class="container"></div>
|
<div id="screen_movie_list" class="container"></div>
|
||||||
</form>
|
</form>
|
||||||
<div class="text-center">
|
|
||||||
<div id="spinner" class="spinner-border" role="status">
|
|
||||||
<span class="sr-only">Loading...</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<form id="program_auto_form">
|
<form id="program_auto_form">
|
||||||
<div id="episode_list"></div>
|
<div id="episode_list"></div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<!--전체-->
|
<!--전체-->
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
|
||||||
<script
|
<script
|
||||||
type="text/javascript"
|
src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js"
|
||||||
src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"
|
|
||||||
></script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js"
|
|
||||||
integrity="sha512-jNDtFf7qgU0eH/+Z42FG4fw3w7DM/9zbgNPe3wfJlCylVDTT3IgKW5r92Vy9IHa6U50vyMz5gRByIu4YIXFtaQ=="
|
integrity="sha512-jNDtFf7qgU0eH/+Z42FG4fw3w7DM/9zbgNPe3wfJlCylVDTT3IgKW5r92Vy9IHa6U50vyMz5gRByIu4YIXFtaQ=="
|
||||||
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
crossorigin="anonymous"
|
||||||
|
referrerpolicy="no-referrer"
|
||||||
|
></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
const package_name = "{{arg['package_name'] }}";
|
const package_name = "{{arg['package_name'] }}"
|
||||||
const sub = "{{arg['sub'] }}";
|
const sub = "{{arg['sub'] }}"
|
||||||
const anilife_url = "{{arg['anilife_url']}}";
|
const anilife_url = "{{arg['anilife_url']}}"
|
||||||
let current_data = null;
|
let current_data = null
|
||||||
let page = 1;
|
let page = 1
|
||||||
let next_page = Number
|
let next_page = Number
|
||||||
let current_cate = ''
|
let current_cate = ""
|
||||||
let current_query = ''
|
let current_query = ""
|
||||||
|
|
||||||
const observer = lozad('.lozad', {
|
const observer = lozad(".lozad", {
|
||||||
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
rootMargin: "10px 0px", // syntax similar to that of CSS Margin
|
||||||
threshold: 0.1, // ratio of element convergence
|
threshold: 0.1, // ratio of element convergence
|
||||||
enableAutoReload: true // it will reload the new image when validating attributes changes
|
enableAutoReload: true, // it will reload the new image when validating attributes changes
|
||||||
});
|
})
|
||||||
observer.observe();
|
observer.observe()
|
||||||
const loader = document.getElementById("preloader");
|
const loader = document.getElementById("preloader")
|
||||||
|
|
||||||
const dismissLoadingScreen = async function () {
|
const dismissLoadingScreen = async function () {
|
||||||
console.log("Before the delay")
|
console.log("Before the delay")
|
||||||
// await delay(2.5);
|
// await delay(2.5);
|
||||||
loader.style.display = "none";
|
loader.style.display = "none"
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
const get_anime_list = (type, page) => {
|
const get_anime_list = (type, page) => {
|
||||||
console.log(`type: ${type}, page: ${page}`)
|
console.log(`type: ${type}, page: ${page}`)
|
||||||
let url = ''
|
let url = ""
|
||||||
let data = {"page": page, "type": type}
|
let data = { page: page, type: type }
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'ing':
|
case "ing":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
current_cate = 'ing'
|
current_cate = "ing"
|
||||||
break;
|
|
||||||
case 'movie':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/screen_movie_list'
|
|
||||||
current_cate = 'movie'
|
|
||||||
break;
|
|
||||||
case 'theater':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
|
||||||
current_cate = 'theater'
|
|
||||||
break;
|
|
||||||
case 'fin':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/complete_list'
|
|
||||||
current_cate = 'fin'
|
|
||||||
break
|
break
|
||||||
case 'top20':
|
case "movie":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/screen_movie_list"
|
||||||
current_cate = 'top20'
|
current_cate = "movie"
|
||||||
|
break
|
||||||
|
case "theater":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
|
current_cate = "theater"
|
||||||
|
break
|
||||||
|
case "fin":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/complete_list"
|
||||||
|
current_cate = "fin"
|
||||||
|
break
|
||||||
|
case "top20":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
|
current_cate = "top20"
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@@ -137,18 +120,18 @@
|
|||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: (ret) => {
|
success: (ret) => {
|
||||||
current_screen_movie_data = ret
|
current_screen_movie_data = ret
|
||||||
console.log('ret::>', ret)
|
console.log("ret::>", ret)
|
||||||
|
|
||||||
if (current_screen_movie_data !== '') {
|
if (current_screen_movie_data !== "") {
|
||||||
if (type === "ing") {
|
if (type === "ing") {
|
||||||
make_airing_list(ret.data, page)
|
make_airing_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else if (type === "fin") {
|
} else if (type === "fin") {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else if (type === "theater") {
|
} else if (type === "theater") {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else {
|
} else {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
}
|
}
|
||||||
@@ -157,165 +140,193 @@
|
|||||||
}
|
}
|
||||||
dismissLoadingScreen()
|
dismissLoadingScreen()
|
||||||
next_page = page + 1
|
next_page = page + 1
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_airing_list(data, page) {
|
function make_airing_list(data, page) {
|
||||||
let str = ''
|
console.log("call make_airing_list()")
|
||||||
let tmp = ''
|
let str = ""
|
||||||
|
let tmp = ""
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
|
tmp = '<div class="col-6 col-sm-4 col-md-3">'
|
||||||
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<div class="card">';
|
|
||||||
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
||||||
tmp += '<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' + data.anime_list[i].image_link + '" style="cursor: pointer" onclick="location.href=\'./request?code=' + data.anime_list[i].code + '\'"/>';
|
tmp +=
|
||||||
|
'<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' +
|
||||||
|
data.anime_list[i].image_link +
|
||||||
|
'" style="cursor: pointer" onclick="location.href=\'./request?code=' +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
"'\"/>"
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
||||||
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
tmp +=
|
||||||
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
'<p class="card-text">' +
|
||||||
tmp += '</div>';
|
// data.anime_list[i].code +
|
||||||
tmp += '</div>';
|
'<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
tmp += '</div>';
|
data.anime_list[i].code +
|
||||||
|
'"><i class="bi bi-heart-fill"></i></button></p>'
|
||||||
|
tmp +=
|
||||||
|
'<a href="./request?code=' +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
'" class="btn btn-primary cut-text">' +
|
||||||
|
data.anime_list[i].title +
|
||||||
|
"</a>"
|
||||||
|
// tmp +=
|
||||||
|
// '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
|
// data.anime_list[i].code +
|
||||||
|
// '"><i class="bi bi-heart-fill"></i></button>';
|
||||||
|
tmp += "</div><!-- .card -->"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
str += m_hr_black();
|
// str += '</div><!-- .card-columns -->';
|
||||||
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$("img.lazyload").lazyload({
|
$("img.lazyload").lazyload({
|
||||||
threshold: 10,
|
threshold: 10,
|
||||||
effect: "fadeIn",
|
effect: "fadeIn",
|
||||||
});
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_search_result_list(data, page) {
|
function make_search_result_list(data, page) {
|
||||||
let str = ''
|
let str = ""
|
||||||
let tmp = ''
|
let tmp = ""
|
||||||
|
|
||||||
console.log(data.anime_list, page)
|
console.log(data.anime_list, page)
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
if (data.anime_list[i].wr_id !== '') {
|
if (data.anime_list[i].wr_id !== "") {
|
||||||
const re = /bo_table=([^&]+)/
|
const re = /bo_table=([^&]+)/
|
||||||
const bo_table = data.anime_list[i].link.match(re)
|
const bo_table = data.anime_list[i].link.match(re)
|
||||||
// console.log(bo_table)
|
// console.log(bo_table)
|
||||||
request_url = './request?code=' + data.anime_list[i].code + '&wr_id=' + data.anime_list[i].wr_id + '&bo_table=' + bo_table[1]
|
request_url =
|
||||||
|
"./request?code=" +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
"&wr_id=" +
|
||||||
|
data.anime_list[i].wr_id +
|
||||||
|
"&bo_table=" +
|
||||||
|
bo_table[1]
|
||||||
} else {
|
} else {
|
||||||
request_url = './request?code=' + data.anime_list[i].code
|
request_url = "./request?code=" + data.anime_list[i].code
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = '<div class="col-sm-4">';
|
tmp = '<div class="col-sm-4">'
|
||||||
tmp += '<div class="card">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />'
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
||||||
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
tmp += '<p class="card-text">' + data.anime_list[i].code + "</p>"
|
||||||
tmp += '<a href="' + request_url + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
tmp +=
|
||||||
tmp += '</div>';
|
'<a href="' +
|
||||||
tmp += '</div>';
|
request_url +
|
||||||
tmp += '</div>';
|
'" class="btn btn-primary cut-text">' +
|
||||||
|
data.anime_list[i].title +
|
||||||
|
"</a>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
str += m_hr_black();
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_screen_movie_list(data, page) {
|
function make_screen_movie_list(data, page) {
|
||||||
let str = ''
|
let str = ""
|
||||||
let tmp = ''
|
let tmp = ""
|
||||||
|
|
||||||
console.log(data.anime_list, page)
|
console.log(data.anime_list, page)
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
|
tmp = '<div class="col-sm-4">'
|
||||||
tmp = '<div class="col-sm-4">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<div class="card">';
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />'
|
||||||
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
// tmp += '<p class="card-text">' + data.anime_list[i].code + "</p>"
|
||||||
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
tmp +=
|
||||||
tmp += '</div>';
|
'<a href="./request?code=' +
|
||||||
tmp += '</div>';
|
data.anime_list[i].code +
|
||||||
tmp += '</div>';
|
'" class="btn btn-primary cut-text">' +
|
||||||
|
data.anime_list[i].title +
|
||||||
|
"</a>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
str += m_hr_black();
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
}
|
}
|
||||||
|
|
||||||
$("img.lazyload").lazyload({
|
$("img.lazyload").lazyload({
|
||||||
threshold: 10,
|
threshold: 10,
|
||||||
effect: "fadeIn",
|
effect: "fadeIn",
|
||||||
});
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
// if ( "{{arg['anilife_current_code']}}" !== "" ) {
|
// if ( "{{arg['anilife_current_code']}}" !== "" ) {
|
||||||
// document.getElementById("code").value = "{{arg['anilife_current_code']}}";
|
// document.getElementById("code").value = "{{arg['anilife_current_code']}}";
|
||||||
// // 값이 공백이 아니면 분석 버튼 계속 누름
|
// // 값이 공백이 아니면 분석 버튼 계속 누름
|
||||||
@@ -324,32 +335,30 @@
|
|||||||
$("#input_search").keydown(function (key) {
|
$("#input_search").keydown(function (key) {
|
||||||
if (key.keyCode === 13) {
|
if (key.keyCode === 13) {
|
||||||
// alert("엔터키를 눌렀습니다.");
|
// alert("엔터키를 눌렀습니다.");
|
||||||
$("#btn_search").trigger("click");
|
$("#btn_search").trigger("click")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
get_anime_list("ing", 1)
|
get_anime_list("ing", 1)
|
||||||
|
|
||||||
|
const observer = lozad(".lozad", {
|
||||||
const observer = lozad('.lozad', {
|
rootMargin: "10px 0px", // syntax similar to that of CSS Margin
|
||||||
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
|
||||||
threshold: 0.1, // ratio of element convergence
|
threshold: 0.1, // ratio of element convergence
|
||||||
enableAutoReload: true // it will reload the new image when validating attributes changes
|
enableAutoReload: true, // it will reload the new image when validating attributes changes
|
||||||
});
|
})
|
||||||
observer.observe();
|
observer.observe()
|
||||||
|
})
|
||||||
});
|
|
||||||
|
|
||||||
$("body").on("click", "#btn_search", function (e) {
|
$("body").on("click", "#btn_search", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
let query = $("#input_search").val();
|
let query = $("#input_search").val()
|
||||||
console.log(query);
|
console.log(query)
|
||||||
current_cate = "search"
|
current_cate = "search"
|
||||||
current_query = query
|
current_query = query
|
||||||
|
|
||||||
if ($("#input_search").val() === "") {
|
if ($("#input_search").val() === "") {
|
||||||
console.log("search keyword nothing");
|
console.log("search keyword nothing")
|
||||||
return false;
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@@ -361,140 +370,162 @@
|
|||||||
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
||||||
success: function (ret) {
|
success: function (ret) {
|
||||||
if (ret.ret) {
|
if (ret.ret) {
|
||||||
console.log('ret:::', ret)
|
console.log("ret:::", ret)
|
||||||
make_search_result_list(ret.data, 1);
|
make_search_result_list(ret.data, 1)
|
||||||
next_page = page + 1
|
next_page = page + 1
|
||||||
} else {
|
} else {
|
||||||
$.notify("<strong>분석 실패</strong><br>" + ret.log, {
|
$.notify("<strong>분석 실패</strong><br>" + ret.log, {
|
||||||
type: "warning",
|
type: "warning",
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
$('#anime_category #ing').on("click", function () {
|
$("#anime_category #ing").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// {#console.log(this.id)#}
|
||||||
let spinner = document.getElementById('spinner');
|
let spinner = document.getElementById("spinner")
|
||||||
spinner.style.visibility = 'visible';
|
spinner.style.visibility = "visible"
|
||||||
get_anime_list("ing", 1)
|
get_anime_list("ing", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#anime_category #complete_anilist').on("click", function () {
|
$("#anime_category #complete_anilist").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById("spinner")
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = "visible"
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("fin", 1)
|
get_anime_list("fin", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#anime_category #theater').on("click", function () {
|
$("#anime_category #theater").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById("spinner")
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = "visible"
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("theater", 1)
|
get_anime_list("theater", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#anime_category #top20').on("click", function () {
|
$("#anime_category #top20").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById("spinner")
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = "visible"
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("top20", 1)
|
get_anime_list("top20", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
// 분석 버튼 클릭시 호출
|
// 분석 버튼 클릭시 호출
|
||||||
$("body").on('click', '#analysis_btn', function (e) {
|
$("body").on("click", "#analysis_btn", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
const code = document.getElementById("code").value
|
const code = document.getElementById("code").value
|
||||||
console.log(code)
|
console.log(code)
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
url: "/" + package_name + "/ajax/" + sub + "/analysis",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
cache: false,
|
cache: false,
|
||||||
data: { code: code },
|
data: { code: code },
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (ret) {
|
success: function (ret) {
|
||||||
if (ret.ret === 'success' && ret.data != null) {
|
if (ret.ret === "success" && ret.data != null) {
|
||||||
// console.log(ret.code)
|
// console.log(ret.code)
|
||||||
console.log(ret.data)
|
console.log(ret.data)
|
||||||
make_program(ret.data)
|
make_program(ret.data)
|
||||||
} else {
|
} else {
|
||||||
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
$.notify("<strong>분석 실패</strong><br>" + ret.log, { type: "warning" })
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
|
$("body").on("click", "#go_anilife_btn", function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
window.open("{{arg['anilife_url']}}", "_blank")
|
||||||
|
})
|
||||||
|
|
||||||
$("body").on('click', '#go_anilife_btn', function (e) {
|
$("body").on("click", "#add_whitelist", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
window.open("{{arg['anilife_url']}}", "_blank");
|
let data_code = $(this).attr("data-code")
|
||||||
});
|
console.log(data_code)
|
||||||
|
|
||||||
$("body").on('click', '#all_check_on_btn', function (e) {
|
|
||||||
e.preventDefault();
|
|
||||||
$('input[id^="checkbox_"]').bootstrapToggle('on')
|
|
||||||
});
|
|
||||||
|
|
||||||
$("body").on('click', '#all_check_off_btn', function (e) {
|
|
||||||
e.preventDefault();
|
|
||||||
$('input[id^="checkbox_"]').bootstrapToggle('off')
|
|
||||||
});
|
|
||||||
|
|
||||||
$("body").on('click', '#add_queue_btn', function (e) {
|
|
||||||
e.preventDefault();
|
|
||||||
data = current_data.episode[$(this).data('idx')];
|
|
||||||
console.log('data:::>', data)
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '/' + package_name + '/ajax/' + sub + '/add_queue',
|
url: "/" + package_name + "/ajax/" + sub + "/add_whitelist",
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: JSON.stringify({ data_code: data_code }),
|
||||||
|
contentType: "application/json;charset=UTF-8",
|
||||||
|
dataType: "json",
|
||||||
|
success: function (ret) {
|
||||||
|
if (ret.ret) {
|
||||||
|
$.notify("<strong>추가하였습니다.</strong><br>", {
|
||||||
|
type: "success",
|
||||||
|
})
|
||||||
|
// make_program(ret);
|
||||||
|
} else {
|
||||||
|
$.notify("<strong>추가 실패</strong><br>" + ret.log, {
|
||||||
|
type: "warning",
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
$("body").on("click", "#all_check_on_btn", function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
$('input[id^="checkbox_"]').bootstrapToggle("on")
|
||||||
|
})
|
||||||
|
|
||||||
|
$("body").on("click", "#all_check_off_btn", function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
$('input[id^="checkbox_"]').bootstrapToggle("off")
|
||||||
|
})
|
||||||
|
|
||||||
|
$("body").on("click", "#add_queue_btn", function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
data = current_data.episode[$(this).data("idx")]
|
||||||
|
console.log("data:::>", data)
|
||||||
|
$.ajax({
|
||||||
|
url: "/" + package_name + "/ajax/" + sub + "/add_queue",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
cache: false,
|
cache: false,
|
||||||
data: { data: JSON.stringify(data) },
|
data: { data: JSON.stringify(data) },
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (data.ret == 'enqueue_db_append' || data.ret == 'enqueue_db_exist') {
|
if (data.ret == "enqueue_db_append" || data.ret == "enqueue_db_exist") {
|
||||||
$.notify('<strong>다운로드 작업을 추가 하였습니다.</strong>', {type: 'success'});
|
$.notify("<strong>다운로드 작업을 추가 하였습니다.</strong>", { type: "success" })
|
||||||
} else if (data.ret == 'queue_exist') {
|
} else if (data.ret == "queue_exist") {
|
||||||
$.notify('<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>', {type: 'warning'});
|
$.notify("<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>", { type: "warning" })
|
||||||
} else if (data.ret == 'db_completed') {
|
} else if (data.ret == "db_completed") {
|
||||||
$.notify('<strong>DB에 완료 기록이 있습니다.</strong>', {type: 'warning'});
|
$.notify("<strong>DB에 완료 기록이 있습니다.</strong>", { type: "warning" })
|
||||||
} else {
|
} else {
|
||||||
$.notify('<strong>추가 실패</strong><br>' + ret.log, {type: 'warning'});
|
$.notify("<strong>추가 실패</strong><br>" + ret.log, { type: "warning" })
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
// const observer = lozad();
|
// const observer = lozad();
|
||||||
// const el = document.querySelector('img');
|
// const el = document.querySelector('img');
|
||||||
// const observer = lozad(el); // passing a `NodeList` (e.g. `document.querySelectorAll()`) is also valid
|
// const observer = lozad(el); // passing a `NodeList` (e.g. `document.querySelectorAll()`) is also valid
|
||||||
// observer.observe();
|
// observer.observe();
|
||||||
const loadNextAnimes = (cate, page) => {
|
const loadNextAnimes = (cate, page) => {
|
||||||
spinner.style.display = "block";
|
spinner.style.display = "block"
|
||||||
let data = {type: cate, page: String(page)};
|
let data = { type: cate, page: String(page) }
|
||||||
let url = ''
|
let url = ""
|
||||||
switch (cate) {
|
switch (cate) {
|
||||||
case 'ing':
|
case "ing":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
current_cate = 'ing'
|
current_cate = "ing"
|
||||||
break;
|
|
||||||
case 'movie':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/screen_movie_list'
|
|
||||||
current_cate = 'movie'
|
|
||||||
break;
|
|
||||||
case 'theater':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
|
||||||
current_cate = 'theater'
|
|
||||||
break;
|
|
||||||
case 'fin':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/complete_list'
|
|
||||||
current_cate = 'fin'
|
|
||||||
break
|
break
|
||||||
case 'search':
|
case "movie":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/screen_movie_list"
|
||||||
|
current_cate = "movie"
|
||||||
|
break
|
||||||
|
case "theater":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
|
current_cate = "theater"
|
||||||
|
break
|
||||||
|
case "fin":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/complete_list"
|
||||||
|
current_cate = "fin"
|
||||||
|
break
|
||||||
|
case "search":
|
||||||
url = "/" + package_name + "/ajax/" + sub + "/search"
|
url = "/" + package_name + "/ajax/" + sub + "/search"
|
||||||
current_cate = 'search'
|
current_cate = "search"
|
||||||
data.query = current_query
|
data.query = current_query
|
||||||
break;
|
break
|
||||||
default:
|
default:
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(url, {
|
fetch(url, {
|
||||||
@@ -509,42 +540,40 @@
|
|||||||
.then((response) => {
|
.then((response) => {
|
||||||
// console.log("Success:", JSON.stringify(response));
|
// console.log("Success:", JSON.stringify(response));
|
||||||
// {#imagesContainer.appendChild()#}
|
// {#imagesContainer.appendChild()#}
|
||||||
console.log("return page:::> ", String(response.page));
|
console.log("return page:::> ", String(response.page))
|
||||||
// {#page = response.page#}
|
// {#page = response.page#}
|
||||||
if (current_cate === 'search') {
|
if (current_cate === "search") {
|
||||||
make_search_result_list(response.data, response.page);
|
make_search_result_list(response.data, response.page)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
make_screen_movie_list(response.data, response.page);
|
make_screen_movie_list(response.data, response.page)
|
||||||
}
|
}
|
||||||
page++;
|
page++
|
||||||
next_page++;
|
next_page++
|
||||||
})
|
})
|
||||||
.catch((error) => console.error("Error:", error));
|
.catch((error) => console.error("Error:", error))
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
const onScroll = (e) => {
|
const onScroll = (e) => {
|
||||||
console.dir(e.target.scrollingElement.scrollHeight);
|
console.dir(e.target.scrollingElement.scrollHeight)
|
||||||
const {scrollTop, scrollHeight, clientHeight} = e.target.scrollingElement;
|
const { scrollTop, scrollHeight, clientHeight } = e.target.scrollingElement
|
||||||
if (Math.round(scrollHeight - scrollTop) <= clientHeight) {
|
if (Math.round(scrollHeight - scrollTop) <= clientHeight) {
|
||||||
document.getElementById("spinner").style.display = "block";
|
document.getElementById("spinner").style.display = "block"
|
||||||
console.log("loading");
|
console.log("loading")
|
||||||
console.log("now page::> ", page);
|
console.log("now page::> ", page)
|
||||||
console.log("next_page::> ", String(next_page));
|
console.log("next_page::> ", String(next_page))
|
||||||
loadNextAnimes(current_cate, next_page);
|
loadNextAnimes(current_cate, next_page)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
const debounce = (func, delay) => {
|
const debounce = (func, delay) => {
|
||||||
let timeoutId = null;
|
let timeoutId = null
|
||||||
return (...args) => {
|
return (...args) => {
|
||||||
clearTimeout(timeoutId);
|
clearTimeout(timeoutId)
|
||||||
timeoutId = setTimeout(func.bind(null, ...args), delay);
|
timeoutId = setTimeout(func.bind(null, ...args), delay)
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
document.addEventListener("scroll", debounce(onScroll, 300));
|
document.addEventListener("scroll", debounce(onScroll, 300))
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
button.code-button {
|
button.code-button {
|
||||||
@@ -682,7 +711,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue,
|
||||||
|
Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
|
||||||
|
Segoe UI Symbol, Noto Color Emoji;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@@ -777,7 +808,6 @@
|
|||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.loader-inner {
|
.loader-inner {
|
||||||
@@ -810,4 +840,8 @@
|
|||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css"
|
||||||
|
/>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -16,7 +16,8 @@
|
|||||||
</select>
|
</select>
|
||||||
</span>
|
</span>
|
||||||
<span class="col-md-8">
|
<span class="col-md-8">
|
||||||
<input id="search_word" name="search_word" class="form-control form-control-sm w-75" type="text" placeholder="" aria-label="Search">
|
<input id="search_word" name="search_word" class="form-control form-control-sm w-75" type="text"
|
||||||
|
placeholder="" aria-label="Search">
|
||||||
<button id="search" class="btn btn-sm btn-outline-success">검색</button>
|
<button id="search" class="btn btn-sm btn-outline-success">검색</button>
|
||||||
<button id="reset_btn" class="btn btn-sm btn-outline-success">리셋</button>
|
<button id="reset_btn" class="btn btn-sm btn-outline-success">리셋</button>
|
||||||
</span>
|
</span>
|
||||||
@@ -110,7 +111,6 @@ $("body").on('click', '#request_btn', function(e){
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function make_list(data) {
|
function make_list(data) {
|
||||||
//console.log(data)
|
//console.log(data)
|
||||||
str = '';
|
str = '';
|
||||||
@@ -138,8 +138,6 @@ function make_list(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
@@ -158,14 +156,49 @@ body {
|
|||||||
);
|
);
|
||||||
animation: AnimateBG 20s ease infinite;
|
animation: AnimateBG 20s ease infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main_container {
|
#main_container {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes AnimateBG {
|
@keyframes AnimateBG {
|
||||||
0%{background-position:0% 50%}
|
0% {
|
||||||
50%{background-position:100% 50%}
|
background-position: 0% 50%
|
||||||
100%{background-position:0% 50%}
|
}
|
||||||
|
50% {
|
||||||
|
background-position: 100% 50%
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 0% 50%
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.container {
|
||||||
|
max-width: 540px;
|
||||||
|
min-height: 1080px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.container {
|
||||||
|
max-width: 720px;
|
||||||
|
min-height: 1080px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.container {
|
||||||
|
max-width: 960px;
|
||||||
|
min-height: 1080px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
.container {
|
||||||
|
max-width: 1140px;
|
||||||
|
min-height: 1080px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -120,9 +120,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function make_program(data) {
|
function make_program(data) {
|
||||||
|
|
||||||
current_data = data;
|
current_data = data;
|
||||||
// console.log("current_data::", current_data)
|
// console.log("current_data::", current_data)
|
||||||
str = '';
|
let str = '';
|
||||||
|
let tmp = '';
|
||||||
tmp = '<div class="form-inline">'
|
tmp = '<div class="form-inline">'
|
||||||
tmp += m_button('check_download_btn', '선택 다운로드 추가', []);
|
tmp += m_button('check_download_btn', '선택 다운로드 추가', []);
|
||||||
tmp += m_button('all_check_on_btn', '전체 선택', []);
|
tmp += m_button('all_check_on_btn', '전체 선택', []);
|
||||||
@@ -143,18 +145,8 @@
|
|||||||
tmp = '<img src="' + data.image + '" class="img-fluid">';
|
tmp = '<img src="' + data.image + '" class="img-fluid">';
|
||||||
str += m_col(3, tmp)
|
str += m_col(3, tmp)
|
||||||
tmp = ''
|
tmp = ''
|
||||||
tmp += m_row_start(2) + m_col(3, '제목', 'right') + m_col(9, data.title) + m_row_end();
|
// tmp += m_row_start(2) + m_col(3, '제목', 'right') + m_col(9, data.title) + m_row_end();
|
||||||
// tmp += m_row_start(2) + m_col(3, '제작사', 'right') + m_col(9, data.des._pub) + m_row_end();
|
tmp += '<div><p><b style="font-size: 15px; color: midnightblue">'+data.title+'</b></p></div>'
|
||||||
// tmp += m_row_start(2) + m_col(3, '감독', 'right') + m_col(9, data.des._dir) + m_row_end();
|
|
||||||
//
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '원작', 'right') + m_col(9, data.des._otit) + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '장르', 'right') + m_col(9, data.des._tag) + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '분류', 'right') + m_col(9, data.des._classifi) + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '공식 방영일', 'right') + m_col(9, data.date+'('+data.day+')') + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '에피소드', 'right') + m_col(9, data.des._total_chapter ? data.des._total_chapter : '') + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '등급', 'right') + m_col(9, data.des._grade) + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '최근 방영일', 'right') + m_col(9, data.des._recent_date ? data.des._recent_date : '') + m_row_end();
|
|
||||||
// tmp += m_row_start(2) + m_col(3, '줄거리', 'right') + m_col(9, data.ser_description) + m_row_end();
|
|
||||||
|
|
||||||
tmp += "<div>" + data.des1 + "</div>"
|
tmp += "<div>" + data.des1 + "</div>"
|
||||||
str += m_col(9, tmp)
|
str += m_col(9, tmp)
|
||||||
@@ -184,14 +176,21 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
console.log(params.wr_id)
|
// console.log(params.wr_id)
|
||||||
console.log(findGetParameter('wr_id'))
|
// console.log("{{arg['anilife_current_code']}}")
|
||||||
console.log(params.code)
|
// console.log(findGetParameter('wr_id'))
|
||||||
if (params.code === '') {
|
// console.log(params.code)
|
||||||
|
if (params.code === '' || params.code == null) {
|
||||||
|
// console.log('null')
|
||||||
|
dismissLoadingScreen()
|
||||||
|
return false;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
console.log('here')
|
||||||
document.getElementById("code").value = params.code
|
document.getElementById("code").value = params.code
|
||||||
document.getElementById("analysis_btn").click();
|
document.getElementById("analysis_btn").click();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ("{{arg['anilife_current_code']}}" !== "") {
|
if ("{{arg['anilife_current_code']}}" !== "") {
|
||||||
@@ -214,7 +213,7 @@
|
|||||||
// 값이 공백이 아니면 분석 버튼 계속 누름
|
// 값이 공백이 아니면 분석 버튼 계속 누름
|
||||||
// {#document.getElementById("analysis_btn").click();#}
|
// {#document.getElementById("analysis_btn").click();#}
|
||||||
} else {
|
} else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<nav>
|
<nav>
|
||||||
{{ macros.m_tab_head_start() }}
|
{{ macros.m_tab_head_start() }}
|
||||||
{{ macros.m_tab_head2('normal', '일반', true) }}
|
{{ macros.m_tab_head2('normal', '일반', true) }}
|
||||||
{{ macros.m_tab_head2('auto', '홈화면 자동', false) }}
|
{{ macros.m_tab_head2('auto', '자동 설정', false) }}
|
||||||
{{ macros.m_tab_head2('action', '기타', false) }}
|
{{ macros.m_tab_head2('action', '기타', false) }}
|
||||||
{{ macros.m_tab_head_end() }}
|
{{ macros.m_tab_head_end() }}
|
||||||
</nav>
|
</nav>
|
||||||
@@ -28,9 +28,9 @@
|
|||||||
|
|
||||||
{{ macros.m_tab_content_start('auto', false) }}
|
{{ macros.m_tab_content_start('auto', false) }}
|
||||||
{{ macros.setting_global_scheduler_sub_button(arg['scheduler'], arg['is_running']) }}
|
{{ macros.setting_global_scheduler_sub_button(arg['scheduler'], arg['is_running']) }}
|
||||||
{{ macros.setting_input_text('anilife_interval', '스케쥴링 실행 정보', value=arg['anilife_interval'], col='3', desc=['Inverval(minute 단위)이나 Cron 설정']) }}
|
{{ macros.setting_input_text('anilife_interval', '스케쥴링 실행 정보', value=arg['anilife_interval'], col='4', desc=['Interval(minute 단위)이나 Cron 설정']) }}
|
||||||
{{ macros.setting_checkbox('anilife_auto_start', '시작시 자동실행', value=arg['anilife_auto_start'], desc='On : 시작시 자동으로 스케쥴러에 등록 됩니다.') }}
|
{{ macros.setting_checkbox('anilife_auto_start', '시작시 자동실행', value=arg['anilife_auto_start'], desc='On : 시작시 자동으로 스케쥴러에 등록 됩니다.') }}
|
||||||
{{ macros.setting_input_textarea('anilife_auto_code_list', '자동 다운로드할 작품 코드', desc=['all 입력시 모두 받기', '구분자 | 또는 엔터'], value=arg['anilife_auto_code_list'], row='10') }}
|
{{ macros.setting_input_textarea('anilife_auto_code_list', '자동 다운로드할 작품 코드', desc=['구분자 | 또는 엔터'], value=arg['anilife_auto_code_list'], row='10') }}
|
||||||
{{ macros.setting_checkbox('anilife_auto_mode_all', '에피소드 모두 받기', value=arg['anilife_auto_mode_all'], desc=['On : 이전 에피소드를 모두 받습니다.', 'Off : 최신 에피소드만 받습니다.']) }}
|
{{ macros.setting_checkbox('anilife_auto_mode_all', '에피소드 모두 받기', value=arg['anilife_auto_mode_all'], desc=['On : 이전 에피소드를 모두 받습니다.', 'Off : 최신 에피소드만 받습니다.']) }}
|
||||||
{{ macros.m_tab_content_end() }}
|
{{ macros.m_tab_content_end() }}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,24 @@
|
|||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %} {% block content %}
|
||||||
|
<div id="preloader" class="loader">
|
||||||
|
<div class="loader-inner">
|
||||||
|
<div class="loader-line-wrap">
|
||||||
|
<div class="loader-line"></div>
|
||||||
|
</div>
|
||||||
|
<div class="loader-line-wrap">
|
||||||
|
<div class="loader-line"></div>
|
||||||
|
</div>
|
||||||
|
<div class="loader-line-wrap">
|
||||||
|
<div class="loader-line"></div>
|
||||||
|
</div>
|
||||||
|
<div class="loader-line-wrap">
|
||||||
|
<div class="loader-line"></div>
|
||||||
|
</div>
|
||||||
|
<div class="loader-line-wrap">
|
||||||
|
<div class="loader-line"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="yommi_wrapper">
|
||||||
<div class="input-group mb-2">
|
<div class="input-group mb-2">
|
||||||
<input
|
<input
|
||||||
id="input_search"
|
id="input_search"
|
||||||
@@ -9,23 +28,14 @@
|
|||||||
aria-label="Search"
|
aria-label="Search"
|
||||||
aria-describedby="search-addon"
|
aria-describedby="search-addon"
|
||||||
/>
|
/>
|
||||||
<button id="btn_search" type="button" class="btn btn-outline-primary">
|
<button id="btn_search" type="button" class="btn btn-primary">search</button>
|
||||||
search
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div id="anime_category" class="btn-group" role="group" aria-label="Basic example">
|
||||||
id="anime_category"
|
|
||||||
class="btn-group"
|
|
||||||
role="group"
|
|
||||||
aria-label="Basic example"
|
|
||||||
>
|
|
||||||
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
||||||
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
||||||
<button id="complete_anilist" type="button" class="btn btn-dark">
|
<button id="complete_anilist" type="button" class="btn btn-dark">완결</button>
|
||||||
완결
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<form id="airing_list_form">
|
<form id="airing_list_form">
|
||||||
<div id="airing_list"></div>
|
<div id="airing_list"></div>
|
||||||
@@ -33,17 +43,15 @@
|
|||||||
<form id="screen_movie_list_form">
|
<form id="screen_movie_list_form">
|
||||||
<div id="screen_movie_list" class="container"></div>
|
<div id="screen_movie_list" class="container"></div>
|
||||||
</form>
|
</form>
|
||||||
<div class="text-center">
|
|
||||||
<div id="spinner" class="spinner-border" role="status">
|
|
||||||
<span class="sr-only">Loading...</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<form id="program_auto_form">
|
<form id="program_auto_form">
|
||||||
<div id="episode_list"></div>
|
<div id="episode_list"></div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<!--전체-->
|
<!--전체-->
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
|
||||||
<script
|
<script
|
||||||
type="text/javascript"
|
type="text/javascript"
|
||||||
src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"
|
src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"
|
||||||
@@ -127,28 +135,30 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function make_airing_list(data, page) {
|
function make_airing_list(data, page) {
|
||||||
|
console.log("call make_airing_list()")
|
||||||
let str = ''
|
let str = ''
|
||||||
let tmp = ''
|
let tmp = ''
|
||||||
|
//console.log(data)
|
||||||
|
|
||||||
str += '<div>';
|
str += '<div>';
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
||||||
str += '</div>';
|
str += '</div>';
|
||||||
// str += '<div class="card-columns">'
|
// str += '<div class="card-columns">'
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.episode) {
|
||||||
|
|
||||||
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
||||||
tmp += '<div class="card">';
|
tmp += '<div class="card">';
|
||||||
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
// tmp += '<img class="lozad" data-src="' + data.episode[i].image_link + '" />';
|
||||||
tmp += '<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' + data.anime_list[i].image_link + '" style="cursor: pointer" onclick="location.href=\'./request?code=' + data.anime_list[i].code + '\'"/>';
|
tmp += '<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' + data.episode[i].image_link + '" style="cursor: pointer" onclick="location.href=\'./request?code=' + data.episode[i].code + '\'"/>';
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
||||||
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.episode[i].title + '</h5>';
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
tmp += '<p class="card-text">' + data.episode[i].code + '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
data.anime_list[i].code +
|
data.episode[i].code +
|
||||||
'"><i class="bi bi-heart-fill"></i></button></p>';
|
'"><i class="bi bi-heart-fill"></i></button></p>';
|
||||||
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
tmp += '<a href="./request?code=' + data.episode[i].code + '" class="btn btn-primary cut-text">' + data.episode[i].title + '</a>';
|
||||||
// tmp +=
|
// tmp +=
|
||||||
// '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
// '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
// data.anime_list[i].code +
|
// data.anime_list[i].code +
|
||||||
@@ -642,6 +652,14 @@
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.badge-on-image {
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
/*bottom: 2px; !* position where you want it *!*/
|
||||||
|
right: 2px;
|
||||||
|
padding: 5px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
#airing_list {
|
#airing_list {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@@ -672,6 +690,7 @@
|
|||||||
button.btn-favorite {
|
button.btn-favorite {
|
||||||
background-color: #e0ff42;
|
background-color: #e0ff42;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.card-columns {*/
|
/*.card-columns {*/
|
||||||
/* @include media-breakpoint-only(lg) {*/
|
/* @include media-breakpoint-only(lg) {*/
|
||||||
/* column-count: 4;*/
|
/* column-count: 4;*/
|
||||||
@@ -684,10 +703,12 @@
|
|||||||
.container {
|
.container {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-columns {
|
.card-columns {
|
||||||
column-count: 2;
|
column-count: 2;
|
||||||
column-gap: 1.25rem;
|
column-gap: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-columns .card {
|
.card-columns .card {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
@@ -695,12 +716,16 @@
|
|||||||
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.card-columns {column-count: 3;}
|
.card-columns {
|
||||||
|
column-count: 3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Large devices (desktops, 992px and up) */
|
/* Large devices (desktops, 992px and up) */
|
||||||
@media (min-width: 992px) {
|
@media (min-width: 992px) {
|
||||||
.card-columns {column-count: 3;}
|
.card-columns {
|
||||||
|
column-count: 3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Extra large devices (large desktops, 1200px and up) */
|
/* Extra large devices (large desktops, 1200px and up) */
|
||||||
@@ -709,22 +734,28 @@
|
|||||||
column-count: 5;
|
column-count: 5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-columns .card {
|
.card-columns .card {
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-columns .card img {
|
.card-columns .card img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#add_whitelist {
|
button#add_whitelist {
|
||||||
/*top: -70px;*/
|
/*top: -70px;*/
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-image: linear-gradient(90deg, #233f48, #6c6fa2, #768dae);
|
background-image: linear-gradient(90deg, #233f48, #6c6fa2, #768dae);
|
||||||
}
|
}
|
||||||
|
|||||||
144
templates/anime_downloader_linkkf_list.html
Normal file
144
templates/anime_downloader_linkkf_list.html
Normal file
@@ -0,0 +1,144 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<form id="form_search" class="form-inline" style="text-align:left">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row show-grid">
|
||||||
|
<span class="col-md-4">
|
||||||
|
<select id="order" name="order" class="form-control form-control-sm">
|
||||||
|
<option value="desc">최근순</option>
|
||||||
|
<option value="asc">오래된순</option>
|
||||||
|
</select>
|
||||||
|
<select id="option" name="option" class="form-control form-control-sm">
|
||||||
|
<option value="all">전체</option>
|
||||||
|
<option value="completed">완료</option>
|
||||||
|
</select>
|
||||||
|
</span>
|
||||||
|
<span class="col-md-8">
|
||||||
|
<input id="search_word" name="search_word" class="form-control form-control-sm w-75" type="text" placeholder="" aria-label="Search">
|
||||||
|
<button id="search" class="btn btn-sm btn-outline-success">검색</button>
|
||||||
|
<button id="reset_btn" class="btn btn-sm btn-outline-success">리셋</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<div id='page1'></div>
|
||||||
|
{{ macros.m_hr_head_top() }}
|
||||||
|
{{ macros.m_row_start('0') }}
|
||||||
|
{{ macros.m_col(2, macros.m_strong('Poster')) }}
|
||||||
|
{{ macros.m_col(10, macros.m_strong('Info')) }}
|
||||||
|
{{ macros.m_row_end() }}
|
||||||
|
{{ macros.m_hr_head_bottom() }}
|
||||||
|
<div id="list_div"></div>
|
||||||
|
<div id='page2'></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var package_name = "{{arg['package_name']}}";
|
||||||
|
var sub = "{{arg['sub']}}";
|
||||||
|
var current_data = null;
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
global_sub_request_search('1');
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#search").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
global_sub_request_search('1');
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#page', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
global_sub_request_search($(this).data('page'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#reset_btn").click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
document.getElementById("order").value = 'desc';
|
||||||
|
document.getElementById("option").value = 'all';
|
||||||
|
document.getElementById("search_word").value = '';
|
||||||
|
global_sub_request_search('1')
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$("body").on('click', '#json_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
var id = $(this).data('id');
|
||||||
|
for (i in current_data.list) {
|
||||||
|
if (current_data.list[i].id == id) {
|
||||||
|
m_modal(current_data.list[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#self_search_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
var search_word = $(this).data('title');
|
||||||
|
document.getElementById("search_word").value = search_word;
|
||||||
|
global_sub_request_search('1')
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#remove_btn', function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
id = $(this).data('id');
|
||||||
|
$.ajax({
|
||||||
|
url: '/'+package_name+'/ajax/'+sub+ '/db_remove',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {id:id},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
if (data) {
|
||||||
|
$.notify('<strong>삭제되었습니다.</strong>', {
|
||||||
|
type: 'success'
|
||||||
|
});
|
||||||
|
global_sub_request_search(current_data.paging.current_page, false)
|
||||||
|
} else {
|
||||||
|
$.notify('<strong>삭제 실패</strong>', {
|
||||||
|
type: 'warning'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#request_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
var content_code = $(this).data('content_code');
|
||||||
|
$(location).attr('href', '/' + package_name + '/' + sub + '/request?content_code=' + content_code)
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function make_list(data) {
|
||||||
|
//console.log(data)
|
||||||
|
str = '';
|
||||||
|
for (i in data) {
|
||||||
|
//console.log(data[i])
|
||||||
|
str += m_row_start();
|
||||||
|
str += m_col(1, data[i].id);
|
||||||
|
tmp = (data[i].status == 'completed') ? '완료' : '미완료';
|
||||||
|
str += m_col(1, tmp);
|
||||||
|
tmp = data[i].created_time + '(추가)';
|
||||||
|
if (data[i].completed_time != null)
|
||||||
|
tmp += data[i].completed_time + '(완료)';
|
||||||
|
str += m_col(3, tmp)
|
||||||
|
tmp = data[i].savepath + '<br>' + data[i].filename + '<br><br>';
|
||||||
|
tmp2 = m_button('json_btn', 'JSON', [{'key':'id', 'value':data[i].id}]);
|
||||||
|
tmp2 += m_button('request_btn', '작품 검색', [{'key':'content_code', 'value':data[i].content_code}]);
|
||||||
|
tmp2 += m_button('self_search_btn', '목록 검색', [{'key':'title', 'value':data[i].title}]);
|
||||||
|
tmp2 += m_button('remove_btn', '삭제', [{'key':'id', 'value':data[i].id}]);
|
||||||
|
tmp += m_button_group(tmp2)
|
||||||
|
str += m_col(7, tmp)
|
||||||
|
str += m_row_end();
|
||||||
|
if (i != data.length -1) str += m_hr();
|
||||||
|
}
|
||||||
|
document.getElementById("list_div").innerHTML = str;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
131
templates/anime_downloader_linkkf_queue.html
Normal file
131
templates/anime_downloader_linkkf_queue.html
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{{ macros.m_button_group([['reset_btn', '초기화'], ['delete_completed_btn', '완료 목록 삭제'], ['go_ffmpeg_btn', 'Go FFMPEG']])}}
|
||||||
|
{{ macros.m_row_start('0') }}
|
||||||
|
{{ macros.m_row_end() }}
|
||||||
|
{{ macros.m_hr_head_top() }}
|
||||||
|
{{ macros.m_row_start('0') }}
|
||||||
|
{{ macros.m_col(1, macros.m_strong('Idx')) }}
|
||||||
|
{{ macros.m_col(2, macros.m_strong('CreatedTime')) }}
|
||||||
|
{{ macros.m_col(4, macros.m_strong('Filename')) }}
|
||||||
|
{{ macros.m_col(3, macros.m_strong('Status')) }}
|
||||||
|
{{ macros.m_col(2, macros.m_strong('Action')) }}
|
||||||
|
{{ macros.m_row_end() }}
|
||||||
|
{{ macros.m_hr_head_bottom() }}
|
||||||
|
<div id="download_list_div"></div>
|
||||||
|
</div> <!--전체-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var package_name = "{{arg['package_name'] }}";
|
||||||
|
var sub = "{{arg['sub'] }}";
|
||||||
|
var current_data = null;
|
||||||
|
socket = io.connect(window.location.protocol + "//" + document.domain + ":" + location.port + "/" + package_name + '/' + sub);
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on('start', function(data){
|
||||||
|
on_start();
|
||||||
|
});
|
||||||
|
socket.on('list_refresh', function(data){
|
||||||
|
on_start()
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on('status', function(data){
|
||||||
|
console.log(data);
|
||||||
|
on_status(data)
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
function on_start() {
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/entity_list',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
make_download_list(data)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function on_status(data) {
|
||||||
|
//console.log(data)
|
||||||
|
tmp = document.getElementById("progress_"+data.entity_id)
|
||||||
|
if (tmp != null) {
|
||||||
|
document.getElementById("progress_"+data.entity_id).style.width = data.ffmpeg_percent+ '%';
|
||||||
|
document.getElementById("progress_"+data.entity_id+"_label").innerHTML = data.ffmpeg_status_kor + "(" + data.ffmpeg_percent + "%)" + ' ' + ((data.ffmpeg_arg != null)?data.ffmpeg_arg.data.current_speed:'')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function make_download_list(data) {
|
||||||
|
str = '';
|
||||||
|
for (i in data) {
|
||||||
|
str += m_row_start();
|
||||||
|
str += m_col(1, data[i].entity_id);
|
||||||
|
str += m_col(2, data[i].created_time);
|
||||||
|
str += m_col(4, (data[i].filename != null) ? data[i].filename : '');
|
||||||
|
|
||||||
|
label = data[i].ffmpeg_status_kor
|
||||||
|
if (data[i].ffmpeg_percent != 0) {
|
||||||
|
label += '(' + data[i].ffmpeg_percent + '%)'
|
||||||
|
}
|
||||||
|
tmp = m_progress('progress_'+data[i].entity_id, data[i].ffmpeg_percent, label)
|
||||||
|
str += m_col(3, tmp);
|
||||||
|
tmp = m_button('program_cancel_btn', '취소', [{'key':'id', 'value':data[i].entity_id}]);
|
||||||
|
tmp = m_button_group(tmp)
|
||||||
|
str += m_col(2, tmp)
|
||||||
|
str += m_row_end();
|
||||||
|
if (i != data.length -1) str += m_hr(0);
|
||||||
|
}
|
||||||
|
document.getElementById("download_list_div").innerHTML = str;
|
||||||
|
}
|
||||||
|
|
||||||
|
$("body").on('click', '#program_cancel_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
entity_id = $(this).data('id')
|
||||||
|
send_data = {'command':'cancel', 'entity_id':entity_id}
|
||||||
|
queue_command(send_data)
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#reset_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
entity_id = $(this).data('id')
|
||||||
|
send_data = {'command':'reset', 'entity_id':-1}
|
||||||
|
queue_command(send_data)
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#delete_completed_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
entity_id = $(this).data('id')
|
||||||
|
send_data = {'command':'delete_completed', 'entity_id':-1}
|
||||||
|
queue_command(send_data)
|
||||||
|
});
|
||||||
|
|
||||||
|
function queue_command(data) {
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/queue_command',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: data,
|
||||||
|
dataType: "json",
|
||||||
|
success: function (ret) {
|
||||||
|
if (ret.ret == 'notify') {
|
||||||
|
$.notify('<strong>'+ ret.log +'</strong>', {type: 'warning'});
|
||||||
|
}
|
||||||
|
on_start();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$("body").on('click', '#go_ffmpeg_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
$(location).attr('href', '/ffmpeg')
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
642
templates/anime_downloader_linkkf_request.html
Normal file
642
templates/anime_downloader_linkkf_request.html
Normal file
@@ -0,0 +1,642 @@
|
|||||||
|
{% extends "base.html" %} {% block content %}
|
||||||
|
<div id="anime_downloader_wrapper">
|
||||||
|
<div id="preloader">
|
||||||
|
<div class='demo'>
|
||||||
|
<!-- <div class="loader-inner">-->
|
||||||
|
<div class='circle'>
|
||||||
|
<div class='inner'></div>
|
||||||
|
</div>
|
||||||
|
<div class='circle'>
|
||||||
|
<div class='inner'></div>
|
||||||
|
</div>
|
||||||
|
<div class='circle'>
|
||||||
|
<div class='inner'></div>
|
||||||
|
</div>
|
||||||
|
<div class='circle'>
|
||||||
|
<div class='inner'></div>
|
||||||
|
</div>
|
||||||
|
<div class='circle'>
|
||||||
|
<div class='inner'></div>
|
||||||
|
</div>
|
||||||
|
<!-- </div>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<form id="program_list">
|
||||||
|
{{ macros.setting_input_text_and_buttons('code', '작품 Code',
|
||||||
|
[['analysis_btn', '분석'], ['go_linkkf_btn', 'Go 링크 애니']], desc='예)
|
||||||
|
"https://linkkf.app/코드" 나 "코드"') }}
|
||||||
|
</form>
|
||||||
|
<form id="program_auto_form">
|
||||||
|
<div id="episode_list"></div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--전체-->
|
||||||
|
<link
|
||||||
|
href="{{ url_for('.static', filename='css/%s.css' % arg['sub'])
|
||||||
|
}}"
|
||||||
|
type="text/css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<script src="{{ url_for('.static', filename='js/sjva_ui14.js') }}"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
const package_name = "{{arg['package_name'] }}";
|
||||||
|
const sub = "{{arg['sub'] }}";
|
||||||
|
const linkkf_url = "{{arg['linkkf_url']}}";
|
||||||
|
|
||||||
|
|
||||||
|
const params = new Proxy(new URLSearchParams(window.location.search), {
|
||||||
|
get: (searchParams, prop) => searchParams.get(prop),
|
||||||
|
})
|
||||||
|
|
||||||
|
const loader = document.getElementById("preloader");
|
||||||
|
|
||||||
|
const dismissLoadingScreen = function () {
|
||||||
|
loader.style.display = "none";
|
||||||
|
$('.demo').css("display", "none")
|
||||||
|
};
|
||||||
|
|
||||||
|
const wait3seconds = function () {
|
||||||
|
// REFERENCE: https://www.w3schools.com/jsref/met_win_settimeout.asp
|
||||||
|
const result = setTimeout(dismissLoadingScreen, 2000);
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener("load", wait3seconds);
|
||||||
|
|
||||||
|
|
||||||
|
function findGetParameter(parameterName) {
|
||||||
|
let result = null,
|
||||||
|
tmp = [];
|
||||||
|
const items = location.search.substr(1).split("&");
|
||||||
|
for (let index = 0; index < items.length; index++) {
|
||||||
|
tmp = items[index].split("=");
|
||||||
|
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function analyze(wr_id, bo_table) {
|
||||||
|
// e.preventDefault();
|
||||||
|
const code = document.getElementById("code").value
|
||||||
|
console.log(code)
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {code: code, wr_id: wr_id, bo_table: bo_table},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (ret) {
|
||||||
|
if (ret.ret === 'success' && ret.data != null) {
|
||||||
|
// {#console.log(ret.code)#}
|
||||||
|
console.log(ret.data)
|
||||||
|
make_program(ret.data)
|
||||||
|
} else {
|
||||||
|
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function make_program(data) {
|
||||||
|
current_data = data;
|
||||||
|
|
||||||
|
// $("body").css({"background": "url(" + data.poster_url + ")"})
|
||||||
|
|
||||||
|
// console.log('current_data:: ', data)
|
||||||
|
str = "";
|
||||||
|
tmp = '<div class="form-inline w-100">';
|
||||||
|
tmp += m_button("check_download_btn", "선택 다운로드 추가", []);
|
||||||
|
tmp += m_button("all_check_on_btn", "전체 선택", []);
|
||||||
|
tmp += m_button("all_check_off_btn", "전체 해제", []);
|
||||||
|
tmp += m_button("down_subtitle_btn", "자막만 전체 받기", [])
|
||||||
|
tmp +=
|
||||||
|
' <input id="new_title" name="new_title" class="form-control form-control-sm" value="' +
|
||||||
|
data.title +
|
||||||
|
'">';
|
||||||
|
tmp += "</div>";
|
||||||
|
tmp += '<div class="form-inline">';
|
||||||
|
tmp += m_button("apply_new_title_btn", "저장폴더명 변경", []);
|
||||||
|
tmp +=
|
||||||
|
' <input id="new_season" name="new_season" class="form-control form-control-sm" value="' +
|
||||||
|
data.season +
|
||||||
|
'">';
|
||||||
|
tmp += m_button("apply_new_season_btn", "시즌 변경 (숫자만 가능)", []);
|
||||||
|
tmp += m_button("search_tvdb_btn", "TVDB", []);
|
||||||
|
tmp += m_button("add_whitelist", "스케쥴링 추가", []);
|
||||||
|
|
||||||
|
tmp += "</div>";
|
||||||
|
tmp = m_button_group(tmp);
|
||||||
|
str += tmp;
|
||||||
|
// program
|
||||||
|
// str += m_hr_black();
|
||||||
|
str += "<div class='card p-lg-5 mt-md-3 p-md-3 mt-sm-3 p-sm-3 border-light'>"
|
||||||
|
|
||||||
|
str += m_row_start(0);
|
||||||
|
tmp = "";
|
||||||
|
if (data.poster_url != null)
|
||||||
|
tmp = '<img src="' + data.poster_url + '" class="img-fluid">';
|
||||||
|
str += m_col(3, tmp);
|
||||||
|
tmp = "";
|
||||||
|
tmp += m_row_start(0);
|
||||||
|
tmp += m_col(3, "제목", "right");
|
||||||
|
tmp += m_col(9, data.title);
|
||||||
|
tmp += m_row_end();
|
||||||
|
tmp += m_row_start(0);
|
||||||
|
tmp += m_col(3, "시즌", "right");
|
||||||
|
tmp += m_col(9, data.season);
|
||||||
|
tmp += m_row_end();
|
||||||
|
for (i in data.detail) {
|
||||||
|
tmp += m_row_start(0);
|
||||||
|
key = Object.keys(data.detail[i])[0];
|
||||||
|
value = data.detail[i][key];
|
||||||
|
tmp += m_col(3, key, "right");
|
||||||
|
tmp += m_col(9, value);
|
||||||
|
tmp += m_row_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
str += m_col(9, tmp);
|
||||||
|
str += m_row_end();
|
||||||
|
|
||||||
|
// str += m_hr_black();
|
||||||
|
str += "</div>"
|
||||||
|
for (i in data.episode) {
|
||||||
|
str += m_row_start();
|
||||||
|
// tmp = '<img src="' + data.episode[i].image + '" class="img-fluid">'
|
||||||
|
// str += m_col(3, tmp)
|
||||||
|
tmp = "<strong>" + data.episode[i].title + "</strong><span>화. </span>";
|
||||||
|
tmp += data.episode[i].filename + "<br><p></p>";
|
||||||
|
|
||||||
|
tmp += '<div class="form-inline">';
|
||||||
|
tmp +=
|
||||||
|
'<input id="checkbox_' +
|
||||||
|
data.episode[i].code +
|
||||||
|
'" name="checkbox_' +
|
||||||
|
data.episode[i].code +
|
||||||
|
'" type="checkbox" checked data-toggle="toggle" data-on="선 택" data-off="-" data-onstyle="success" data-offstyle="danger" data-size="small"> ';
|
||||||
|
// tmp += m_button('add_queue_btn', '다운로드 추가', [{'key': 'code', 'value': data.episode[i].code}])
|
||||||
|
tmp += m_button("add_queue_btn", "다운로드 추가", [
|
||||||
|
{key: "idx", value: i},
|
||||||
|
]);
|
||||||
|
tmp += j_button('insert_download_btn', '다운로드 추가', {
|
||||||
|
code: data.episode[i]._id,
|
||||||
|
});
|
||||||
|
tmp += j_button(
|
||||||
|
'force_insert_download_btn',
|
||||||
|
'다운로드 추가 (DB무시)',
|
||||||
|
{code: data.episode[i]._id}
|
||||||
|
);
|
||||||
|
// tmp += '<button id="play_video" name="play_video" class="btn btn-sm btn-outline-primary" data-idx="'+i+'">바로보기</button>';
|
||||||
|
tmp += "</div>";
|
||||||
|
str += m_col(12, tmp);
|
||||||
|
str += m_row_end();
|
||||||
|
if (i != data.length - 1) str += m_hr(0);
|
||||||
|
}
|
||||||
|
document.getElementById("episode_list").innerHTML = str;
|
||||||
|
$('input[id^="checkbox_"]').bootstrapToggle();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
console.log(params.wr_id)
|
||||||
|
console.log(findGetParameter('wr_id'))
|
||||||
|
console.log(params.code)
|
||||||
|
if (params.code === '') {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
document.getElementById("code").value = params.code
|
||||||
|
// {#document.getElementById("analysis_btn").click();#}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ("{{arg['linkkf_current_code']}}" !== "") {
|
||||||
|
if (params.code === null) {
|
||||||
|
console.log('params.code === null')
|
||||||
|
document.getElementById("code").value = "{{arg['linkkf_current_code']}}";
|
||||||
|
|
||||||
|
} else if (params.code === '') {
|
||||||
|
document.getElementById("code").value = "{{arg['linkkf_current_code']}}";
|
||||||
|
} else {
|
||||||
|
|
||||||
|
console.log('params code exist')
|
||||||
|
console.log(params.code)
|
||||||
|
document.getElementById("code").value = params.code
|
||||||
|
|
||||||
|
analyze(params.wr_id, params.bo_table)
|
||||||
|
// document.getElementById("analysis_btn").click();
|
||||||
|
// $('#analysis_btn').trigger('click')
|
||||||
|
}
|
||||||
|
// 값이 공백이 아니면 분석 버튼 계속 누름
|
||||||
|
// {#document.getElementById("analysis_btn").click();#}
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
console.log('wr_id::', params.wr_id)
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#analysis_btn").unbind("click").bind('click', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation()
|
||||||
|
const button = document.getElementById('analysis_btn');
|
||||||
|
const code = document.getElementById("code").value
|
||||||
|
button.setAttribute("disabled", "disabled");
|
||||||
|
console.log(code)
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {code: code},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (ret) {
|
||||||
|
if (ret.ret === 'success' && ret.data != null) {
|
||||||
|
// {#console.log(ret.code)#}
|
||||||
|
console.log(ret.data)
|
||||||
|
make_program(ret.data)
|
||||||
|
button.removeAttribute("disabled");
|
||||||
|
} else {
|
||||||
|
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$("body").on('click', '#go_linkkf_btn', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
window.open("{{arg['linkkf_url']}}", "_blank");
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#all_check_on_btn', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('input[id^="checkbox_"]').bootstrapToggle('on')
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#all_check_off_btn', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('input[id^="checkbox_"]').bootstrapToggle('off')
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#add_queue_btn', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
data = current_data.episode[$(this).data('idx')];
|
||||||
|
console.log('data:::>', data)
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/add_queue',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {data: JSON.stringify(data)},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
console.log('#add_queue_btn::data >>', data)
|
||||||
|
if (data.ret == 'enqueue_db_append' || data.ret == 'enqueue_db_exist') {
|
||||||
|
$.notify('<strong>다운로드 작업을 추가 하였습니다.</strong>', {type: 'success'});
|
||||||
|
} else if (data.ret == 'queue_exist') {
|
||||||
|
$.notify('<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>', {type: 'warning'});
|
||||||
|
} else if (data.ret == 'db_completed') {
|
||||||
|
$.notify('<strong>DB에 완료 기록이 있습니다.</strong>', {type: 'warning'});
|
||||||
|
} else {
|
||||||
|
$.notify('<strong>추가 실패</strong><br>' + ret.log, {type: 'warning'});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$("body").on('click', '#check_download_btn', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
all = $('input[id^="checkbox_"]');
|
||||||
|
let data = [];
|
||||||
|
let idx;
|
||||||
|
for (let i in all) {
|
||||||
|
if (all[i].checked) {
|
||||||
|
idx = parseInt(all[i].id.split('_')[1])
|
||||||
|
data.push(current_data.episode[idx]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (data.length == 0) {
|
||||||
|
$.notify('<strong>선택하세요.</strong>', {type: 'warning'});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$.ajax({
|
||||||
|
url: '/' + package_name + '/ajax/' + sub + '/add_queue_checked_list',
|
||||||
|
type: "POST",
|
||||||
|
cache: false,
|
||||||
|
data: {data: JSON.stringify(data)},
|
||||||
|
dataType: "json",
|
||||||
|
success: function (data) {
|
||||||
|
$.notify('<strong>백그라운드로 작업을 추가합니다.</strong>', {type: 'success'});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
#anime_downloader_wrapper {
|
||||||
|
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-image: linear-gradient(90deg, #33242c, #263341, #17273a);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#anime_downloader_wrapper {
|
||||||
|
|
||||||
|
color: #d6eaf8;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.code-button {
|
||||||
|
min-width: 82px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:after {
|
||||||
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
|
||||||
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 7px 12px;
|
||||||
|
position: absolute;
|
||||||
|
width: auto;
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 300px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
left: -9999px;
|
||||||
|
top: 90%;
|
||||||
|
|
||||||
|
content: attr(data-tooltip-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover:after {
|
||||||
|
top: 230%;
|
||||||
|
left: 0;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:after {
|
||||||
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
||||||
|
|
||||||
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
|
|
||||||
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
||||||
|
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding: 7px 12px;
|
||||||
|
position: absolute;
|
||||||
|
width: auto;
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 300px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
z-index: 9999;
|
||||||
|
|
||||||
|
opacity: 0;
|
||||||
|
left: -9999px;
|
||||||
|
top: -210% !important;
|
||||||
|
|
||||||
|
content: attr(data-tooltip-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-tooltip-text]:hover:after {
|
||||||
|
top: 130%;
|
||||||
|
left: 0;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
border: none;
|
||||||
|
box-shadow: inset 1px 1px hsl(0deg 0% 100% / 20%), inset -1px -1px hsl(0deg 0% 100% / 10%), 1px 3px 24px -1px rgb(0 0 0 / 15%);
|
||||||
|
background-color: transparent;
|
||||||
|
background-image: linear-gradient(125deg, hsla(0, 0%, 100%, .3), hsla(0, 0%, 100%, .2) 70%);
|
||||||
|
backdrop-filter: blur(5px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card.border-light {
|
||||||
|
border-radius: 30px 10px;
|
||||||
|
--bs-border-opacity: 1;
|
||||||
|
border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#airing_list {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cut-text {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#screen_movie_list {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*@import url(https://fonts.googleapis.com/css?family=Lato);*/
|
||||||
|
/*a {*/
|
||||||
|
/* position: fixed;*/
|
||||||
|
/* bottom: 2%;*/
|
||||||
|
/* display: block;*/
|
||||||
|
/* text-align: center;*/
|
||||||
|
/* color: #0fa;*/
|
||||||
|
/* font-family: "Lato", sans-serif;*/
|
||||||
|
/* text-decoration: none !important;*/
|
||||||
|
/* width: 100%;*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
|
/*body, html {*/
|
||||||
|
/* width: 100%;*/
|
||||||
|
/* height: 100%;*/
|
||||||
|
/* overflow: hidden;*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
|
/*body {*/
|
||||||
|
/* background: linear-gradient(90deg, #00b377, #00d68f);*/
|
||||||
|
/* box-shadow: inset 0px 0px 90px rgba(0, 0, 0, 0.5);*/
|
||||||
|
/* margin: 0px;*/
|
||||||
|
/* padding: 0px;*/
|
||||||
|
/*}*/
|
||||||
|
|
||||||
|
.demo {
|
||||||
|
width: 100px;
|
||||||
|
height: 102px;
|
||||||
|
border-radius: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 45%;
|
||||||
|
left: calc(50% - 50px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle .inner {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 100%;
|
||||||
|
border: 5px solid rgba(0, 255, 170, 0.7);
|
||||||
|
border-right: none;
|
||||||
|
border-top: none;
|
||||||
|
backgroudn-clip: padding;
|
||||||
|
box-shadow: inset 0px 0px 10px rgba(0, 255, 170, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes spin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(0) {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(0) .inner {
|
||||||
|
-webkit-animation: spin 2s infinite linear;
|
||||||
|
animation: spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(1) {
|
||||||
|
transform: rotate(70deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(1) .inner {
|
||||||
|
-webkit-animation: spin 2s infinite linear;
|
||||||
|
animation: spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(2) {
|
||||||
|
transform: rotate(140deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle:nth-of-type(2) .inner {
|
||||||
|
-webkit-animation: spin 2s infinite linear;
|
||||||
|
animation: spin 2s infinite linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo {
|
||||||
|
-webkit-animation: spin 5s infinite linear;
|
||||||
|
animation: spin 5s infinite linear;
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
background: radial-gradient(#222, #000);
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
/*position: fixed;*/
|
||||||
|
right: 0;
|
||||||
|
/*top: 0;*/
|
||||||
|
z-index: 99999;
|
||||||
|
opacity: 0.5;
|
||||||
|
margin: 0 auto;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circle .inner {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 100%;
|
||||||
|
border: 5px solid rgba(0, 255, 170, 0.7);
|
||||||
|
border-right: none;
|
||||||
|
border-top: none;
|
||||||
|
backgroudn-clip: padding;
|
||||||
|
box-shadow: inset 0px 0px 10px rgba(0, 255, 170, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader-inner {
|
||||||
|
bottom: 0;
|
||||||
|
height: 60px;
|
||||||
|
left: 0;
|
||||||
|
margin: auto;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#preloader {
|
||||||
|
/*background-color: green;*/
|
||||||
|
/*color: white;*/
|
||||||
|
/*height: 100vh;*/
|
||||||
|
/*width: 100%;*/
|
||||||
|
/*position: fixed;*/
|
||||||
|
/*z-index: 100;*/
|
||||||
|
background: rgba(0, 0, 0, 0.2);
|
||||||
|
background: radial-gradient(#222, #000);
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 99999;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
||||||
1183
templates/anime_downloader_linkkf_search.html
Normal file
1183
templates/anime_downloader_linkkf_search.html
Normal file
File diff suppressed because it is too large
Load Diff
68
templates/anime_downloader_linkkf_setting.html
Normal file
68
templates/anime_downloader_linkkf_setting.html
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
<div>
|
||||||
|
{{ macros.m_button_group([['global_setting_save_btn', '설정 저장']])}}
|
||||||
|
{{ macros.m_row_start('5') }}
|
||||||
|
{{ macros.m_row_end() }}
|
||||||
|
<nav>
|
||||||
|
{{ macros.m_tab_head_start() }}
|
||||||
|
{{ macros.m_tab_head2('normal', '일반', true) }}
|
||||||
|
{{ macros.m_tab_head2('auto', '자동 설정', false) }}
|
||||||
|
{{ macros.m_tab_head2('action', '기타', false) }}
|
||||||
|
{{ macros.m_tab_head_end() }}
|
||||||
|
</nav>
|
||||||
|
<form id="setting">
|
||||||
|
<div class="tab-content" id="nav-tabContent">
|
||||||
|
{{ macros.m_tab_content_start('normal', true) }}
|
||||||
|
{{ macros.setting_input_text_and_buttons('linkkf_url', 'linkkf URL', [['go_btn', 'GO']], value=arg['linkkf_url']) }}
|
||||||
|
{{ macros.setting_input_text('linkkf_download_path', '저장 폴더', value=arg['linkkf_download_path'], desc='정상적으로 다운 완료 된 파일이 이동할 폴더 입니다. ') }}
|
||||||
|
{{ macros.setting_input_int('linkkf_max_ffmpeg_process_count', '동시 다운로드 수', value=arg['linkkf_max_ffmpeg_process_count'], desc='동시에 다운로드 할 에피소드 갯수입니다.') }}
|
||||||
|
{{ macros.setting_checkbox('linkkf_order_desc', '요청 화면 최신순 정렬', value=arg['linkkf_order_desc'], desc='On : 최신화부터, Off : 1화부터') }}
|
||||||
|
{{ macros.setting_checkbox('linkkf_auto_make_folder', '제목 폴더 생성', value=arg['linkkf_auto_make_folder'], desc='제목으로 폴더를 생성하고 폴더 안에 다운로드합니다.') }}
|
||||||
|
<div id="linkkf_auto_make_folder_div" class="collapse">
|
||||||
|
{{ macros.setting_input_text('linkkf_finished_insert', '완결 표시', col='3', value=arg['linkkf_finished_insert'], desc=['완결된 컨텐츠 폴더명 앞에 넣을 문구입니다.']) }}
|
||||||
|
{{ macros.setting_checkbox('linkkf_auto_make_season_folder', '시즌 폴더 생성', value=arg['linkkf_auto_make_season_folder'], desc=['On : Season 번호 폴더를 만듭니다.']) }}
|
||||||
|
</div>
|
||||||
|
{{ macros.setting_checkbox('linkkf_uncompleted_auto_enqueue', '자동으로 다시 받기', value=arg['linkkf_uncompleted_auto_enqueue'], desc=['On : 플러그인 로딩시 미완료인 항목은 자동으로 다시 받습니다.']) }}
|
||||||
|
{{ macros.m_tab_content_end() }}
|
||||||
|
|
||||||
|
{{ macros.m_tab_content_start('auto', false) }}
|
||||||
|
{{ macros.setting_global_scheduler_sub_button(arg['scheduler'], arg['is_running']) }}
|
||||||
|
{{ macros.setting_input_text('linkkf_interval', '스케쥴링 실행 정보', value=arg['linkkf_interval'], col='4', desc=['Inverval(minute 단위)이나 Cron 설정']) }}
|
||||||
|
{{ macros.setting_checkbox('linkkf_auto_start', '시작시 자동실행', value=arg['linkkf_auto_start'], desc='On : 시작시 자동으로 스케쥴러에 등록됩니다.') }}
|
||||||
|
{{ macros.setting_input_textarea('linkkf_auto_code_list', '자동 다운로드할 작품 코드', desc=['구분자 | 또는 엔터'], value=arg['linkkf_auto_code_list'], row='10') }}
|
||||||
|
{{ macros.setting_checkbox('linkkf_auto_mode_all', '에피소드 모두 받기', value=arg['linkkf_auto_mode_all'], desc=['On : 이전 에피소드를 모두 받습니다.', 'Off : 최신 에피소드만 받습니다.']) }}
|
||||||
|
{{ macros.m_tab_content_end() }}
|
||||||
|
|
||||||
|
{{ macros.m_tab_content_start('action', false) }}
|
||||||
|
{{ macros.setting_button([['global_one_execute_sub_btn', '1회 실행']], left='1회 실행' ) }}
|
||||||
|
{{ macros.setting_button([['global_reset_db_sub_btn', 'DB 초기화']], left='DB정리' ) }}
|
||||||
|
{{ macros.m_tab_content_end() }}
|
||||||
|
|
||||||
|
</div><!--tab-content-->
|
||||||
|
</form>
|
||||||
|
</div> <!--전체-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var package_name = "{{arg['package_name'] }}";
|
||||||
|
var sub = "{{arg['sub'] }}";
|
||||||
|
var current_data = null;
|
||||||
|
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
use_collapse('linkkf_auto_make_folder');
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#ani365_auto_make_folder').change(function() {
|
||||||
|
use_collapse('linkkf_auto_make_folder');
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$("body").on('click', '#go_btn', function(e){
|
||||||
|
e.preventDefault();
|
||||||
|
let url = document.getElementById("linkkf_url").value
|
||||||
|
window.open(url, "_blank");
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
{% endblock %}
|
||||||
@@ -29,23 +29,14 @@
|
|||||||
aria-label="Search"
|
aria-label="Search"
|
||||||
aria-describedby="search-addon"
|
aria-describedby="search-addon"
|
||||||
/>
|
/>
|
||||||
<button id="btn_search" type="button" class="btn btn-primary">
|
<button id="btn_search" type="button" class="btn btn-primary">search</button>
|
||||||
search
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div id="anime_category" class="btn-group" role="group" aria-label="Basic example">
|
||||||
id="anime_category"
|
|
||||||
class="btn-group"
|
|
||||||
role="group"
|
|
||||||
aria-label="Basic example"
|
|
||||||
>
|
|
||||||
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
<button id="ing" type="button" class="btn btn-success">방영중</button>
|
||||||
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
<button id="theater" type="button" class="btn btn-primary">극장판</button>
|
||||||
<button id="complete_anilist" type="button" class="btn btn-dark">
|
<button id="complete_anilist" type="button" class="btn btn-dark">완결</button>
|
||||||
완결
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
<form id="airing_list_form">
|
<form id="airing_list_form">
|
||||||
<div id="airing_list"></div>
|
<div id="airing_list"></div>
|
||||||
@@ -53,11 +44,7 @@
|
|||||||
<form id="screen_movie_list_form">
|
<form id="screen_movie_list_form">
|
||||||
<div id="screen_movie_list" class="container"></div>
|
<div id="screen_movie_list" class="container"></div>
|
||||||
</form>
|
</form>
|
||||||
<div class="text-center">
|
|
||||||
<div id="spinner" class="spinner-border" role="status">
|
|
||||||
<span class="sr-only">Loading...</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<form id="program_auto_form">
|
<form id="program_auto_form">
|
||||||
<div id="episode_list"></div>
|
<div id="episode_list"></div>
|
||||||
</form>
|
</form>
|
||||||
@@ -65,70 +52,68 @@
|
|||||||
</div>
|
</div>
|
||||||
<!--전체-->
|
<!--전체-->
|
||||||
|
|
||||||
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"></script>
|
||||||
<script
|
<script
|
||||||
type="text/javascript"
|
src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js"
|
||||||
src="https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js"
|
|
||||||
></script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js"
|
|
||||||
integrity="sha512-jNDtFf7qgU0eH/+Z42FG4fw3w7DM/9zbgNPe3wfJlCylVDTT3IgKW5r92Vy9IHa6U50vyMz5gRByIu4YIXFtaQ=="
|
integrity="sha512-jNDtFf7qgU0eH/+Z42FG4fw3w7DM/9zbgNPe3wfJlCylVDTT3IgKW5r92Vy9IHa6U50vyMz5gRByIu4YIXFtaQ=="
|
||||||
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
crossorigin="anonymous"
|
||||||
|
referrerpolicy="no-referrer"
|
||||||
|
></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
const package_name = "{{arg['package_name'] }}";
|
const package_name = "{{arg['package_name'] }}"
|
||||||
const sub = "{{arg['sub'] }}";
|
const sub = "{{arg['sub'] }}"
|
||||||
const anilife_url = "{{arg['anilife_url']}}";
|
const anilife_url = "{{arg['anilife_url']}}"
|
||||||
let current_data = null;
|
let current_data = null
|
||||||
let page = 1;
|
let page = 1
|
||||||
let next_page = Number
|
let next_page = Number
|
||||||
let current_cate = ''
|
let current_cate = ""
|
||||||
let current_query = ''
|
let current_query = ""
|
||||||
|
|
||||||
const loader = document.getElementById("preloader");
|
const loader = document.getElementById("preloader")
|
||||||
|
|
||||||
const dismissLoadingScreen = function () {
|
const dismissLoadingScreen = function () {
|
||||||
loader.style.display = "none";
|
loader.style.display = "none"
|
||||||
};
|
}
|
||||||
|
|
||||||
const wait3seconds = function () {
|
const wait3seconds = function () {
|
||||||
// REFERENCE: https://www.w3schools.com/jsref/met_win_settimeout.asp
|
// REFERENCE: https://www.w3schools.com/jsref/met_win_settimeout.asp
|
||||||
const result = setTimeout(dismissLoadingScreen, 2000);
|
const result = setTimeout(dismissLoadingScreen, 2000)
|
||||||
};
|
}
|
||||||
|
|
||||||
window.addEventListener("load", wait3seconds);
|
window.addEventListener("load", wait3seconds)
|
||||||
// window.addEventListener("load", dismissLoadingScreen);
|
// window.addEventListener("load", dismissLoadingScreen);
|
||||||
|
|
||||||
|
const observer = lozad(".lozad", {
|
||||||
const observer = lozad('.lozad', {
|
rootMargin: "10px 0px", // syntax similar to that of CSS Margin
|
||||||
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
|
||||||
threshold: 0.1, // ratio of element convergence
|
threshold: 0.1, // ratio of element convergence
|
||||||
enableAutoReload: true // it will reload the new image when validating attributes changes
|
enableAutoReload: true, // it will reload the new image when validating attributes changes
|
||||||
});
|
})
|
||||||
observer.observe();
|
observer.observe()
|
||||||
|
|
||||||
|
|
||||||
const get_anime_list = (type, page) => {
|
const get_anime_list = (type, page) => {
|
||||||
console.log(`type: ${type}, page: ${page}`)
|
console.log(`type: ${type}, page: ${page}`)
|
||||||
let url = ''
|
let url = ""
|
||||||
let data = {"page": page, "type": type}
|
let data = { page: page, type: type }
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'ing':
|
case "ing":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
current_cate = 'ing'
|
current_cate = "ing"
|
||||||
break;
|
break
|
||||||
case 'movie':
|
case "movie":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/screen_movie_list'
|
url = "/" + package_name + "/ajax/" + sub + "/screen_movie_list"
|
||||||
current_cate = 'movie'
|
current_cate = "movie"
|
||||||
break;
|
break
|
||||||
case 'theater':
|
case "theater":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
current_cate = 'theater'
|
current_cate = "theater"
|
||||||
break;
|
break
|
||||||
case 'fin':
|
case "fin":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/complete_list'
|
url = "/" + package_name + "/ajax/" + sub + "/complete_list"
|
||||||
current_cate = 'fin'
|
current_cate = "fin"
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@@ -139,200 +124,219 @@
|
|||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: (ret) => {
|
success: (ret) => {
|
||||||
current_screen_movie_data = ret
|
current_screen_movie_data = ret
|
||||||
console.log('ret::>', ret)
|
console.log("ret::>", ret)
|
||||||
|
|
||||||
if (current_screen_movie_data !== '') {
|
if (current_screen_movie_data !== "") {
|
||||||
if (type === "ing") {
|
if (type === "ing") {
|
||||||
make_airing_list(ret.data, page)
|
make_airing_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else if (type === "fin") {
|
} else if (type === "fin") {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else if (type === "theater") {
|
} else if (type === "theater") {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
observer.observe();
|
observer.observe()
|
||||||
} else {
|
} else {
|
||||||
make_screen_movie_list(ret.data, page)
|
make_screen_movie_list(ret.data, page)
|
||||||
}
|
}
|
||||||
div_visible = true
|
div_visible = true
|
||||||
console.log(div_visible)
|
// console.log(div_visible)
|
||||||
}
|
}
|
||||||
next_page = page + 1
|
next_page = page + 1
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_airing_list(data, page) {
|
function make_airing_list(data, page) {
|
||||||
let str = ''
|
console.log("call make_airing_list()")
|
||||||
let tmp = ''
|
let str = ""
|
||||||
|
let tmp = ""
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
// str += '<div class="card-columns">'
|
// str += '<div class="card-columns">'
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
|
tmp = '<div class="col-6 col-sm-4 col-md-3">'
|
||||||
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<div class="card">';
|
|
||||||
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
// tmp += '<img class="lozad" data-src="' + data.anime_list[i].image_link + '" />';
|
||||||
tmp += '<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' + data.anime_list[i].image_link + '" style="cursor: pointer" onclick="location.href=\'./request?code=' + data.anime_list[i].code + '\'"/>';
|
tmp +=
|
||||||
|
'<img class="lazyload" src="../static/img_loader_x200.svg" data-original="' +
|
||||||
|
data.anime_list[i].image_link +
|
||||||
|
'" style="cursor: pointer" onclick="location.href=\'./request?code=' +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
"'\"/>"
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
||||||
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
tmp +=
|
||||||
|
'<p class="card-text">' +
|
||||||
|
// data.anime_list[i].code +
|
||||||
|
'<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
data.anime_list[i].code +
|
data.anime_list[i].code +
|
||||||
'"><i class="bi bi-heart-fill"></i></button></p>';
|
'"><i class="bi bi-heart-fill"></i></button></p>'
|
||||||
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
tmp +=
|
||||||
|
'<a href="./request?code=' +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
'" class="btn btn-primary cut-text">' +
|
||||||
|
data.anime_list[i].title +
|
||||||
|
"</a>"
|
||||||
// tmp +=
|
// tmp +=
|
||||||
// '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
// '<button id="add_whitelist" name="add_whitelist" class="btn btn-sm btn-favorite mb-1" data-code="' +
|
||||||
// data.anime_list[i].code +
|
// data.anime_list[i].code +
|
||||||
// '"><i class="bi bi-heart-fill"></i></button>';
|
// '"><i class="bi bi-heart-fill"></i></button>';
|
||||||
tmp += '</div><!-- .card -->';
|
tmp += "</div><!-- .card -->"
|
||||||
tmp += '</div>';
|
tmp += "</div>"
|
||||||
tmp += '</div>';
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
// str += '</div><!-- .card-columns -->';
|
// str += '</div><!-- .card-columns -->';
|
||||||
str += m_hr_black();
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$("img.lazyload").lazyload({
|
$("img.lazyload").lazyload({
|
||||||
threshold: 10,
|
threshold: 10,
|
||||||
effect: "fadeIn",
|
effect: "fadeIn",
|
||||||
});
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_search_result_list(data, page) {
|
function make_search_result_list(data, page) {
|
||||||
let str = ''
|
let str = ""
|
||||||
let tmp = ''
|
let tmp = ""
|
||||||
|
|
||||||
console.log(data.anime_list, page)
|
console.log(data.anime_list, page)
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
// str += '<div class="card-columns">'
|
// str += '<div class="card-columns">'
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
if (data.anime_list[i].wr_id !== '') {
|
if (data.anime_list[i].wr_id !== "") {
|
||||||
const re = /bo_table=([^&]+)/
|
const re = /bo_table=([^&]+)/
|
||||||
const bo_table = data.anime_list[i].link.match(re)
|
const bo_table = data.anime_list[i].link.match(re)
|
||||||
console.log(bo_table)
|
console.log(bo_table)
|
||||||
if (bo_table != null) {
|
if (bo_table != null) {
|
||||||
request_url = './request?code=' + data.anime_list[i].code + '&wr_id=' + data.anime_list[i].wr_id + '&bo_table=' + bo_table[1]
|
request_url =
|
||||||
|
"./request?code=" +
|
||||||
|
data.anime_list[i].code +
|
||||||
|
"&wr_id=" +
|
||||||
|
data.anime_list[i].wr_id +
|
||||||
|
"&bo_table=" +
|
||||||
|
bo_table[1]
|
||||||
} else {
|
} else {
|
||||||
request_url = './request?code=' + data.anime_list[i].code
|
request_url = "./request?code=" + data.anime_list[i].code
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
request_url = './request?code=' + data.anime_list[i].code
|
request_url = "./request?code=" + data.anime_list[i].code
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = '<div class="col-6 col-sm-4 col-md-3">';
|
tmp = '<div class="col-6 col-sm-4 col-md-3">'
|
||||||
tmp += '<div class="card">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />'
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
// {#tmp += '<button id="code_button" data-code="' + data.episode[i].code + '" type="button" class="btn btn-primary code-button bootstrap-tooltip" data-toggle="button" data-tooltip="true" aria-pressed="true" autocomplete="off" data-placement="top">' +#}
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
// {# '<span data-tooltip-text="'+data.episode[i].title+'">' + data.episode[i].code + '</span></button></div>';#}
|
tmp += '<p class="card-text">' + data.anime_list[i].code + "</p>"
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp +=
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
'<a href="' +
|
||||||
tmp += '<a href="' + request_url + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
request_url +
|
||||||
tmp += '</div>';
|
'" class="btn btn-primary cut-text">' +
|
||||||
tmp += '</div>';
|
data.anime_list[i].title +
|
||||||
tmp += '</div>';
|
"</a>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
str += '</div><!-- .card-columns -->';
|
str += "</div><!-- .card-columns -->"
|
||||||
str += m_hr_black();
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function make_screen_movie_list(data, page) {
|
function make_screen_movie_list(data, page) {
|
||||||
let str = ''
|
let str = ""
|
||||||
let tmp = ''
|
let tmp = ""
|
||||||
|
|
||||||
console.log(data.anime_list, page)
|
console.log(data.anime_list, page)
|
||||||
|
|
||||||
str += '<div>';
|
str += "<div>"
|
||||||
str += '<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' + page + '</span></button>';
|
str +=
|
||||||
str += '</div>';
|
'<button type="button" class="btn btn-info">Page <span class="badge bg-warning">' +
|
||||||
|
page +
|
||||||
|
"</span></button>"
|
||||||
|
str += "</div>"
|
||||||
// str += '<div class="card-columns">'
|
// str += '<div class="card-columns">'
|
||||||
str += '<div id="inner_screen_movie" class="row infinite-scroll">';
|
str += '<div id="inner_screen_movie" class="row infinite-scroll">'
|
||||||
for (let i in data.anime_list) {
|
for (let i in data.anime_list) {
|
||||||
|
tmp = '<div class="col-sm-4">'
|
||||||
tmp = '<div class="col-sm-4">';
|
tmp += '<div class="card">'
|
||||||
tmp += '<div class="card">';
|
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />'
|
||||||
tmp += '<img class="card-img-top" src="' + data.anime_list[i].image_link + '" />';
|
|
||||||
tmp += '<div class="card-body">'
|
tmp += '<div class="card-body">'
|
||||||
tmp += '<h5 class="card-title">' + data.anime_list[i].title + '</h5>';
|
tmp += '<h5 class="card-title">' + data.anime_list[i].title + "</h5>"
|
||||||
tmp += '<p class="card-text">' + data.anime_list[i].code + '</p>';
|
tmp += '<p class="card-text">' + data.anime_list[i].code + "</p>"
|
||||||
tmp += '<a href="./request?code=' + data.anime_list[i].code + '" class="btn btn-primary cut-text">' + data.anime_list[i].title + '</a>';
|
tmp +=
|
||||||
tmp += '</div>';
|
'<a href="./request?code=' +
|
||||||
tmp += '</div>';
|
data.anime_list[i].code +
|
||||||
tmp += '</div>';
|
'" class="btn btn-primary cut-text">' +
|
||||||
|
data.anime_list[i].title +
|
||||||
|
"</a>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
|
tmp += "</div>"
|
||||||
str += tmp
|
str += tmp
|
||||||
|
|
||||||
}
|
}
|
||||||
str += '</div>';
|
str += "</div>"
|
||||||
// str += '</div><!-- .card-columns -->';
|
// str += '</div><!-- .card-columns -->';
|
||||||
str += m_hr_black();
|
str += m_hr_black()
|
||||||
|
|
||||||
if (page > 1) {
|
if (page > 1) {
|
||||||
|
const temp = document.createElement("div")
|
||||||
const temp = document.createElement('div')
|
temp.innerHTML = str
|
||||||
temp.innerHTML = str;
|
|
||||||
while (temp.firstChild) {
|
while (temp.firstChild) {
|
||||||
document.getElementById("screen_movie_list").appendChild(temp.firstChild);
|
document.getElementById("screen_movie_list").appendChild(temp.firstChild)
|
||||||
}
|
}
|
||||||
page++
|
page++
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
document.getElementById("screen_movie_list").innerHTML = str;
|
document.getElementById("screen_movie_list").innerHTML = str
|
||||||
}
|
}
|
||||||
|
|
||||||
$("img.lazyload").lazyload({
|
$("img.lazyload").lazyload({
|
||||||
threshold: 10,
|
threshold: 10,
|
||||||
effect: "fadeIn",
|
effect: "fadeIn",
|
||||||
});
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
// if ( "{{arg['anilife_current_code']}}" !== "" ) {
|
// if ( "{{arg['anilife_current_code']}}" !== "" ) {
|
||||||
// document.getElementById("code").value = "{{arg['anilife_current_code']}}";
|
// document.getElementById("code").value = "{{arg['anilife_current_code']}}";
|
||||||
// // 값이 공백이 아니면 분석 버튼 계속 누름
|
// // 값이 공백이 아니면 분석 버튼 계속 누름
|
||||||
@@ -341,32 +345,30 @@
|
|||||||
$("#input_search").keydown(function (key) {
|
$("#input_search").keydown(function (key) {
|
||||||
if (key.keyCode === 13) {
|
if (key.keyCode === 13) {
|
||||||
// alert("엔터키를 눌렀습니다.");
|
// alert("엔터키를 눌렀습니다.");
|
||||||
$("#btn_search").trigger("click");
|
$("#btn_search").trigger("click")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
get_anime_list("ing", 1)
|
get_anime_list("ing", 1)
|
||||||
|
|
||||||
|
const observer = lozad(".lozad", {
|
||||||
const observer = lozad('.lozad', {
|
rootMargin: "10px 0px", // syntax similar to that of CSS Margin
|
||||||
rootMargin: '10px 0px', // syntax similar to that of CSS Margin
|
|
||||||
threshold: 0.1, // ratio of element convergence
|
threshold: 0.1, // ratio of element convergence
|
||||||
enableAutoReload: true // it will reload the new image when validating attributes changes
|
enableAutoReload: true, // it will reload the new image when validating attributes changes
|
||||||
});
|
})
|
||||||
observer.observe();
|
observer.observe()
|
||||||
|
})
|
||||||
});
|
|
||||||
|
|
||||||
$("body").on("click", "#btn_search", function (e) {
|
$("body").on("click", "#btn_search", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
let query = $("#input_search").val();
|
let query = $("#input_search").val()
|
||||||
console.log(query);
|
console.log(query)
|
||||||
current_cate = "search"
|
current_cate = "search"
|
||||||
current_query = query
|
current_query = query
|
||||||
|
|
||||||
if ($("#input_search").val() === "") {
|
if ($("#input_search").val() === "") {
|
||||||
console.log("search keyword nothing");
|
console.log("search keyword nothing")
|
||||||
return false;
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@@ -378,72 +380,68 @@
|
|||||||
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
||||||
success: function (ret) {
|
success: function (ret) {
|
||||||
if (ret.ret) {
|
if (ret.ret) {
|
||||||
console.log('ret:::', ret)
|
console.log("ret:::", ret)
|
||||||
make_search_result_list(ret.data, 1);
|
make_search_result_list(ret.data, 1)
|
||||||
next_page = page + 1
|
next_page = page + 1
|
||||||
} else {
|
} else {
|
||||||
$.notify("<strong>분석 실패</strong><br>" + ret.log, {
|
$.notify("<strong>분석 실패</strong><br>" + ret.log, {
|
||||||
type: "warning",
|
type: "warning",
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
$('#anime_category #ing').on("click", function () {
|
$("#anime_category #ing").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById('spinner');
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = 'visible';
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("ing", 1)
|
get_anime_list("ing", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#anime_category #complete_anilist').on("click", function () {
|
$("#anime_category #complete_anilist").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById("spinner")
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = "visible"
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("fin", 1)
|
get_anime_list("fin", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
$('#anime_category #theater').on("click", function () {
|
$("#anime_category #theater").on("click", function () {
|
||||||
// {#console.log(this.id)#}
|
// let spinner = document.getElementById("spinner")
|
||||||
let spinner = document.getElementById('spinner');
|
// spinner.style.visibility = "visible"
|
||||||
spinner.style.visibility = 'visible';
|
|
||||||
get_anime_list("theater", 1)
|
get_anime_list("theater", 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
// 분석 버튼 클릭시 호출
|
// 분석 버튼 클릭시 호출
|
||||||
$("body").on('click', '#analysis_btn', function (e) {
|
$("body").on("click", "#analysis_btn", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
const code = document.getElementById("code").value
|
const code = document.getElementById("code").value
|
||||||
console.log(code)
|
console.log(code)
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
url: "/" + package_name + "/ajax/" + sub + "/analysis",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
cache: false,
|
cache: false,
|
||||||
data: { code: code },
|
data: { code: code },
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (ret) {
|
success: function (ret) {
|
||||||
if (ret.ret === 'success' && ret.data != null) {
|
if (ret.ret === "success" && ret.data != null) {
|
||||||
// console.log(ret.code)
|
// console.log(ret.code)
|
||||||
console.log(ret.data)
|
console.log(ret.data)
|
||||||
make_program(ret.data)
|
make_program(ret.data)
|
||||||
} else {
|
} else {
|
||||||
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
$.notify("<strong>분석 실패</strong><br>" + ret.log, { type: "warning" })
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
|
$("body").on("click", "#go_anilife_btn", function (e) {
|
||||||
$("body").on('click', '#go_anilife_btn', function (e) {
|
e.preventDefault()
|
||||||
e.preventDefault();
|
window.open("{{arg['anilife_url']}}", "_blank")
|
||||||
window.open("{{arg['anilife_url']}}", "_blank");
|
})
|
||||||
});
|
|
||||||
|
|
||||||
$("body").on("click", "#add_whitelist", function (e) {
|
$("body").on("click", "#add_whitelist", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
let data_code = $(this).attr("data-code");
|
let data_code = $(this).attr("data-code")
|
||||||
console.log(data_code);
|
console.log(data_code)
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "/" + package_name + "/ajax/" + sub + "/add_whitelist",
|
url: "/" + package_name + "/ajax/" + sub + "/add_whitelist",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
@@ -455,82 +453,82 @@
|
|||||||
if (ret.ret) {
|
if (ret.ret) {
|
||||||
$.notify("<strong>추가하였습니다.</strong><br>", {
|
$.notify("<strong>추가하였습니다.</strong><br>", {
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
})
|
||||||
// make_program(ret);
|
// make_program(ret);
|
||||||
} else {
|
} else {
|
||||||
$.notify("<strong>추가 실패</strong><br>" + ret.log, {
|
$.notify("<strong>추가 실패</strong><br>" + ret.log, {
|
||||||
type: "warning",
|
type: "warning",
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
$("body").on('click', '#all_check_on_btn', function (e) {
|
$("body").on("click", "#all_check_on_btn", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
$('input[id^="checkbox_"]').bootstrapToggle('on')
|
$('input[id^="checkbox_"]').bootstrapToggle("on")
|
||||||
});
|
})
|
||||||
|
|
||||||
$("body").on('click', '#all_check_off_btn', function (e) {
|
$("body").on("click", "#all_check_off_btn", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
$('input[id^="checkbox_"]').bootstrapToggle('off')
|
$('input[id^="checkbox_"]').bootstrapToggle("off")
|
||||||
});
|
})
|
||||||
|
|
||||||
$("body").on('click', '#add_queue_btn', function (e) {
|
$("body").on("click", "#add_queue_btn", function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault()
|
||||||
data = current_data.episode[$(this).data('idx')];
|
data = current_data.episode[$(this).data("idx")]
|
||||||
console.log('data:::>', data)
|
console.log("data:::>", data)
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: '/' + package_name + '/ajax/' + sub + '/add_queue',
|
url: "/" + package_name + "/ajax/" + sub + "/add_queue",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
cache: false,
|
cache: false,
|
||||||
data: { data: JSON.stringify(data) },
|
data: { data: JSON.stringify(data) },
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (data.ret == 'enqueue_db_append' || data.ret == 'enqueue_db_exist') {
|
if (data.ret == "enqueue_db_append" || data.ret == "enqueue_db_exist") {
|
||||||
$.notify('<strong>다운로드 작업을 추가 하였습니다.</strong>', {type: 'success'});
|
$.notify("<strong>다운로드 작업을 추가 하였습니다.</strong>", { type: "success" })
|
||||||
} else if (data.ret == 'queue_exist') {
|
} else if (data.ret == "queue_exist") {
|
||||||
$.notify('<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>', {type: 'warning'});
|
$.notify("<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>", { type: "warning" })
|
||||||
} else if (data.ret == 'db_completed') {
|
} else if (data.ret == "db_completed") {
|
||||||
$.notify('<strong>DB에 완료 기록이 있습니다.</strong>', {type: 'warning'});
|
$.notify("<strong>DB에 완료 기록이 있습니다.</strong>", { type: "warning" })
|
||||||
} else {
|
} else {
|
||||||
$.notify('<strong>추가 실패</strong><br>' + ret.log, {type: 'warning'});
|
$.notify("<strong>추가 실패</strong><br>" + ret.log, { type: "warning" })
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
// const observer = lozad();
|
// const observer = lozad();
|
||||||
// const el = document.querySelector('img');
|
// const el = document.querySelector('img');
|
||||||
// const observer = lozad(el); // passing a `NodeList` (e.g. `document.querySelectorAll()`) is also valid
|
// const observer = lozad(el); // passing a `NodeList` (e.g. `document.querySelectorAll()`) is also valid
|
||||||
// observer.observe();
|
// observer.observe();
|
||||||
const loadNextAnimes = (cate, page) => {
|
const loadNextAnimes = (cate, page) => {
|
||||||
spinner.style.display = "block";
|
spinner.style.display = "block"
|
||||||
let data = {type: cate, page: String(page)};
|
let data = { type: cate, page: String(page) }
|
||||||
let url = ''
|
let url = ""
|
||||||
switch (cate) {
|
switch (cate) {
|
||||||
case 'ing':
|
case "ing":
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
current_cate = 'ing'
|
current_cate = "ing"
|
||||||
break;
|
|
||||||
case 'movie':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/screen_movie_list'
|
|
||||||
current_cate = 'movie'
|
|
||||||
break;
|
|
||||||
case 'theater':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/anime_list'
|
|
||||||
current_cate = 'theater'
|
|
||||||
break;
|
|
||||||
case 'fin':
|
|
||||||
url = '/' + package_name + '/ajax/' + sub + '/complete_list'
|
|
||||||
current_cate = 'fin'
|
|
||||||
break
|
break
|
||||||
case 'search':
|
case "movie":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/screen_movie_list"
|
||||||
|
current_cate = "movie"
|
||||||
|
break
|
||||||
|
case "theater":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/anime_list"
|
||||||
|
current_cate = "theater"
|
||||||
|
break
|
||||||
|
case "fin":
|
||||||
|
url = "/" + package_name + "/ajax/" + sub + "/complete_list"
|
||||||
|
current_cate = "fin"
|
||||||
|
break
|
||||||
|
case "search":
|
||||||
url = "/" + package_name + "/ajax/" + sub + "/search"
|
url = "/" + package_name + "/ajax/" + sub + "/search"
|
||||||
current_cate = 'search'
|
current_cate = "search"
|
||||||
data.query = current_query
|
data.query = current_query
|
||||||
break;
|
break
|
||||||
default:
|
default:
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(url, {
|
fetch(url, {
|
||||||
@@ -545,42 +543,40 @@
|
|||||||
.then((response) => {
|
.then((response) => {
|
||||||
// console.log("Success:", JSON.stringify(response));
|
// console.log("Success:", JSON.stringify(response));
|
||||||
// {#imagesContainer.appendChild()#}
|
// {#imagesContainer.appendChild()#}
|
||||||
console.log("return page:::> ", String(response.page));
|
console.log("return page:::> ", String(response.page))
|
||||||
// {#page = response.page#}
|
// {#page = response.page#}
|
||||||
if (current_cate === 'search') {
|
if (current_cate === "search") {
|
||||||
make_search_result_list(response.data, response.page);
|
make_search_result_list(response.data, response.page)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
make_screen_movie_list(response.data, response.page);
|
make_screen_movie_list(response.data, response.page)
|
||||||
}
|
}
|
||||||
page++;
|
page++
|
||||||
next_page++;
|
next_page++
|
||||||
})
|
})
|
||||||
.catch((error) => console.error("Error:", error));
|
.catch((error) => console.error("Error:", error))
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
const onScroll = (e) => {
|
const onScroll = (e) => {
|
||||||
console.dir(e.target.scrollingElement.scrollHeight);
|
console.dir(e.target.scrollingElement.scrollHeight)
|
||||||
const {scrollTop, scrollHeight, clientHeight} = e.target.scrollingElement;
|
const { scrollTop, scrollHeight, clientHeight } = e.target.scrollingElement
|
||||||
if (Math.round(scrollHeight - scrollTop) <= clientHeight) {
|
if (Math.round(scrollHeight - scrollTop) <= clientHeight) {
|
||||||
document.getElementById("spinner").style.display = "block";
|
document.getElementById("spinner").style.display = "block"
|
||||||
console.log("loading");
|
console.log("loading")
|
||||||
console.log("now page::> ", page);
|
console.log("now page::> ", page)
|
||||||
console.log("next_page::> ", String(next_page));
|
console.log("next_page::> ", String(next_page))
|
||||||
loadNextAnimes(current_cate, next_page);
|
loadNextAnimes(current_cate, next_page)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
const debounce = (func, delay) => {
|
const debounce = (func, delay) => {
|
||||||
let timeoutId = null;
|
let timeoutId = null
|
||||||
return (...args) => {
|
return (...args) => {
|
||||||
clearTimeout(timeoutId);
|
clearTimeout(timeoutId)
|
||||||
timeoutId = setTimeout(func.bind(null, ...args), delay);
|
timeoutId = setTimeout(func.bind(null, ...args), delay)
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
document.addEventListener("scroll", debounce(onScroll, 300));
|
document.addEventListener("scroll", debounce(onScroll, 300))
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
button.code-button {
|
button.code-button {
|
||||||
@@ -592,7 +588,6 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[data-tooltip-text]:hover {
|
[data-tooltip-text]:hover {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
@@ -701,7 +696,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.card-title {
|
.card-title {
|
||||||
padding: 1rem !important;
|
padding: 0.5rem 0.5rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#add_whitelist {
|
button#add_whitelist {
|
||||||
@@ -735,7 +730,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.card-columns {
|
.card-columns {
|
||||||
column-count: 3;
|
column-count: 3;
|
||||||
@@ -779,7 +773,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue,
|
||||||
|
Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
|
||||||
|
Segoe UI Symbol, Noto Color Emoji;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@@ -829,7 +825,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.loader-line-wrap {
|
.loader-line-wrap {
|
||||||
animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
|
animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -909,15 +905,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
0%, 15% {
|
0%,
|
||||||
|
15% {
|
||||||
transform: rotate(0);
|
transform: rotate(0);
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css">
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css"
|
||||||
|
/>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
{{ macros.setting_checkbox('ohli24_auto_make_season_folder', '시즌 폴더 생성', value=arg['ohli24_auto_make_season_folder'], desc=['On : Season 번호 폴더를 만듭니다.']) }}
|
{{ macros.setting_checkbox('ohli24_auto_make_season_folder', '시즌 폴더 생성', value=arg['ohli24_auto_make_season_folder'], desc=['On : Season 번호 폴더를 만듭니다.']) }}
|
||||||
</div>
|
</div>
|
||||||
{{ macros.setting_checkbox('ohli24_uncompleted_auto_enqueue', '자동으로 다시 받기', value=arg['ohli24_uncompleted_auto_enqueue'], desc=['On : 플러그인 로딩시 미완료인 항목은 자동으로 다시 받습니다.']) }}
|
{{ macros.setting_checkbox('ohli24_uncompleted_auto_enqueue', '자동으로 다시 받기', value=arg['ohli24_uncompleted_auto_enqueue'], desc=['On : 플러그인 로딩시 미완료인 항목은 자동으로 다시 받습니다.']) }}
|
||||||
|
{{ macros.setting_checkbox('ohli24_discord_notify', '디스 코드 알림 받기', value=arg['ohli24_discord_notify'], desc=['On : 새로운 글이 올라올때 디스코드 알림을 보냅니다.']) }}
|
||||||
{{ macros.m_tab_content_end() }}
|
{{ macros.m_tab_content_end() }}
|
||||||
|
|
||||||
{{ macros.m_tab_content_start('auto', false) }}
|
{{ macros.m_tab_content_start('auto', false) }}
|
||||||
|
|||||||
Reference in New Issue
Block a user