Spaces:
Running
Running
import os, re, time, json, datetime, requests, gradio as gr | |
# โโโโโโโโโโโโโโโโโโโโโ 1. Vercel API โโโโโโโโโโโโโโโโโโโโโ | |
TOKEN = os.getenv("SVR_TOKEN") | |
TEAM = os.getenv("VERCEL_TEAM_ID") | |
if not TOKEN: | |
raise EnvironmentError("SVR_TOKEN ํ๊ฒฝ๋ณ์๋ฅผ ์ค์ ํ์ธ์.") | |
API = "https://api.vercel.com" | |
HEAD = {"Authorization": f"Bearer {TOKEN}"} | |
print(f"API ํ ํฐ: {TOKEN[:4]}... (๋ง์คํน๋จ)") | |
print(f"ํ ID: {TEAM if TEAM else '์์'}") | |
# โโโโโโโโโโโโโโโโโโโโโ 2. BEST ๋ฐ์ดํฐ โโโโโโโโโโโโโโโโโโโโ | |
BEST_FILE, PER_PAGE = "best_games.json", 48 | |
def _init_best(): | |
if not os.path.exists(BEST_FILE): | |
json.dump([], open(BEST_FILE, "w")) | |
def _load_best(): | |
try: | |
data = json.load(open(BEST_FILE)) | |
for it in data: | |
if "ts" not in it: | |
it["ts"] = int(it.get("timestamp", time.time())) | |
return data | |
except Exception as e: | |
print(f"BEST ๋ฐ์ดํฐ ๋ก๋ ์ค๋ฅ: {e}") | |
return [] | |
# โโโโโโโโโโโโโโโโโโโโโ 3. ๋ฐฐํฌ ๋ณดํธ ์ค์ ๊ด๋ฆฌ โโโโโโโโโโโโโโโโโ | |
def get_projects(): | |
"""Vercel ํ๋ก์ ํธ ๋ชฉ๋ก์ ๊ฐ์ ธ์ต๋๋ค.""" | |
try: | |
params = {"limit": 100} # ์ต๋ 100๊ฐ ํ๋ก์ ํธ | |
if TEAM: | |
params["teamId"] = TEAM | |
print(f"ํ๋ก์ ํธ ๋ชฉ๋ก ๊ฐ์ ธ์ค๋ ์ค...") | |
resp = requests.get(f"{API}/v10/projects", headers=HEAD, params=params) | |
if resp.status_code != 200: | |
print(f"ํ๋ก์ ํธ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ ์คํจ: {resp.status_code}") | |
return [] | |
projects = resp.json().get("projects", []) | |
print(f"{len(projects)}๊ฐ์ ํ๋ก์ ํธ๋ฅผ ์ฐพ์์ต๋๋ค.") | |
return projects | |
except Exception as e: | |
print(f"ํ๋ก์ ํธ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ ์ค๋ฅ: {e}") | |
return [] | |
def disable_protection(project_id): | |
"""ํน์ ํ๋ก์ ํธ์ ๋ฐฐํฌ ๋ณดํธ๋ฅผ ๋นํ์ฑํํฉ๋๋ค.""" | |
try: | |
url = f"{API}/v9/projects/{project_id}/protection" | |
payload = { | |
"protection": { | |
"preview": { | |
"enabled": False | |
}, | |
"production": { | |
"enabled": False | |
} | |
} | |
} | |
print(f"ํ๋ก์ ํธ {project_id}์ ๋ณดํธ ์ค์ ๋นํ์ฑํ ์ค...") | |
resp = requests.put(url, headers=HEAD, json=payload) | |
if resp.status_code in [200, 201, 204]: | |
print(f"ํ๋ก์ ํธ {project_id}์ ๋ณดํธ ์ค์ ์ด ์ฑ๊ณต์ ์ผ๋ก ๋นํ์ฑํ๋์์ต๋๋ค.") | |
return True | |
else: | |
print(f"๋ณดํธ ์ค์ ๋ณ๊ฒฝ ์คํจ: {resp.status_code}, {resp.text[:200] if hasattr(resp, 'text') else ''}") | |
return False | |
except Exception as e: | |
print(f"๋ณดํธ ์ค์ ๋ณ๊ฒฝ ์ค๋ฅ: {str(e)}") | |
return False | |
def add_exception_domain(project_id, domain): | |
"""ํน์ ํ๋ก์ ํธ์ ๋ณดํธ ์์ธ ๋๋ฉ์ธ์ ์ถ๊ฐํฉ๋๋ค.""" | |
try: | |
url = f"{API}/v9/projects/{project_id}/protection" | |
# ๋จผ์ ํ์ฌ ๋ณดํธ ์ค์ ๊ฐ์ ธ์ค๊ธฐ | |
get_resp = requests.get(url, headers=HEAD) | |
if get_resp.status_code != 200: | |
print(f"๋ณดํธ ์ค์ ๊ฐ์ ธ์ค๊ธฐ ์คํจ: {get_resp.status_code}") | |
return False | |
current = get_resp.json() | |
# ์์ธ ๋๋ฉ์ธ ๋ชฉ๋ก์ ์ถ๊ฐ | |
exceptions = current.get("protection", {}).get("preview", {}).get("exceptions", []) | |
if domain not in exceptions: | |
exceptions.append(domain) | |
# ์ ๋ฐ์ดํธ๋ ์ค์ ์ ์ฉ | |
payload = { | |
"protection": { | |
"preview": { | |
"enabled": True, | |
"exceptions": exceptions | |
} | |
} | |
} | |
print(f"ํ๋ก์ ํธ {project_id}์ ์์ธ ๋๋ฉ์ธ {domain} ์ถ๊ฐ ์ค...") | |
resp = requests.put(url, headers=HEAD, json=payload) | |
if resp.status_code in [200, 201, 204]: | |
print(f"ํ๋ก์ ํธ {project_id}์ ์์ธ ๋๋ฉ์ธ์ด ์ฑ๊ณต์ ์ผ๋ก ์ถ๊ฐ๋์์ต๋๋ค.") | |
return True | |
else: | |
print(f"์์ธ ๋๋ฉ์ธ ์ถ๊ฐ ์คํจ: {resp.status_code}, {resp.text[:200] if hasattr(resp, 'text') else ''}") | |
return False | |
except Exception as e: | |
print(f"์์ธ ๋๋ฉ์ธ ์ถ๊ฐ ์ค๋ฅ: {str(e)}") | |
return False | |
def bypass_all_protection(): | |
"""๋ชจ๋ ํ๋ก์ ํธ์ ๋ฐฐํฌ ๋ณดํธ๋ฅผ ๋นํ์ฑํํฉ๋๋ค.""" | |
projects = get_projects() | |
if not projects: | |
print("ํ๋ก์ ํธ๊ฐ ์๊ฑฐ๋ ๊ฐ์ ธ์ค์ง ๋ชปํ์ต๋๋ค.") | |
return False | |
success_count = 0 | |
for project in projects: | |
project_id = project.get("id") | |
name = project.get("name", "์ ์ ์์") | |
if project_id: | |
print(f"ํ๋ก์ ํธ ์ฒ๋ฆฌ ์ค: {name} ({project_id})") | |
if disable_protection(project_id): | |
success_count += 1 | |
print(f"์ด {len(projects)}๊ฐ ์ค {success_count}๊ฐ ํ๋ก์ ํธ์ ๋ณดํธ ์ค์ ์ ๋นํ์ฑํํ์ต๋๋ค.") | |
return success_count > 0 | |
# โโโโโโโโโโโโโโโโโโโโโ 4. ๋ฐฐํฌ ๋ชฉ๋ก ๊ฐ์ ธ์ค๊ธฐ โโโโโโโโโโโโโโโโโ | |
def fetch_all(limit=200, auto_bypass=True): | |
""" | |
Vercel API v6/deployments๋ฅผ ์ฌ์ฉํ์ฌ ๋ชจ๋ ์ค๋น๋ ๋ฐฐํฌ๋ฅผ ๊ฐ์ ธ์ค๊ณ , | |
ํ์์ ๋ฐ๋ผ ์๋์ผ๋ก ๋ณดํธ ์ฐํ ์ค์ ์ ์ ์ฉํฉ๋๋ค. | |
""" | |
try: | |
# ์๋ ๋ณดํธ ์ฐํ ์ ์ฉ (์ ํ ์ฌํญ) | |
if auto_bypass: | |
print("๋ชจ๋ ํ๋ก์ ํธ์ ๋ํ ๋ณดํธ ์ค์ ์๋ ์ฐํ๋ฅผ ์๋ํฉ๋๋ค...") | |
bypass_all_protection() | |
# API ํ๋ผ๋ฏธํฐ ์ค์ | |
params = {"limit": limit, "state": "READY"} | |
if TEAM: | |
params["teamId"] = TEAM | |
print(f"Vercel API ํธ์ถ (๋ฐฐํฌ): {API}/v6/deployments (params={params})") | |
resp = requests.get(f"{API}/v6/deployments", | |
headers=HEAD, params=params, timeout=30) | |
if resp.status_code != 200: | |
print(f"API ์๋ต ์ค๋ฅ: {resp.status_code}, {resp.text[:200] if hasattr(resp, 'text') else ''}") | |
return [] | |
data = resp.json() | |
if "deployments" not in data: | |
print(f"API ์๋ต์ deployments ํ๋๊ฐ ์์ต๋๋ค: {str(data)[:200]}...") | |
return [] | |
deployments = data.get("deployments", []) | |
print(f"{len(deployments)}๊ฐ์ ๋ฐฐํฌ๋ฅผ ์ฐพ์์ต๋๋ค") | |
# ๋๋ฉ์ธ ํจํด: vercel.app์ผ๋ก ๋๋๋์ง ํ์ธ | |
domain_pat = re.compile(r"\.vercel\.app$", re.I) | |
# ์ค๋ณต ๋ฐฉ์ง๋ฅผ ์ํ ์ธํธ (์ด๋ฏธ ์ฒ๋ฆฌํ URL) | |
processed_urls = set() | |
processed_projects = set() | |
games = [] | |
for deployment in deployments: | |
# URL ํ์ธ | |
url = deployment.get("url", "") | |
project_id = deployment.get("projectId") | |
# ์ด๋ฏธ ์ฒ๋ฆฌํ URL์ ๊ฑด๋๋ | |
if url in processed_urls: | |
continue | |
processed_urls.add(url) | |
# vercel.app ๋๋ฉ์ธ์ธ์ง ํ์ธ | |
if url and domain_pat.search(url): | |
# ํ๋ก์ ํธ๋ณ ๋ณดํธ ์ฐํ ์ค์ (๊ฐ ํ๋ก์ ํธ๋น ํ ๋ฒ๋ง) | |
if auto_bypass and project_id and project_id not in processed_projects: | |
disable_protection(project_id) | |
processed_projects.add(project_id) | |
# ํ์์คํฌํ ์ฒ๋ฆฌ | |
created_time = deployment.get("created") | |
if created_time: | |
try: | |
ts = int(created_time / 1000) | |
except: | |
ts = int(time.time()) | |
else: | |
ts = int(time.time()) | |
# ์ด๋ฆ์ projectId๊ฐ ์์ผ๋ฉด ๋ณด๊ธฐ ์ข๊ฒ ๋ณํ | |
name = deployment.get("name", "(์ ๋ชฉ ์์)") | |
name = re.sub(r"-[a-f0-9]{9}$", "", name) # projectId ๋ถ๋ถ ์ ๊ฑฐ | |
games.append({ | |
"title": name, | |
"url": f"https://{url}", | |
"ts": ts, | |
"projectId": project_id, | |
"deploymentId": deployment.get("uid", "") | |
}) | |
print(f"๋ฐฐํฌ ์ถ๊ฐ: {name} - https://{url}") | |
print(f"์ด {len(games)}๊ฐ์ ์ ํจํ ๋ฐฐํฌ๋ฅผ ํํฐ๋งํ์ต๋๋ค") | |
return sorted(games, key=lambda x: x["ts"], reverse=True) | |
except Exception as e: | |
print(f"Vercel API ์ค๋ฅ: {str(e)}") | |
import traceback | |
traceback.print_exc() | |
return [] | |
# โโโโโโโโโโโโโโโโโโโโโ 5. ํ์ด์ง๋ค์ด์ โโโโโโโโโโโโโโโโโโโ | |
def page(lst, pg): | |
s=(pg-1)*PER_PAGE; e=s+PER_PAGE | |
total=(len(lst)+PER_PAGE-1)//PER_PAGE | |
return lst[s:e], total | |
# โโโโโโโโโโโโโโโโโโโโโ 6. HTML 3-์ด ๊ทธ๋ฆฌ๋ โโโโโโโโโโโโโโโ | |
def html(cards, pg, total): | |
if not cards: | |
return "<div style='text-align:center;padding:70px;color:#555;'>ํ์ํ ๋ฐฐํฌ๊ฐ ์์ต๋๋ค.</div>" | |
css=r""" | |
<style> | |
body{margin:0;font-family:Poppins,sans-serif;background:linear-gradient(135deg,#C5E8FF 0%,#FFD6E0 100%);} | |
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px 24px;margin:0 20px 60px;} | |
@media(max-width:1024px){.grid{grid-template-columns:repeat(2,1fr);} } | |
@media(max-width:640px){ .grid{grid-template-columns:1fr;} } | |
.card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.08);transition:.3s} | |
.card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.12)} | |
.hdr{padding:20px 24px;background:rgba(255,255,255,.75);backdrop-filter:blur(8px);border-bottom:1px solid #eee;} | |
.ttl{margin:0;font-size:1.15rem;font-weight:700;color:#333;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} | |
.date{margin-top:4px;font-size:.85rem;color:#777;} | |
.frame{position:relative;width:100%;padding-top:60%;overflow:hidden;} | |
.frame iframe{position:absolute;top:0;left:0;width:142.857%;height:142.857%; | |
transform:scale(.7);transform-origin:top left;border:0;} | |
.foot{padding:14px 24px;background:rgba(255,255,255,.85);backdrop-filter:blur(8px);text-align:right;} | |
.link{font-size:.85rem;font-weight:600;color:#4a6dd8;text-decoration:none;} | |
.cnt{text-align:center;font-size:.85rem;color:#555;margin:10px 0 40px;} | |
</style>""" | |
h=css+"<div class='grid'>" | |
for c in cards: | |
date=datetime.datetime.fromtimestamp(int(c["ts"])).strftime("%Y-%m-%d") | |
h+=f""" | |
<div class='card'> | |
<div class='hdr'><p class='ttl'>{c['title']}</p><p class='date'>{date}</p></div> | |
<div class='frame'><iframe src="{c['url']}" loading="lazy" | |
allow="accelerometer; camera; encrypted-media; gyroscope;"></iframe></div> | |
<div class='foot'><a class='link' href="{c['url']}" target="_blank">์๋ณธโ</a></div> | |
</div>""" | |
h+="</div><p class='cnt'>Page "+str(pg)+" / "+str(total)+"</p>" | |
return h | |
# โโโโโโโโโโโโโโโโโโโโโ 7. Gradio Blocks UI โโโโโโโโโโโโโโโ | |
def build(): | |
_init_best() | |
with gr.Blocks(title="Vibe Game Craft", css="body{overflow-x:hidden;}") as demo: | |
gr.Markdown("<h1 style='text-align:center;padding:32px 0 0;color:#333;'>๐ฎ Vibe Game Craft</h1>") | |
with gr.Row(): | |
b_new = gr.Button("NEW", size="sm") | |
b_best = gr.Button("BEST", size="sm") | |
b_prev = gr.Button("โฌ ๏ธ Prev", size="sm") | |
b_next = gr.Button("Next โก๏ธ", size="sm") | |
b_ref = gr.Button("๐ Reload", size="sm") | |
b_bypass = gr.Button("๐ ๋ณดํธ ํด์ ", size="sm", variant="secondary") | |
tab = gr.State("new"); np = gr.State(1); bp = gr.State(1); out = gr.HTML() | |
def show_new(p=1): d,t=page(fetch_all(),p); return html(d,p,t),"new",p | |
def show_best(p=1): d,t=page(_load_best(),p); return html(d,p,t),"best",p | |
def run_bypass(): | |
if bypass_all_protection(): | |
return "โ ๋ชจ๋ ํ๋ก์ ํธ์ ๋ณดํธ ์ค์ ์ด ๋นํ์ฑํ๋์์ต๋๋ค." | |
else: | |
return "โ ์ผ๋ถ ๋๋ ๋ชจ๋ ํ๋ก์ ํธ์ ๋ณดํธ ์ค์ ๋นํ์ฑํ์ ์คํจํ์ต๋๋ค." | |
def prev(t,n,b): | |
if t=="new": n=max(1,n-1); h,_,_=show_new(n); return h,n,b | |
b=max(1,b-1); h,_,_=show_best(b); return h,n,b | |
def nxt(t,n,b): | |
if t=="new": | |
maxp=(len(fetch_all())+PER_PAGE-1)//PER_PAGE | |
n=min(maxp,n+1); h,_,_=show_new(n); return h,n,b | |
maxp=(len(_load_best())+PER_PAGE-1)//PER_PAGE | |
b=min(maxp,b+1); h,_,_=show_best(b); return h,n,b | |
b_new.click(show_new, outputs=[out,tab,np]) | |
b_best.click(show_best,outputs=[out,tab,bp]) | |
b_prev.click(prev, inputs=[tab,np,bp], outputs=[out,np,bp]) | |
b_next.click(nxt, inputs=[tab,np,bp], outputs=[out,np,bp]) | |
b_ref.click(lambda t,n,b: show_new(n)[0] if t=="new" else show_best(b)[0], | |
inputs=[tab,np,bp], outputs=[out]) | |
b_bypass.click(run_bypass, outputs=[out]) | |
demo.load(show_new, outputs=[out,tab,np]) | |
return demo | |
app = build() | |
if __name__ == "__main__": | |
app.launch() |