db_router.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. from fastapi import APIRouter
  2. from supabase import create_client, Client
  3. from dotenv import load_dotenv
  4. import os
  5. from datetime import datetime
  6. from random import choice
  7. from openai import OpenAI
  8. client = OpenAI()
  9. load_dotenv()
  10. # supaspace 連線
  11. url: str = os.environ.get('SUPABASE_URL')
  12. key: str = os.environ.get('SUPABASE_KEY')
  13. supabase: Client = create_client(url, key)
  14. dbRouter = APIRouter()
  15. @dbRouter.get("/click")
  16. def add_click_time():
  17. try:
  18. response = supabase.table('click_time').select("*").execute()
  19. click_time = response.data[0]['click_time'] + 1
  20. data, count = supabase.table('click_time') \
  21. .update({'click_time':click_time,'update_time':str(datetime.now())})\
  22. .eq('id', 1)\
  23. .execute()
  24. return {"state":"success","click_time" : click_time}
  25. except Exception as e:
  26. return {"state":str(e)}
  27. @dbRouter.get("/find_brand")
  28. def find_brand(keyword:str = None,language :str = "ch"):
  29. if keyword is None :
  30. data, count = supabase.table('101_brand')\
  31. .select('*')\
  32. .eq("language", language)\
  33. .execute()
  34. result = []
  35. for shop in data[1] :
  36. json = {
  37. "type" : shop["type"],
  38. "info" : shop
  39. }
  40. result.append(json)
  41. return {"state":"success","data" : result}
  42. try :
  43. data, count = supabase.table('101_brand')\
  44. .select('*')\
  45. .eq("language", language)\
  46. .like('tags', f'%{keyword}%')\
  47. .execute()
  48. result = []
  49. for shop in data[1] :
  50. json = {
  51. "type" : shop["type"],
  52. "info" : shop
  53. }
  54. result.append(json)
  55. return {"state":"success","data" : result}
  56. except Exception as e:
  57. return {"state":"fail","message" :str(e)}
  58. @dbRouter.get("/arviews")
  59. def arviews(start:str,end:str,language:str = "ch"):
  60. try :
  61. data, count = supabase.table('101_arviews')\
  62. .select('*')\
  63. .eq('start_loc', start) \
  64. .like('tour_place', f'%{end}%') \
  65. .execute()
  66. result :str
  67. words :str
  68. if len(data[1]) != 0:
  69. if language == "ch" :
  70. result = data[1][0]["url"]
  71. words = data[1][0]["words"]
  72. else:
  73. result = data[1][0]["en_url"]
  74. words = data[1][0]["en_words"]
  75. else :
  76. result = "no this route"
  77. return {"state":"success","url" : result,"words" : words}
  78. except Exception as e:
  79. return {"state":"fail","message" :str(e)}
  80. @dbRouter.get("/static_tickets")
  81. async def static_tickets(is_Chinese : int = None):
  82. try:
  83. data =None
  84. if is_Chinese :
  85. data, count = supabase.table('101_ticket')\
  86. .select('*')\
  87. .in_('id', [1,3,6,7])\
  88. .execute()
  89. else :
  90. data, count = supabase.table('101_ticket')\
  91. .select('*')\
  92. .in_('id', [182,183,180])\
  93. .execute()
  94. result = []
  95. for shop in data[1] :
  96. json = {
  97. "type" : shop["type"],
  98. "info" : shop
  99. }
  100. result.append(json)
  101. return {"state":"success","result" : result}
  102. except Exception as e:
  103. return {"state":"fail","message" :str(e)}
  104. @dbRouter.get("/ad/{type}")
  105. def read_root(type:str,language :str = "ch"):
  106. keyword1 :str
  107. keyword2 :str
  108. if type == "美食伴手禮":
  109. keyword1 = "餐飲"
  110. keyword2 = "伴手禮"
  111. else :
  112. keyword1 = "住宿"
  113. keyword2 = "伴手禮"
  114. data, count = supabase.table('101_brand')\
  115. .select('*')\
  116. .eq("floor","館外")\
  117. .eq("language", language)\
  118. .or_(f"tags.ilike.%{keyword1}%,tags.ilike.%{keyword2}%")\
  119. .execute()
  120. result = data[1]
  121. # 從結果中隨機選擇一筆資料
  122. random_row = choice(result)
  123. #print(random_row)
  124. return {"data": random_row}