main.py 4.1 KB

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