main.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. def fake_traffic(jsdict):
  35. print('im here')
  36. jsdict['totalVisits'] = jsdict['totalVisits']*fake_traffic_weighted
  37. for k,v in jsdict.items():
  38. print(jsdict['EstimatedMonthlyVisits'])
  39. jsdict['EstimatedMonthlyVisits'][k]=int(float(v)*fake_traffic_weighted)
  40. jsdict['CountryRank']-=fake_rank_plus
  41. jsdict['GlobalRank']-=fake_rank_plus*66
  42. return jsdict
  43. @app.get("/index")
  44. async def index():
  45. return FileResponse('index.html')
  46. @app.get("/echarts.min.js")
  47. async def index():
  48. return FileResponse('echarts.min.js')
  49. @app.get("/reset.css")
  50. async def index():
  51. return FileResponse('reset.css')
  52. @app.get("/main.css")
  53. async def index():
  54. return FileResponse('main.css')
  55. @app.post("/dm")
  56. async def get_domain(req:q_req):
  57. url = "https://similarweb2.p.rapidapi.com/pageoverview"
  58. domain_name=req.domain_name
  59. if 'http' not in domain_name:
  60. domain_name='http://'+domain_name
  61. domain_name = domain_name.replace('%3A',':')
  62. domain_name = domain_name.replace('%2F','/')
  63. print(domain_name)
  64. querystring = {"website":domain_name}
  65. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
  66. statement = 'SELECT * FROM storage_similar_web where SiteName ="'+ req.domain_name+'"'
  67. jsdict = None
  68. for row in db.query(statement):
  69. jsdict = {'SiteName':row['SiteName'],'Description':row['Description'],'GlobalRank':row['GlobalRank']
  70. ,'Title':row['Title'],'Category':row['Category'],'CountryRank':row['CountryRank'],'EstimatedMonthlyVisits':eval(row['EstimatedMonthlyVisits'])
  71. ,'totalVisits':row['totalVisits']}
  72. if jsdict==None:
  73. headers = {
  74. "x-rapidapi-key": "6dd30886e0msh7aefc9a0a794398p1896f2jsn275c45475609",
  75. "x-rapidapi-host": "similarweb2.p.rapidapi.com"
  76. }
  77. '''
  78. js=''
  79. for i in range(0,50):
  80. print('Try'+str(i)+'times')
  81. while True:
  82. try:
  83. response = requests.request("GET", url, headers=headers, params=querystring)
  84. js=json.loads(response.text)
  85. except:
  86. continue
  87. break
  88. '''
  89. response = requests.request("GET", url, headers=headers, params=querystring)
  90. print(response)
  91. js=json.loads(response.text)
  92. jsdict={'SiteName':js['name'],'Description':js['siteDescription'],'GlobalRank':js['globalRank'],'Title':js['name'],'Category':js['categoryRank']['taxonomy'],'CountryRank':js['countryRank']['rank']}
  93. url = "https://similarweb2.p.rapidapi.com/trafficoverview"
  94. querystring = {"website":domain_name}
  95. response = requests.request("GET", url, headers=headers, params=querystring)
  96. js2=json.loads(response.text)
  97. #print(response.text)
  98. jsdict['totalVisits'] = js2['engagement']['totalVisits']
  99. jsdict['EstimatedMonthlyVisits']=js2['monthlyVisitsEstimate']
  100. log_table = db['storage_similar_web']
  101. log_table.insert({'SiteName':jsdict['SiteName'],'Description':jsdict['Description'],'GlobalRank':jsdict['GlobalRank']
  102. ,'Title':jsdict['Title'],'Category':jsdict['Category'],'CountryRank':jsdict['CountryRank'],'EstimatedMonthlyVisits':jsdict['EstimatedMonthlyVisits']
  103. ,'totalVisits':jsdict['totalVisits']})
  104. if 'hhh' in domain_name:
  105. jsdict = fake_traffic(jsdict)
  106. return JSONResponse(content=jsdict)