jbot.py 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. from flask import Flask, request, abort
  2. import copy
  3. from linebot import (
  4. LineBotApi, WebhookHandler
  5. )
  6. from linebot.exceptions import (
  7. InvalidSignatureError
  8. )
  9. from linebot.models import (
  10. MessageEvent, TextMessage,ImageSendMessage, TextSendMessage,FlexSendMessage, TemplateSendMessage,CarouselTemplate,ConfirmTemplate,PostbackAction,MessageAction,CarouselColumn,URIAction
  11. )
  12. import json
  13. import codecs
  14. #colors=[{'c1':}]
  15. ## json editor : https://jsonformatter.org/json-editor
  16. fr=codecs.open('/home/jared/src/pi/bubble.json','r','utf-8')
  17. lines=fr.readlines()
  18. content=' '.join(lines)
  19. fr.close()
  20. objelmt=json.loads(content)
  21. objelmt['body']['contents'][0]['contents'][0]['text']='this is a test'
  22. objelmt['header']['contents'][2]['contents'][0]['backgroundColor']='#0D8186'
  23. objelmt['header']['contents'][2]['backgroundColor']='#9FD8E36E'
  24. objelmt['header']['backgroundColor']='#27ACB2'
  25. ##7D51E4
  26. objelmt2=copy.deepcopy(objelmt)
  27. objelmt2['header']['contents'][2]['contents'][0]['backgroundColor']='#7D51E4'
  28. objelmt2['header']['contents'][2]['backgroundColor']='#9FD8E36E'
  29. objelmt2['header']['backgroundColor']='#A17DF5'
  30. ##7D51E4
  31. objelmt3=copy.deepcopy(objelmt)
  32. objelmt3['header']['contents'][2]['contents'][0]['backgroundColor']='#DE5658'
  33. objelmt3['header']['contents'][2]['backgroundColor']='#FAD2A76E'
  34. objelmt3['header']['backgroundColor']='#FF6B6E'
  35. objelmt4=copy.deepcopy(objelmt)
  36. objelmt4['header']['contents'][2]['contents'][0]['backgroundColor']='#0367D3'
  37. objelmt4['header']['contents'][2]['backgroundColor']='#FAD2A76E'
  38. objelmt4['header']['backgroundColor']='#2387F3'
  39. objelmt5=copy.deepcopy(objelmt)
  40. objelmt5['header']['contents'][2]['contents'][0]['backgroundColor']='#FFC107'
  41. objelmt5['header']['contents'][2]['backgroundColor']='#FAD2A76E'
  42. objelmt5['header']['backgroundColor']='#FFE127'
  43. objelmt6=copy.deepcopy(objelmt)
  44. objelmt6['header']['contents'][2]['contents'][0]['backgroundColor']='#343A40'
  45. objelmt6['header']['contents'][2]['backgroundColor']='#FAD2A76E'
  46. objelmt6['header']['backgroundColor']='#545A60'
  47. objelmt7=copy.deepcopy(objelmt)
  48. objelmt7['header']['contents'][2]['contents'][0]['backgroundColor']='#17A2B8'
  49. objelmt7['header']['contents'][2]['backgroundColor']='#FAD2A76E'
  50. objelmt7['header']['backgroundColor']='#37C2D8'
  51. jsobj={"type": "carousel", "contents": [objelmt,objelmt2,objelmt3,objelmt4,objelmt5,objelmt6,objelmt7]}
  52. app = Flask(__name__)
  53. line_bot_api = LineBotApi('FvP2AkKj3FSuTjY8Jhwn23DPIb38yDZBliLrDjRA8j+UOQPku+kH2Bz2coDFl4gruRAiLuHuBbtRpILXlN54zJ+bWF5IwU86FClG47VZxCcDcAkhwqCqjYi/Ju7dBzlg963d9CV1KiiBwoiqvV6J7AdB04t89/1O/w1cDnyilFU=')
  54. handler = WebhookHandler('58a73d69c3ad6416e0b465e64c30526a')
  55. #line_bot_api = LineBotApi('YOUR_CHANNEL_ACCESS_TOKEN')
  56. #handler = WebhookHandler('YOUR_CHANNEL_SECRET')
  57. @app.route("/callback", methods=['POST','GET'])
  58. def callback():
  59. # get X-Line-Signature header value
  60. signature = request.headers['X-Line-Signature']
  61. # get request body as text
  62. body = request.get_data(as_text=True)
  63. app.logger.info("Request body: " + body)
  64. print("Request body: " + body)
  65. # handle webhook body
  66. try:
  67. handler.handle(body, signature)
  68. except InvalidSignatureError:
  69. print("Invalid signature. Please check your channel access token/channel secret.")
  70. abort(400)
  71. return 'OK',200
  72. @app.route('/', methods=['GET'])
  73. def serve():
  74. return "Hello world", 200
  75. @handler.add(MessageEvent, message=TextMessage)
  76. def handle_message(event):
  77. print(event.message.text)
  78. if event.message.text=='業績':
  79. line_bot_api.reply_message(
  80. event.reply_token,
  81. TextSendMessage(text='您本月營收為9,287元'))
  82. if event.message.text=='新貨':
  83. line_bot_api.reply_message(
  84. event.reply_token,
  85. TextSendMessage(text='寶貝的毛巾該換囉! \
  86. 小朋友開學必備!家中必備! \
  87. 這款小方巾,不論是洗臉、嬰兒擦口水 \
  88. 或是帶去學校當手帕都很適合 '))
  89. if event.message.text=='防蚊':
  90. url='https://pic.pimg.tw/youwin721/1593748433-4270703895-g.png'
  91. line_bot_api.reply_message(
  92. event.reply_token,
  93. ImageSendMessage(url,url))
  94. if event.message.text=='華 地址':
  95. line_bot_api.reply_message(
  96. event.reply_token,
  97. TextSendMessage(text='林曉華的收件地址是: 110台北市信義區嘉興街235號'))
  98. if event.message.text=='AA':
  99. confirm_template_message = TemplateSendMessage(
  100. alt_text='Confirm template',
  101. template=ConfirmTemplate(
  102. text='Are you sure?',
  103. actions=[
  104. PostbackAction(
  105. label='postback',
  106. display_text='postback text',
  107. data='action=buy&itemid=1'
  108. ),
  109. MessageAction(
  110. label='message',
  111. text='message text'
  112. )
  113. ]
  114. )
  115. )
  116. line_bot_api.reply_message(event.reply_token,confirm_template_message)
  117. elif event.message.text=='cc':
  118. flex_message = FlexSendMessage(
  119. alt_text='hello',
  120. contents=jsobj
  121. )
  122. line_bot_api.reply_message(event.reply_token,flex_message)
  123. elif event.message.text=='BB':
  124. carousel_template_message = TemplateSendMessage(
  125. alt_text='Carousel template',
  126. template=CarouselTemplate(
  127. columns=[
  128. CarouselColumn(
  129. thumbnail_image_url='https://github.githubassets.com/images/modules/site/logos/ibm-logo.png',
  130. title='this is menu1',
  131. text='description1',
  132. actions=[
  133. PostbackAction(
  134. label='postback1',
  135. display_text='postback text1',
  136. data='action=buy&itemid=1'
  137. ),
  138. MessageAction(
  139. label='message1',
  140. text='message text1'
  141. ),
  142. URIAction(
  143. label='uri1',
  144. uri='http://example.com/1'
  145. )
  146. ]
  147. ),
  148. CarouselColumn(
  149. thumbnail_image_url='https://github.githubassets.com/images/modules/site/logos/ibm-logo.png',
  150. title='this is menu2',
  151. text='description2',
  152. actions=[
  153. PostbackAction(
  154. label='postback2',
  155. display_text='postback text2',
  156. data='action=buy&itemid=2'
  157. ),
  158. MessageAction(
  159. label='message2',
  160. text='message text2'
  161. ),
  162. URIAction(
  163. label='uri2',
  164. uri='http://example.com/2'
  165. )
  166. ]
  167. )
  168. ]
  169. )
  170. )
  171. line_bot_api.reply_message(event.reply_token,carousel_template_message)
  172. else:
  173. line_bot_api.reply_message(
  174. event.reply_token,
  175. TextSendMessage(text=event.message.text))
  176. if __name__ == "__main__":
  177. app.run(host='0.0.0.0', port=443,ssl_context=('/etc/letsencrypt/live/ptt.cx/fullchain.pem', '/etc/letsencrypt/live/ptt.cx/privkey.pem'))
  178. # app.run(host='0.0.0.0', port=14404,ssl_context=('/tmp/cert.pem','/tmp/chain.pem' ))