| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 | from datetime import datetimeimport concurrent.futuresimport pytzimport requestsfrom django.db.models import Qfrom django.views import Viewfrom Crypto.Cipher import AESfrom Crypto.Util.Padding import padfrom django.contrib.auth.hashers import check_password, make_passwordimport concurrent.futuresfrom Controller.CheckUserData import DataValidfrom Model.models import Device_User, CountryModelfrom Object.RedisObject import RedisObjectfrom Object.ResponseObject import ResponseObjectimport base64import hmacimport hashlibimport osimport jsonfrom Ansjer.config import SHOPIFY_CONFIGfrom Service.CommonService import CommonServiceclass ShopifyMultipass:    @staticmethod    def generate_multipass_token(secret, customer_data):        """        使用指定的密钥对加密并签名JSON数据,返回Base64编码的Multipass令牌        """        # 第一步:将客户数据转换为JSON格式        json_data = json.dumps(customer_data)        # 第二步:生成加密密钥和签名密钥        hash_digest = hashlib.sha256(secret.encode()).digest()        encryption_key = hash_digest[:16]  # 128位加密密钥        signature_key = hash_digest[16:32]  # 128位签名密钥        # 第三步:加密JSON数据        iv = os.urandom(16)  # 随机初始化向量        cipher = AES.new(encryption_key, AES.MODE_CBC, iv)        ciphertext = cipher.encrypt(pad(json_data.encode(), AES.block_size))        # 第四步:签名加密数据        data_to_sign = iv + ciphertext        signature = hmac.new(signature_key, data_to_sign, hashlib.sha256).digest()        # 第五步:Base64编码        multipass_token = base64.urlsafe_b64encode(iv + ciphertext + signature).decode()        return multipass_token    @staticmethod    def search_customer_by_email(store_name, access_token, email):        # 设置请求URL        url = f"https://{store_name}.myshopify.com/admin/api/2024-10/customers/search.json"        params = {            "query": f"email:{email}"        }        # 设置请求头        headers = {            "X-Shopify-Access-Token": access_token,        }        # 发送GET请求        response = requests.get(url, headers=headers, params=params)        # 返回响应的JSON数据        return response.json()class ShopifyView(View):    def get(self, request, *args, **kwargs):        request.encoding = 'utf-8'        operation = kwargs.get('operation')        request_dict = request.GET        return self.validation(request, request_dict, operation)    def post(self, request, *args, **kwargs):        request.encoding = 'utf-8'        operation = kwargs.get('operation')        request_dict = request.POST        return self.validation(request, request_dict, operation)    def validation(self, request, request_dict, operation):        language = request_dict.get('language', 'cn')        response = ResponseObject(language)        if operation == 'shopifyLogin':            return self.shopify_login(request_dict, response)        elif operation == 'shopifyRegister':            return self.shopify_register(request_dict, response)        elif operation == 'searchCustomer': # 查询APP注册账号情况            return self.search_customer(request_dict, response)        elif operation == 'searchAccount': # 官网检测账号接口            return self.search_account(request_dict, response)        else:            return response.json(414)    @staticmethod    def shopify_login(request_dict, response):        email = request_dict.get("email", None)        password = request_dict.get("password", None)        account_region = request_dict.get("accountRegion", "")        account_iso2 = request_dict.get("accountIso2", "")        shopify_country = request_dict.get("shopifyCountry", "")        if not all([email, password]):            return response.json(444)        user_qs = Device_User.objects.filter(Q(username=email) | Q(userEmail=email))        if not user_qs.exists():            return response.json(104)        users = user_qs.values(            'role__rid', 'role__roleName', 'userID', 'NickName',            'username', 'userEmail', 'phone', 'password', 'userIconPath'        )[0]        if not check_password(password, users['password']):            return response.json(111)        # 获取当前时间并格式化时间戳        now = datetime.now(pytz.timezone('America/New_York'))        timestamp = now.strftime('%Y-%m-%dT%H:%M:%S%z')        timestamp = timestamp[:-2] + ':' + timestamp[-2:]        customer_data = {            "email": email,            "created_at": timestamp,        }        # 定义默认配置键        secret_key = "eu_multipass_secret"        store_name_key = "eu_store_name"        # 根据条件选择配置键        if shopify_country:            secret_key = f"{shopify_country}_multipass_secret"            store_name_key = f"{shopify_country}_store_name"        elif account_region == "us" and account_iso2 == "jp":            secret_key = "jp_multipass_secret"            store_name_key = "jp_store_name"        elif account_region == "us":            secret_key = "us_multipass_secret"            store_name_key = "us_store_name"        elif account_region == "eu" and account_iso2 == "de":            secret_key = "de_multipass_secret"            store_name_key = "de_store_name"        elif account_region == "eu" and account_iso2 == "uk":            secret_key = "uk_multipass_secret"            store_name_key = "uk_store_name"        # 获取配置并生成重定向URL        multipass_secret = SHOPIFY_CONFIG[secret_key]        store_name = SHOPIFY_CONFIG[store_name_key]        token = ShopifyMultipass.generate_multipass_token(multipass_secret, customer_data)        redirect_url = f"https://{store_name}.zositech.com/account/login/multipass/{token}"        return response.json(0, redirect_url)    @staticmethod    def shopify_register(request_dict, response):        email = request_dict.get("email", None)        password = request_dict.get("password", None)        authcode = request_dict.get("authCode", None)        if not all([email, password, authcode]):            return response.json(444)        reds = RedisObject()        identifyingCode = reds.get_data(key=email + '_identifyingCode')        # 判断验证码是否过期        if identifyingCode is False:            return response.json(120)        # 验证码是否正确        if authcode != identifyingCode:            return response.json(121)        # 注册        if Device_User.objects.filter(Q(username=email) | Q(userEmail=email)).exists():            return response.json(103)        # 创建用户        password = make_password(password)        new_userID = CommonService.getUserID(μs=False, setOTAID=True)        user_data = {            "username": email,            "NickName": email,            "userEmail": email,            "password": password,            "userID": new_userID,            "is_active": True,            "user_isValid": True,        }        Device_User.objects.create(**user_data)        return response.json(0)    def search_account(self, request_dict, response):        email = request_dict.get("email")        if not email:            return response.json(444)        store_configs = [            ("us", SHOPIFY_CONFIG["us_store_name"], SHOPIFY_CONFIG["us_token"]),            ("eu", SHOPIFY_CONFIG["eu_store_name"], SHOPIFY_CONFIG["eu_token"]),            ("de", SHOPIFY_CONFIG["de_store_name"], SHOPIFY_CONFIG["de_token"]),            ("uk", SHOPIFY_CONFIG["uk_store_name"], SHOPIFY_CONFIG["uk_token"]),            ("jp", SHOPIFY_CONFIG["jp_store_name"], SHOPIFY_CONFIG["jp_token"]),        ]        def search_customer(store_name, token):            return ShopifyMultipass.search_customer_by_email(store_name, token, email)        try:            shopify_results = {}            with concurrent.futures.ThreadPoolExecutor() as executor:                future_to_country = {executor.submit(search_customer, store_name, token): country for                                     country, store_name, token in store_configs}                for future in concurrent.futures.as_completed(future_to_country):                    country = future_to_country[future]                    shopify_results[country] = future.result()            shopify_country = next((country for country, result in shopify_results.items() if result["customers"]), "")            account_country = self.call_search_customer(email)            servers_continent = "us" if account_country["us"] else "eu" if account_country["eu"] else ""            if servers_continent:                account_region_list = []                if account_country.get("us"):                    account_region_list.append({                        "region": "us",                        "url": "https://www.dvema.com/shopify/shopifyLogin",                        "accountCountry": account_country["us"],                        "shopifyCountry": shopify_country                    })                if account_country.get("eu"):                    account_region_list.append({                        "region": "eu",                        "url": "https://api.zositeche.com/shopify/shopifyLogin",                        "accountCountry": account_country["eu"],                        "shopifyCountry": shopify_country                    })                return response.json(0, {"accountStatus": 3, "accountRegionList": account_region_list})            elif shopify_country:                if shopify_country == "eu":                    url = "https://eu.zositech.com/account/login"                elif shopify_country == "jp":                    url = "https://www.zosi.jp/account/login"                elif shopify_country == "de":                    url = "https://www.zositech.de/account/login"                elif shopify_country == "uk":                    url = "https://www.zositech.co.uk/account/login"                else:                    url = "https://www.zositech.com/account/login"                return response.json(0, {"accountStatus": 2, "url": url})            else:                url = "注册链接"                return response.json(0, {"accountStatus": 1, "url": url})        except Exception as e:            print(e)            return response.json(500, 'error_line:{}, error_msg:{}'.format(e.__traceback__.tb_lineno, repr(e)))    @staticmethod    def call_search_customer(email):        urls = {            "us": "https://test.zositechc.cn/shopify/searchCustomer",            "eu": "https://test.zositechc.cn/shopify/searchCustomer"        }        params = {"email": email}  # Use the provided email parameter        customer_region = {}        def fetch_customer(region, url):            try:                response = requests.get(url=url, params=params)                response.raise_for_status()  # Raise an error for bad responses                customer_country = response.json().get("result", None)                return region, customer_country if not all(customer_country) else None            except requests.RequestException:                return region, None        with concurrent.futures.ThreadPoolExecutor() as executor:            future_to_region = {executor.submit(fetch_customer, region, url): region for region, url in urls.items()}            for future in concurrent.futures.as_completed(future_to_region):                region, customer_country = future.result()                customer_region[region] = customer_country        return customer_region    @staticmethod    def search_customer(request_dict, response):        email = request_dict.get("email")        user_qs = Device_User.objects.filter(Q(username=email) | Q(userEmail=email))        if not user_qs.exists():            return response.json(104)        user_region_id = user_qs.values_list('region_country', flat=True).first()        country_code = CountryModel.objects.filter(id=user_region_id).values_list("country_code", flat=True).first()        return response.json(0, country_code)
 |