coffee_manage.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #啟動和管理項目
  2. from app import create_app
  3. from flask import request
  4. from gevent import pywsgi
  5. # Rita 原本都是 app = Flask(name), 若要建立多個"工廠", 則使用 create_app() 函式(在 __init__.py 中)
  6. app, db, mqtt = create_app()
  7. #mqtt訂閱
  8. @mqtt.on_connect()
  9. def handle_connect(client, userdata, flags, rc):
  10. # Rita MQTT 是以 broker 做分發, subscribe 接收 'Topic' 的資料
  11. # 'AISKY/Coffee/MK-G/b8:27:eb:b4:59:3e/Log' 就是本次的 Topic, 此命名也有 AISKY 公司 Coffee 專案 MK-G ... 這樣的階層關係(不影響 Topic 和 MQTT 傳輸)
  12. mqtt.subscribe('AISKY/Coffee/MK-G/b8:27:eb:b4:59:3e/Log')
  13. #調用日誌訊息
  14. @mqtt.on_log()
  15. def handle_logging(client, userdata, level, buf):
  16. print(client, userdata, level, buf)
  17. #自動關閉所有未使用、掛著的連接
  18. @app.teardown_appcontext
  19. def shutdown_session(exception=None):
  20. db.session.remove()
  21. if __name__ == '__main__':
  22. # Benson 測試網頁 http://192.168.50.65:5010/login
  23. app.run(host='0.0.0.0', port=5010, debug=False, threaded=True)
  24. #使用WSGI開關,避免出現WARNING: This is a development server. Do not use it in a production deployment.Use a production WSGI server instead.
  25. # server = pywsgi.WSGIServer(('0.0.0.0', 5006), app)
  26. # server.serve_forever()
  27. # 加上 threaded=True, 就會以多線程啟動, 以支持網頁 ajax 請求