Message.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\controller;
  12. use catchAdmin\wechat\library\messages\Factory;
  13. use catcher\base\CatchController;
  14. use catcher\library\WeChat;
  15. use think\Request;
  16. class Message extends CatchController
  17. {
  18. public function done(Request $request)
  19. {
  20. $app = WeChat::officialAccount();
  21. if ($request->isPost()) {
  22. $app->server->push(function ($message) {
  23. file_put_contents('root.txt', var_export($message, true), FILE_APPEND);
  24. if ($res = Factory::make($message)->reply()) {
  25. return $res;
  26. }
  27. });
  28. }
  29. $app->server->serve()->send();exit;
  30. }
  31. }