File size: 6,540 Bytes
42643f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3a8e465
42643f5
 
 
 
 
 
 
3a8e465
 
42643f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3a8e465
42643f5
 
 
 
 
 
 
 
 
 
3a8e465
42643f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import os
import requests
import json
import time
from qiniu import put_file  
import tempfile
import shutil
import random

API_KEY = os.environ['API_KEY']

headers = {
    "User-Agent": "PexelDance Sdk/1.0",
    'Authorization': 'Bearer %s' % API_KEY,
    'Content-Type': 'application/json'
}

def get_endpoint():
    hosts = [
        "https://api-01.pexeldance.com",
        "https://api-02.pexeldance.com",
        "https://api-03.pexeldance.com",
        "https://api-04.pexeldance.com",
        "https://api-05.pexeldance.com",
        "https://api-06.pexeldance.com",
        "https://api-07.pexeldance.com",
        "https://api-08.pexeldance.com",
        "https://api-09.pexeldance.com",
        "https://api-10.pexeldance.com",
        # "https://api-11.pexeldance.com",
        # "https://api-12.pexeldance.com",
        # "https://api-13.pexeldance.com",
        # "https://api-14.pexeldance.com",
        # "https://api-15.pexeldance.com",
        # "https://api-16.pexeldance.com",
        # "https://api-17.pexeldance.com",
        # "https://api-18.pexeldance.com",
        # "https://api-19.pexeldance.com",
        # "https://api-20.pexeldance.com",
    ]
    return random.choice(hosts)


def get_upload_token(extension="mp4"):
    endpoint = get_endpoint()
    url = endpoint +  "/api/upload/token"

    payload = json.dumps({
    "file_ext": extension,
    })

    response = requests.request("POST", url, headers=headers, data=bytes(payload, "utf-8"))
    if 200<= response.status_code < 300:
        return response.json()
    return None

def upload_file(local_file, file_key, token):
    ret, info = put_file(token, file_key, local_file)
    if info.status_code == 200:
        return ret
    else:
        return None

def confirm_upload(key, name, hash_, fsize, bucket):
    endpoint = get_endpoint()
    url = endpoint +  "/api/upload/confirm"

    payload = json.dumps({
        "key": key,
        "name": name,
        "hash": hash_,
        "fsize": fsize,
        "bucket": bucket,
    })

    response = requests.request("POST", url, headers=headers, data=payload)
    if 200<= response.status_code < 300:
        return response.json()
    return None

def upload_video(file):
    ext = file.split(".")[-1]
    if not os.path.exists(file):
        return False
    token_res = get_upload_token(ext)
    upload_data = token_res.get('data')
    if not upload_data:
        return False
    upload_token = upload_data.get('token')
    if not upload_token:
        return False

    bucket_key = upload_data.get('bucket_key')
    if not bucket_key:
        return False

    ret = upload_file(file, bucket_key, upload_token)
    if not ret:
        return False
    key, name, hash_, fsize, bucket = ret.get('key'), upload_data.get('c_string'), ret.get('hash'), ret.get('fsize'), ret.get('bucket')
    upload_res = confirm_upload(key, name, hash_, fsize, bucket)
    if not upload_res:
        return False
    return upload_res.get('data')
    
def generate(item_id, style_id, width, height, prompt):
    endpoint = get_endpoint()
    url = endpoint +  "/api/job/common"
    payload = json.dumps({
    "user_content": {
        "item_id": item_id,
        "seed": 11111,
        "width": width,
        "height": height,
        "prompt": prompt
    },
    "unit": 3,
    "use_credit_type": "credit",
    "name": style_id
    })
    response = requests.request("POST", url, headers=headers, data=payload)
    if 200<= response.status_code < 300:
        return response.json()
    else:
        return None

def get_job_status(job_id):
    endpoint = get_endpoint()
    url = endpoint +  "/api/job"
    payload = json.dumps({
    "id": job_id
    })
    response = requests.request("GET", url, headers=headers, data=payload)
    if 200<= response.status_code < 300:
        return response.json()
    return None

def get_item_url(_id):
    endpoint = get_endpoint()
    url = endpoint +  "/api/download_item"
    payload = json.dumps({
    "key_id": [
        _id
    ]
    })
    response = requests.request("POST", url, headers=headers, data=payload)
    if 200<= response.status_code < 300:
        return response.json()
    return None

def get_result(job_id):
    endpoint = get_endpoint()
    url = endpoint +  "/api/item/job_id"
    payload = json.dumps({
    "job_id": job_id
    })
    response = requests.request("GET", url, headers=headers, data=payload)
    if 200<= response.status_code < 300:
        return response.json()
    return None

def download_file(url):
    response = requests.get(url, stream=True)
    if response.status_code == 200:
        tmpfile = tempfile.NamedTemporaryFile(delete=False)
        tmpfile.close() 
 
        with open(tmpfile.name, 'wb') as f:
            shutil.copyfileobj(response.raw, f)

        return tmpfile.name 
    else:
        return None

def processing(in_video, width, height, style_id,transfer_duration, prompt):
    videoRes = upload_video(in_video)
    if not videoRes:
        return None
    videoId = videoRes.get('id')
    if not videoId:
        return None
    
    req_access = False
    try_times = 1000
    for i in range(try_times):
        generate_result = generate(videoId, style_id, width, height, prompt)  
        if not generate_result:
            time.sleep(8)
            continue
        jobInfo = generate_result.get('data')
        if not jobInfo:
            time.sleep(8)
            continue
        job_id = jobInfo.get("job_id")
        if job_id:
            req_access = True
            break
    if not req_access:
        raise "too many requests"


    while True:
        jobStatusInfo = get_job_status(job_id)
        js = jobStatusInfo.get('data')
        if js is None:
            return None
        if js.get('status') == "finished":
            break
        elif  js.get('status')  == "failed":
            return None
        time.sleep(10)

    result = get_result(job_id)
    if not result:
        return None
    res_data = result.get('data')
    if not res_data:
        return None
    li = res_data.get('list')
    if len(li) == 0:
        return None
    jobRes = li[0]
    item_id = jobRes.get('id')
    if not item_id:
        return None
    itemDes = get_item_url(item_id)
    itemData = itemDes.get('data')
    if not itemData:
        return None
    signed_urls = itemData.get('signed_urls')
    if len(signed_urls) == 0:
        return None
    item_url = signed_urls[0]   

    file_path = download_file(item_url)
    if not file_path:
        return None
    return file_path