You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
375 lines
19 KiB
375 lines
19 KiB
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
# project: 3月
|
|
# author: liuyu
|
|
# date: 2020/3/4
|
|
|
|
import logging
|
|
|
|
from django.db.models import Sum
|
|
from rest_framework.pagination import PageNumberPagination
|
|
from rest_framework.response import Response
|
|
from rest_framework.views import APIView
|
|
|
|
from api.base_views import app_delete
|
|
from api.models import Apps, AppReleaseInfo, APPToDeveloper, UserInfo, AppScreenShot
|
|
from api.tasks import run_resign_task
|
|
from api.utils.app.supersignutils import IosUtils
|
|
from api.utils.auth import ExpiringTokenAuthentication
|
|
from api.utils.modelutils import get_user_domain_name, get_app_domain_name, check_super_sign_permission
|
|
from api.utils.response import BaseResponse
|
|
from api.utils.serializer import AppsSerializer, AppReleaseSerializer, AppsListSerializer
|
|
from api.utils.storage.caches import del_cache_response_by_short, get_app_today_download_times, del_cache_by_delete_app, \
|
|
CleanAppSignDataState
|
|
from api.utils.storage.storage import Storage
|
|
from api.utils.utils import delete_local_files, delete_app_screenshots_files
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def get_release_apps(request, res, app_serializer, apps_obj, storage):
|
|
page_obj = AppsPageNumber()
|
|
app_release_obj = AppReleaseInfo.objects.filter(app_id=apps_obj).all().order_by("-created_time")
|
|
app_release_page_serializer = page_obj.paginate_queryset(queryset=app_release_obj, request=request)
|
|
app_release_serializer = AppReleaseSerializer(app_release_page_serializer, many=True,
|
|
context={"storage": storage})
|
|
res.data['has_next'] = page_obj.page.has_next()
|
|
res.data["currentapp"] = app_serializer.data
|
|
res.data["release_apps"] = app_release_serializer.data
|
|
return res
|
|
|
|
|
|
class AppsPageNumber(PageNumberPagination):
|
|
page_size = 20 # 每页显示多少条
|
|
page_size_query_param = 'size' # URL中每页显示条数的参数
|
|
page_query_param = 'page' # URL中页码的参数
|
|
max_page_size = None # 最大页码数限制
|
|
|
|
|
|
class AppsView(APIView):
|
|
authentication_classes = [ExpiringTokenAuthentication, ]
|
|
|
|
def get(self, request):
|
|
|
|
app_type = request.query_params.get("type", None)
|
|
act_type = request.query_params.get("act", None)
|
|
res = BaseResponse()
|
|
res.hdata = {"all_hits_count": 0,
|
|
"ios_count": Apps.objects.filter(type=1, user_id=request.user).values('app_id').count(),
|
|
"android_count": Apps.objects.filter(type=0, user_id=request.user).values('app_id').count()}
|
|
|
|
android_app_ids = Apps.objects.filter(**{"user_id": request.user, "type": 0}).values('app_id')
|
|
res.hdata["android_today_hits_count"] = get_app_today_download_times(android_app_ids)
|
|
|
|
ios_app_ids = Apps.objects.filter(**{"user_id": request.user, "type": 1}).values('app_id')
|
|
res.hdata["ios_today_hits_count"] = get_app_today_download_times(ios_app_ids)
|
|
|
|
all_hits_obj = Apps.objects.filter(user_id=request.user).aggregate(count_hits=Sum('count_hits'))
|
|
if all_hits_obj:
|
|
count_hits = all_hits_obj.get("count_hits", 0)
|
|
if count_hits:
|
|
if count_hits > 0:
|
|
logger.info(
|
|
f"update user all_download_times old:{count_hits} now:{request.user.all_download_times}")
|
|
UserInfo.objects.filter(pk=request.user.id).update(
|
|
all_download_times=count_hits)
|
|
else:
|
|
count_hits = 0
|
|
res.hdata["all_hits_count"] = count_hits
|
|
else:
|
|
res.hdata["all_hits_count"] = 0
|
|
|
|
if app_type == "android":
|
|
filter_data = {"user_id": request.user, "type": 0}
|
|
|
|
elif app_type == "ios":
|
|
filter_data = {"user_id": request.user, "type": 1}
|
|
else:
|
|
filter_data = {"user_id": request.user}
|
|
|
|
if act_type == "combo":
|
|
filter_data["has_combo"] = None
|
|
|
|
apps_obj = Apps.objects.filter(**filter_data)
|
|
logger.info(filter_data)
|
|
page_obj = AppsPageNumber()
|
|
app_page_serializer = page_obj.paginate_queryset(queryset=apps_obj.order_by("-updated_time"), request=request,
|
|
view=self)
|
|
|
|
app_serializer = AppsListSerializer(app_page_serializer, many=True, context={"storage": Storage(request.user)})
|
|
|
|
res.userinfo = {}
|
|
res.has_next = {}
|
|
res.data = app_serializer.data
|
|
res.has_next = page_obj.page.has_next()
|
|
return Response(res.dict)
|
|
|
|
|
|
class AppInfoView(APIView):
|
|
authentication_classes = [ExpiringTokenAuthentication, ]
|
|
|
|
def get(self, request, app_id):
|
|
res = BaseResponse()
|
|
if app_id:
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
if app_obj:
|
|
app_serializer = AppsSerializer(app_obj, context={"storage": Storage(request.user)})
|
|
res.data = app_serializer.data
|
|
count = APPToDeveloper.objects.filter(app_id=app_obj, developerid__user_id=request.user).count()
|
|
res.data["count"] = count
|
|
else:
|
|
logger.error(f"app_id:{app_id} is not found in user:{request.user}")
|
|
res.msg = "未找到该应用"
|
|
res.code = 1003
|
|
|
|
return Response(res.dict)
|
|
|
|
def delete(self, request, app_id):
|
|
res = BaseResponse()
|
|
if app_id:
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
res = app_delete(app_obj)
|
|
return Response(res.dict)
|
|
|
|
def put(self, request, app_id):
|
|
res = BaseResponse()
|
|
if app_id:
|
|
data = request.data
|
|
|
|
clean = data.get("clean", None)
|
|
if clean:
|
|
if CleanAppSignDataState.get_state(request.user.uid):
|
|
res.code = 1008
|
|
res.msg = "数据清理中,请耐心等待"
|
|
return Response(res.dict)
|
|
logger.info(f"app_id:{app_id} clean:{clean} ,close super_sign should clean_app_by_user_obj")
|
|
CleanAppSignDataState.set_state(request.user.uid, timeout=60 * 10)
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
IosUtils.clean_app_by_user_obj(app_obj)
|
|
CleanAppSignDataState.del_state(request.user.uid)
|
|
|
|
return Response(res.dict)
|
|
|
|
has_combo = data.get("has_combo", None)
|
|
if has_combo:
|
|
actions = has_combo.get("action", None)
|
|
hcombo_id = has_combo.get("hcombo_id", None)
|
|
logger.info(f"app_id:{app_id} actions:{actions} hcombo_id:{hcombo_id}")
|
|
|
|
if actions and hcombo_id:
|
|
has_combo = Apps.objects.filter(user_id=request.user, app_id=hcombo_id)
|
|
apps_obj = Apps.objects.filter(user_id=request.user, app_id=app_id)
|
|
try:
|
|
if actions == "UNCOMBO":
|
|
if apps_obj.filter(has_combo=has_combo.first()).first():
|
|
apps_obj.update(has_combo=None)
|
|
has_combo.update(has_combo=None)
|
|
|
|
elif actions == "COMBO":
|
|
apps_obj.update(has_combo=has_combo.first())
|
|
has_combo.update(has_combo=apps_obj.first())
|
|
else:
|
|
pass
|
|
del_cache_response_by_short(apps_obj.first().app_id)
|
|
del_cache_response_by_short(has_combo.first().app_id)
|
|
|
|
except Exception as e:
|
|
logger.error(f"app_id:{app_id} actions:{actions} hcombo_id:{hcombo_id} Exception:{e}")
|
|
res.code = 1004
|
|
res.msg = "该应用已经关联"
|
|
else:
|
|
try:
|
|
do_sign_flag = 0
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
logger.info("app_id:%s update old data:%s" % (app_id, app_obj.__dict__))
|
|
app_obj.description = data.get("description", app_obj.description)
|
|
app_obj.short = data.get("short", app_obj.short)
|
|
app_obj.name = data.get("name", app_obj.name)
|
|
app_obj.password = data.get("password", app_obj.password)
|
|
app_obj.supersign_limit_number = data.get("supersign_limit_number",
|
|
app_obj.supersign_limit_number)
|
|
app_obj.isshow = data.get("isshow", app_obj.isshow)
|
|
update_fields = ["description", "short", "name", "password", "supersign_limit_number", "isshow"]
|
|
if get_user_domain_name(request.user) or get_app_domain_name(app_obj):
|
|
app_obj.wxeasytype = data.get("wxeasytype", app_obj.wxeasytype)
|
|
else:
|
|
app_obj.wxeasytype = 1
|
|
update_fields.append("wxeasytype")
|
|
if app_obj.issupersign:
|
|
if app_obj.supersign_type in [x[0] for x in list(app_obj.supersign_type_choices)]:
|
|
if app_obj.supersign_type != data.get("supersign_type", app_obj.supersign_type):
|
|
do_sign_flag = 1
|
|
app_obj.supersign_type = data.get("supersign_type", app_obj.supersign_type)
|
|
update_fields.append("supersign_type")
|
|
new_bundle_id = data.get("new_bundle_id", None)
|
|
new_bundle_name = data.get("new_bundle_name", None)
|
|
if new_bundle_id and new_bundle_id != app_obj.bundle_id and len(new_bundle_id) > 3:
|
|
if new_bundle_id != app_obj.new_bundle_id:
|
|
do_sign_flag = 2
|
|
app_obj.new_bundle_id = new_bundle_id
|
|
if new_bundle_id == '':
|
|
if new_bundle_id != app_obj.new_bundle_id:
|
|
do_sign_flag = 2
|
|
app_obj.new_bundle_id = None
|
|
|
|
if new_bundle_name and new_bundle_name != app_obj.name and len(new_bundle_name) > 0:
|
|
if new_bundle_name != app_obj.new_bundle_name:
|
|
do_sign_flag = 2
|
|
app_obj.new_bundle_name = new_bundle_name
|
|
if new_bundle_name == '':
|
|
if app_obj.name != app_obj.new_bundle_name:
|
|
do_sign_flag = 2
|
|
app_obj.new_bundle_name = app_obj.name
|
|
update_fields.extend(["new_bundle_name", "new_bundle_id"])
|
|
app_obj.wxredirect = data.get("wxredirect", app_obj.wxredirect)
|
|
update_fields.append("wxredirect")
|
|
if app_obj.type == 1 and data.get('issupersign', -1) != -1:
|
|
# 为啥注释掉,就是该udid已经在该平台使用了,虽然已经没有余额,但是其他应用也是可以超级签名的
|
|
# developer_obj = AppIOSDeveloperInfo.objects.filter(user_id=request.user)
|
|
# use_num = get_developer_devices(developer_obj)
|
|
# if use_num.get("flyapp_used_sum") >= use_num.get("all_usable_number"):
|
|
# res.code = 1008
|
|
# res.msg = "超级签余额不足,无法开启"
|
|
# return Response(res.dict)
|
|
if not check_super_sign_permission(request.user):
|
|
logger.error(f"app_id:{app_id} can't open super_sign,owner has no ios developer")
|
|
res.code = 1008
|
|
res.msg = "超级签余额不足,无法开启"
|
|
return Response(res.dict)
|
|
do_sign_flag = 3
|
|
app_obj.issupersign = data.get("issupersign", app_obj.issupersign)
|
|
update_fields.append("issupersign")
|
|
logger.info(f"app_id:{app_id} update new data:{app_obj.__dict__}")
|
|
app_obj.save(update_fields=update_fields)
|
|
if app_obj.issupersign:
|
|
c_task = None
|
|
if do_sign_flag == 1:
|
|
c_task = run_resign_task.apply_async((app_obj.app_id, True))
|
|
if do_sign_flag == 2:
|
|
c_task = run_resign_task.apply_async((app_obj.app_id, False))
|
|
if do_sign_flag == 3:
|
|
c_task = run_resign_task.apply_async((app_obj.app_id, False, False))
|
|
if c_task:
|
|
msg = c_task.get(propagate=False)
|
|
logger.info(f"app {app_obj} run_resign_task msg:{msg}")
|
|
if c_task.successful():
|
|
c_task.forget()
|
|
del_cache_response_by_short(app_obj.app_id)
|
|
except Exception as e:
|
|
logger.error(f"app_id:{app_id} update Exception:{e}")
|
|
res.code = 1005
|
|
res.msg = "短连接已经存在"
|
|
|
|
return Response(res.dict)
|
|
|
|
def post(self, request, app_id):
|
|
res = BaseResponse()
|
|
res.data = Apps.objects.filter(short=app_id).count()
|
|
return Response(res.dict)
|
|
|
|
|
|
class AppReleaseInfoView(APIView):
|
|
authentication_classes = [ExpiringTokenAuthentication, ]
|
|
|
|
def get(self, request, app_id, act):
|
|
res = BaseResponse()
|
|
res.data = {}
|
|
if app_id:
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
if app_obj:
|
|
storage = Storage(request.user)
|
|
app_serializer = AppsSerializer(app_obj, context={"storage": storage})
|
|
res = get_release_apps(request, res, app_serializer, app_obj, storage)
|
|
else:
|
|
res.msg = "未找到该应用"
|
|
res.code = 1003
|
|
return Response(res.dict)
|
|
|
|
def delete(self, request, app_id, act):
|
|
res = BaseResponse()
|
|
if app_id:
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
if app_obj:
|
|
storage = Storage(request.user)
|
|
if act == 'screen':
|
|
screen_id = request.query_params.get('screen_id', None)
|
|
if screen_id:
|
|
screen_obj = AppScreenShot.objects.filter(pk=screen_id, app_id=app_obj).first()
|
|
if screen_obj:
|
|
storage.delete_file(screen_obj.screenshot_url)
|
|
screen_obj.delete()
|
|
del_cache_response_by_short(app_obj.app_id)
|
|
return Response(res.dict)
|
|
|
|
app_release_count = AppReleaseInfo.objects.filter(app_id=app_obj).values("release_id").count()
|
|
app_release_obj = AppReleaseInfo.objects.filter(app_id=app_obj, release_id=act).first()
|
|
if app_release_obj:
|
|
if not app_release_obj.is_master:
|
|
logger.info(f"delete app release {app_release_obj}")
|
|
storage.delete_file(app_release_obj.release_id, app_release_obj.release_type)
|
|
delete_local_files(app_release_obj.release_id, app_release_obj.release_type)
|
|
storage.delete_file(app_release_obj.icon_url)
|
|
|
|
app_release_obj.delete()
|
|
elif app_release_obj.is_master and app_release_count < 2:
|
|
logger.info(f"delete app master release {app_release_obj} and clean app {app_obj}")
|
|
count = APPToDeveloper.objects.filter(app_id=app_obj).count()
|
|
if app_obj.issupersign or count > 0:
|
|
logger.info(f"app_id:{app_id} is super_sign ,delete this app need clean IOS developer")
|
|
IosUtils.clean_app_by_user_obj(app_obj)
|
|
|
|
storage.delete_file(app_release_obj.release_id, app_release_obj.release_type)
|
|
delete_local_files(app_release_obj.release_id, app_release_obj.release_type)
|
|
storage.delete_file(app_release_obj.icon_url)
|
|
del_cache_by_delete_app(app_obj.app_id)
|
|
|
|
app_release_obj.delete()
|
|
delete_app_screenshots_files(storage, app_obj)
|
|
has_combo = app_obj.has_combo
|
|
if has_combo:
|
|
has_combo.has_combo = None
|
|
has_combo.save(update_fields=["has_combo"])
|
|
del_cache_response_by_short(has_combo.app_id)
|
|
app_obj.delete()
|
|
else:
|
|
pass
|
|
del_cache_response_by_short(app_obj.app_id)
|
|
|
|
return Response(res.dict)
|
|
|
|
def put(self, request, app_id, act):
|
|
res = BaseResponse()
|
|
res.data = {}
|
|
if app_id:
|
|
app_obj = Apps.objects.filter(user_id=request.user, app_id=app_id).first()
|
|
if app_obj:
|
|
app_release_objs = AppReleaseInfo.objects.filter(app_id=app_obj, release_id=act)
|
|
data = request.data
|
|
make_master = data.get("make_master", None)
|
|
try:
|
|
if make_master and make_master == act:
|
|
AppReleaseInfo.objects.filter(app_id=app_obj).update(is_master=False)
|
|
app_release_objs.update(is_master=True)
|
|
else:
|
|
app_release_objs.update(changelog=data.get("changelog", app_release_objs.first().changelog))
|
|
binary_url = data.get("binary_url", None)
|
|
if binary_url != '':
|
|
if binary_url:
|
|
if not binary_url.startswith('http'):
|
|
binary_url = 'http://%s' % binary_url
|
|
else:
|
|
binary_url = app_release_objs.first().binary_url
|
|
|
|
app_release_objs.update(binary_url=binary_url)
|
|
logger.info(f"update app:{app_obj} release:{app_release_objs} data:{data}")
|
|
except Exception as e:
|
|
logger.error(f"update app:{app_obj} release:{app_release_objs} failed Exception:{e}")
|
|
res.code = 1006
|
|
res.msg = "更新失败"
|
|
return Response(res.dict)
|
|
|
|
del_cache_response_by_short(app_obj.app_id)
|
|
app_serializer = AppsSerializer(app_obj)
|
|
res = get_release_apps(request, res, app_serializer, app_obj, Storage(request.user))
|
|
|
|
return Response(res.dict)
|
|
|