main.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import rpyc
  2. import time
  3. from fastapi import FastAPI
  4. import sys
  5. import os
  6. import dataset
  7. import requests
  8. import datetime
  9. import json
  10. import ast
  11. from fastapi.responses import JSONResponse, FileResponse
  12. from fastapi.middleware.cors import CORSMiddleware
  13. from pydantic import BaseModel
  14. fake_rank_plus = 600
  15. fake_traffic_weighted = 1.3
  16. app = FastAPI()
  17. origins = [
  18. "http://www.googo.org",
  19. "http://www.googo.org:8080",
  20. "http://0.0.0.0:8080",
  21. "http://googo.org:8080",
  22. "http://googo.org",
  23. "http://139.162.121.30"
  24. ]
  25. app.add_middleware(
  26. CORSMiddleware,
  27. allow_origins=origins,
  28. allow_credentials=True,
  29. allow_methods=["*"],
  30. allow_headers=["*"],
  31. )
  32. class q_req(BaseModel):
  33. domain_name: str
  34. @app.get("/index")
  35. async def index():
  36. return FileResponse('index.html')
  37. @app.get("/echarts.min.js")
  38. async def index():
  39. return FileResponse('echarts.min.js')
  40. @app.get("/reset.css")
  41. async def index():
  42. return FileResponse('reset.css')
  43. @app.get("/main.css")
  44. async def index():
  45. return FileResponse('main.css')
  46. @app.post("/dm")
  47. async def get_domain(req:q_req):
  48. url = "https://similarweb2.p.rapidapi.com/pageoverview"
  49. domain_name=req.domain_name
  50. if 'http' not in domain_name:
  51. domain_name='http://'+domain_name
  52. domain_name = domain_name.replace('%3A',':')
  53. domain_name = domain_name.replace('%2F','/')
  54. print(domain_name)
  55. querystring = {"website":domain_name}
  56. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
  57. statement = 'SELECT * FROM storage_similar_web where SiteName ="'+ req.domain_name+'"'
  58. jsdict = None
  59. for row in db.query(statement):
  60. jsdict = {'SiteName':row['SiteName'],'Description':row['Description'],'GlobalRank':row['GlobalRank']
  61. ,'Title':row['Title'],'Category':row['Category'],'CountryRank':row['CountryRank'],'EstimatedMonthlyVisits':eval(row['EstimatedMonthlyVisits'])
  62. ,'totalVisits':row['totalVisits']}
  63. if jsdict==None:
  64. headers = {
  65. "x-rapidapi-key": "6dd30886e0msh7aefc9a0a794398p1896f2jsn275c45475609",
  66. "x-rapidapi-host": "similarweb2.p.rapidapi.com"
  67. }
  68. '''
  69. js=''
  70. for i in range(0,50):
  71. print('Try'+str(i)+'times')
  72. while True:
  73. try:
  74. response = requests.request("GET", url, headers=headers, params=querystring)
  75. js=json.loads(response.text)
  76. except:
  77. continue
  78. break
  79. '''
  80. response = requests.request("GET", url, headers=headers, params=querystring)
  81. print(response)
  82. js=json.loads(response.text)
  83. jsdict={'SiteName':js['name'],'Description':js['siteDescription'],'GlobalRank':js['globalRank'],'Title':js['name'],'Category':js['categoryRank']['taxonomy'],'CountryRank':js['countryRank']['rank']}
  84. url = "https://similarweb2.p.rapidapi.com/trafficoverview"
  85. querystring = {"website":domain_name}
  86. response = requests.request("GET", url, headers=headers, params=querystring)
  87. js2=json.loads(response.text)
  88. #print(response.text)
  89. jsdict['totalVisits'] = js2['engagement']['totalVisits']
  90. jsdict['EstimatedMonthlyVisits']=js2['monthlyVisitsEstimate']
  91. log_table = db['storage_similar_web']
  92. log_table.insert({'SiteName':jsdict['SiteName'],'Description':jsdict['Description'],'GlobalRank':jsdict['GlobalRank']
  93. ,'Title':jsdict['Title'],'Category':jsdict['Category'],'CountryRank':jsdict['CountryRank'],'EstimatedMonthlyVisits':jsdict['EstimatedMonthlyVisits']
  94. ,'totalVisits':jsdict['totalVisits']})
  95. jsdict = fake_traffic(jsdict)
  96. return JSONResponse(content=jsdict)
  97. def fake_traffic(jsdict):
  98. jsdict['totalVisits'] = js['totalVisits']*fake_traffic_weighted
  99. for k,v in jsdict.items():
  100. jsdict['EstimatedMonthlyVisits'][k]=v*fake_traffic_weighted
  101. jsdict['CountryRank']-=fake_rank_plus
  102. jsdict['GlobalRank']-=fake_rank_plus*66
  103. return jsdict