def get(self, request, page, size): if all([page, size]): page = int(page) size = int(size) startPage = (page - 1) * size endPage = page * size search = request.GET.get("search", None) if search: allUsers = User.objects.all().exclude( mode=None).order_by('-id').filter(username=search) else: allUsers = User.objects.all().exclude( mode=None).order_by('-id')[startPage:endPage] newL = [] for us in allUsers: one = { "id": us.id, "username": us.username, "num": us.number, "mode": list(us.mode), "target": us.target, "isSuperUser": us.is_superuser, } newL.append(one) data = { "data": newL, "total": User.objects.exclude(mode=None).count(), } data.update(ref.code(200)) return JsonResponse(data) else: return JsonResponse(ref.code(403))
def get(self, request, page, size): userid = request.GET.get("userId", None) search = request.GET.get("search", None) # import urllib # print(urllib.request.unquote(r'www.sd%E4%BD%A0%E5%A5%BD.com')) try: oneUser = User.objects.get(id=userid) except Exception as e: return JsonResponse(ref.code(400)) if all([page, size, oneUser]): page = int(page) size = int(size) startPage = (page - 1) * size endPage = page * size jumpObj = oneUser.jump_target.all() if search: oneSer = jumpObj.filter(name=search) allJumps = oneSer else: allJumps = jumpObj[startPage:endPage] jumpList = [] if allJumps: for one in allJumps: _dict = { "id": one.id, "name": one.name if one.name else "", "jump": one.jumptarget if one.jumptarget else "", } jumpList.append(_dict) data = {"data": jumpList, "total": jumpObj.count()} data.update(ref.code(200)) return JsonResponse(data) else: return JsonResponse(ref.code(400))
def post(self, request): data = request.POST.get("data", None) if data is None: return JsonResponse(ref.code(400)) userInfo = json.loads(data) try: getUsers = User.objects.exclude(mode=None).filter( username=userInfo['username']) newMode = userInfo['mode'] if len(userInfo['mode']) == 1 else None newSuperUser = True if len(userInfo['isSuperUser']) == 1 else False newPassword = userInfo['password'] if len( userInfo['password']) else None except Exception as e: return JsonResponse(ref.code(400)) if getUsers: # print(getUsers.first().mode,"---",newMode) # print(type(getUsers.first().mode),"---",type(str(newMode))) oneUser = getUsers.first() isFunc = oneUser.mode == str(newMode[0]) _dict1 = { "password": make_password(newPassword.strip()), "target": userInfo['target'], "mode": newMode[0], "number": int(userInfo['num']), "is_superuser": newSuperUser, "is_staff": True, "is_active": True, } if newPassword is None and newSuperUser: _dict1.pop("password", "error") elif not newSuperUser: _dict1["password"] = make_password(userInfo['username']) if not isFunc: val = int(newMode[0]) self.UserProcess(oneUser, val) #模式对应的jump目标要变动 getUsers.update(**_dict1) newOneUser = getUsers.first() if int(newMode[0]) in [1, 5]: newOneUser.jump_target.all().update( jumptarget=newOneUser.target) Cache().set() return JsonResponse(ref.code(202)) else: _dict2 = { "username": userInfo['username'], "password": make_password(newPassword.strip()), "target": userInfo['target'], "mode": newMode[0], "number": int(userInfo['num']), "is_superuser": newSuperUser, "is_staff": True, "is_active": True, } if not newSuperUser: _dict2["password"] = make_password(userInfo['username']) User.objects.create(**_dict2) Cache().set() return JsonResponse(ref.code(201))
def get(self, request): # print(request.user,"user") getUser = User.objects.filter(username=request.user).first() if not getUser: return JsonResponse(ref.code(401)) if getUser.is_superuser and getUser.mode == None: roles = 'admin' else: roles = 'subuser' data = { "userid": getUser.id, "username": getUser.username, "roles": roles } data.update(ref.code(200)) return JsonResponse(data)
def delete(self, request): delData = request.body.decode("utf8") delList = json.loads(delData) if isinstance(delList, list): for i in delList: Jump.objects.filter(id=i["id"]).delete() Cache().set() return JsonResponse(ref.code(204))
def post(self, request): dataP = request.POST.get("data") data = json.loads(dataP) newUser = User.objects.filter(id=data["id"]).first() numFunc = int(data["mode"]) try: result = self.dataStorage(newUser, data, numFunc) except Exception as e: Cache().set() return JsonResponse(e.newError) if result: Cache().set() return JsonResponse(ref.code(201))
def process_request(self, request): # print(request.POST) whiteUrl = ["/api/login/"] newPath = request.META.get("PATH_INFO", None) print(newPath, "newpat") if newPath not in whiteUrl: allUrl = import_string(settings.ROOT_URLCONF) # 获取所有url self.get_url(allUrl.urlpatterns, "") # print("---",self.urlList) # 判断是否在url里面 result = self.isRelease(self.urlList, newPath) print(result, "結果") if result: newAuth = request.META.get("HTTP_AUTHORIZATION", None) #判断是否有token # print("token",newAuth) if not newAuth: return JsonResponse(ref.code(401)) cacheAuth = cache.get(newAuth) #判断是否有这个token if not cacheAuth: return JsonResponse(ref.code(401)) try: #判断是否有这个用户 userAuth = Token().decodejwt(newAuth)["username"] # print(userAuth,"userauth") except Exception as e: return JsonResponse(ref.code(401)) if not userAuth: return JsonResponse(ref.code(401)) else: callBackRes = self.resolveUrl(request) print(callBackRes, "call") if callBackRes == "error": return HttpResponse(status=403) else: return HttpResponse(callBackRes)
def post(self, request): # return JsonResponse(ref.set(400, "用户或密码错误")) userInfo = json.loads(request.POST.get("data")) print(userInfo, "uuuuuu") isUser = authenticate(username=userInfo["username"], password=userInfo["password"]) if isUser: login(request, isUser) tk = Token().encodejwt(isUser.username) cache.set(str(tk), isUser.username, 60 * 60) data = {"token": tk} data.update(ref.code(200)) return JsonResponse(data) else: return JsonResponse(ref.set(400, "用户或密码错误"))
def get(self, request): userId = request.GET.get("userid", None) if userId: newData = User.objects.exclude(mode=None).filter(id=int(userId)) else: newData = User.objects.exclude(mode=None).all() newList = [] for one in newData: _dict = { "id": one.id, "username": one.username, "num": one.number, "target": one.target, "mode": list(one.mode), "jumpnum": len(one.jump_target.all()), "jumplist": "", } newList.append(_dict) data = { "data": newList, } data.update(ref.code(200)) return JsonResponse(data)