#!/usr/bin/env python # -*- coding:utf-8 -*- # project: 5月 # author: NinEveN # date: 2021/5/27 import logging from celery import shared_task from django.core.cache import cache from api.models import Apps, DeveloperAppID from api.utils.app.supersignutils import IosUtils, resign_by_app_id_and_developer from api.utils.crontab.ctasks import sync_download_times, auto_clean_upload_tmp_file, auto_delete_ios_mobile_tmp_file, \ auto_check_ios_developer_active from api.utils.geetest.geetest_utils import check_bypass_status from api.utils.mp.wechat import sync_wx_access_token from api.utils.storage.storage import get_local_storage from api.views.login import get_login_type from fir_ser.celery import app from fir_ser.settings import LOGIN, CHANGER, REGISTER logger = logging.getLogger(__name__) @shared_task def run_sign_task(format_udid_info, short, client_ip): app_obj = Apps.objects.filter(short=short).first() ios_obj = IosUtils(format_udid_info, app_obj.user_id, app_obj) status, msg = ios_obj.sign_ipa(client_ip) if not status: code = msg.get("code", -1) if code == 0: msg = "" elif code == 1005: msg = "签名余额不足" elif code == 1002: msg = "维护中" elif code == 1003: msg = "应用余额不足" elif code in [1004, 1001, 1009]: msg = msg.get('msg', '未知错误') else: msg = '系统内部错误' else: msg = "" return msg def run_resign_task(app_id, need_download_profile=True, force=True): app_obj = Apps.objects.filter(pk=app_id).first() if app_obj.issupersign and app_obj.user_id.supersign_active: with cache.lock("%s_%s" % ('task_resign', app_obj.app_id), timeout=60 * 60): task_list = [] for developer_app_id_obj in DeveloperAppID.objects.filter(app_id=app_obj).all(): c_task = run_resign_task_do.apply_async((app_id, developer_app_id_obj.developerid.pk, developer_app_id_obj.aid, need_download_profile, force)) task_list.append(c_task) for c_task in task_list: msg = c_task.get(propagate=False) logger.info(f"app {app_obj} run_resign_task msg:{msg}") if c_task.successful(): c_task.forget() return True @shared_task def run_resign_task_do(app_id, developer_id, developer_app_id, need_download_profile=True, force=True): return resign_by_app_id_and_developer(app_id, developer_id, developer_app_id, need_download_profile, force) @app.task def start_api_sever_do_clean(): # 启动服务的时候,同时执行下面操作,主要是修改配置存储的时候,需要执行清理,否则会出问题,如果不修改,则无需执行 get_local_storage(clean_cache=True) check_bypass_status() @app.task def sync_download_times_job(): sync_download_times() @app.task def check_bypass_status_job(): if LOGIN.get("geetest") or CHANGER.get('geetest') or REGISTER.get('geetest'): check_bypass_status() @app.task def auto_clean_upload_tmp_file_job(): auto_clean_upload_tmp_file() @app.task def auto_delete_tmp_file_job(): auto_delete_ios_mobile_tmp_file() @app.task def auto_check_ios_developer_active_job(): auto_check_ios_developer_active() @app.task def sync_wx_access_token_job(): if get_login_type().get('third', '').get('wxp'): sync_wx_access_token()