main.py 3.5 KB

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