forked from Dniel97/artemis
Merge branch 'develop' of https://gitea.tendokyu.moe/Hay1tsme/artemis into develop
This commit is contained in:
commit
23bcb5cc13
@ -3,6 +3,7 @@ from typing import Any, List, Dict
|
|||||||
import logging
|
import logging
|
||||||
import json
|
import json
|
||||||
import urllib
|
import urllib
|
||||||
|
from threading import Thread
|
||||||
|
|
||||||
from core.config import CoreConfig
|
from core.config import CoreConfig
|
||||||
from titles.diva.config import DivaConfig
|
from titles.diva.config import DivaConfig
|
||||||
@ -663,50 +664,66 @@ class DivaBase:
|
|||||||
|
|
||||||
return pv_result
|
return pv_result
|
||||||
|
|
||||||
|
def task_generateScoreData(self, data: Dict, pd_by_pv_id, song):
|
||||||
|
|
||||||
|
if int(song) > 0:
|
||||||
|
# the request do not send a edition so just perform a query best score and ranking for each edition.
|
||||||
|
# 0=ORIGINAL, 1=EXTRA
|
||||||
|
pd_db_song_0 = self.data.score.get_best_user_score(
|
||||||
|
data["pd_id"], int(song), data["difficulty"], edition=0
|
||||||
|
)
|
||||||
|
pd_db_song_1 = self.data.score.get_best_user_score(
|
||||||
|
data["pd_id"], int(song), data["difficulty"], edition=1
|
||||||
|
)
|
||||||
|
|
||||||
|
pd_db_ranking_0, pd_db_ranking_1 = None, None
|
||||||
|
if pd_db_song_0:
|
||||||
|
pd_db_ranking_0 = self.data.score.get_global_ranking(
|
||||||
|
data["pd_id"], int(song), data["difficulty"], edition=0
|
||||||
|
)
|
||||||
|
|
||||||
|
if pd_db_song_1:
|
||||||
|
pd_db_ranking_1 = self.data.score.get_global_ranking(
|
||||||
|
data["pd_id"], int(song), data["difficulty"], edition=1
|
||||||
|
)
|
||||||
|
|
||||||
|
pd_db_customize = self.data.pv_customize.get_pv_customize(
|
||||||
|
data["pd_id"], int(song)
|
||||||
|
)
|
||||||
|
|
||||||
|
# generate the pv_result string with the ORIGINAL edition and the EXTRA edition appended
|
||||||
|
pv_result = self._get_pv_pd_result(
|
||||||
|
int(song), pd_db_song_0, pd_db_ranking_0, pd_db_customize, edition=0
|
||||||
|
)
|
||||||
|
pv_result += "," + self._get_pv_pd_result(
|
||||||
|
int(song), pd_db_song_1, pd_db_ranking_1, pd_db_customize, edition=1
|
||||||
|
)
|
||||||
|
|
||||||
|
self.logger.debug(f"pv_result = {pv_result}")
|
||||||
|
pd_by_pv_id.append(urllib.parse.quote(pv_result))
|
||||||
|
else:
|
||||||
|
pd_by_pv_id.append(urllib.parse.quote(f"{song}***"))
|
||||||
|
pd_by_pv_id.append(",")
|
||||||
|
|
||||||
def handle_get_pv_pd_request(self, data: Dict) -> Dict:
|
def handle_get_pv_pd_request(self, data: Dict) -> Dict:
|
||||||
song_id = data["pd_pv_id_lst"].split(",")
|
song_id = data["pd_pv_id_lst"].split(",")
|
||||||
pv = ""
|
pv = ""
|
||||||
|
|
||||||
|
threads = []
|
||||||
|
pd_by_pv_id = []
|
||||||
|
|
||||||
for song in song_id:
|
for song in song_id:
|
||||||
if int(song) > 0:
|
thread_ScoreData = Thread(target=self.task_generateScoreData(data, pd_by_pv_id, song))
|
||||||
# the request do not send a edition so just perform a query best score and ranking for each edition.
|
threads.append(thread_ScoreData)
|
||||||
# 0=ORIGINAL, 1=EXTRA
|
|
||||||
pd_db_song_0 = self.data.score.get_best_user_score(
|
|
||||||
data["pd_id"], int(song), data["difficulty"], edition=0
|
|
||||||
)
|
|
||||||
pd_db_song_1 = self.data.score.get_best_user_score(
|
|
||||||
data["pd_id"], int(song), data["difficulty"], edition=1
|
|
||||||
)
|
|
||||||
|
|
||||||
pd_db_ranking_0, pd_db_ranking_1 = None, None
|
for x in threads:
|
||||||
if pd_db_song_0:
|
x.start()
|
||||||
pd_db_ranking_0 = self.data.score.get_global_ranking(
|
|
||||||
data["pd_id"], int(song), data["difficulty"], edition=0
|
|
||||||
)
|
|
||||||
|
|
||||||
if pd_db_song_1:
|
for x in threads:
|
||||||
pd_db_ranking_1 = self.data.score.get_global_ranking(
|
x.join()
|
||||||
data["pd_id"], int(song), data["difficulty"], edition=1
|
|
||||||
)
|
|
||||||
|
|
||||||
pd_db_customize = self.data.pv_customize.get_pv_customize(
|
for x in pd_by_pv_id:
|
||||||
data["pd_id"], int(song)
|
pv += x
|
||||||
)
|
|
||||||
|
|
||||||
# generate the pv_result string with the ORIGINAL edition and the EXTRA edition appended
|
|
||||||
pv_result = self._get_pv_pd_result(
|
|
||||||
int(song), pd_db_song_0, pd_db_ranking_0, pd_db_customize, edition=0
|
|
||||||
)
|
|
||||||
pv_result += "," + self._get_pv_pd_result(
|
|
||||||
int(song), pd_db_song_1, pd_db_ranking_1, pd_db_customize, edition=1
|
|
||||||
)
|
|
||||||
|
|
||||||
self.logger.debug(f"pv_result = {pv_result}")
|
|
||||||
|
|
||||||
pv += urllib.parse.quote(pv_result)
|
|
||||||
else:
|
|
||||||
pv += urllib.parse.quote(f"{song}***")
|
|
||||||
pv += ","
|
|
||||||
|
|
||||||
response = ""
|
response = ""
|
||||||
response += f"&pd_by_pv_id={pv[:-1]}"
|
response += f"&pd_by_pv_id={pv[:-1]}"
|
||||||
|
Loading…
Reference in New Issue
Block a user