Logout.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\api\controller;
  3. /**
  4. * ============================================================================
  5. * DSMall多用户商城
  6. * ============================================================================
  7. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  8. * 网站地址: http://www.csdeshang.com
  9. * ----------------------------------------------------------------------------
  10. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  11. * 不允许对程序代码以任何形式任何目的的再发布。
  12. * ============================================================================
  13. * 登出控制器
  14. */
  15. class Logout extends MobileMember
  16. {
  17. public function initialize()
  18. {
  19. parent::initialize(); // TODO: Change the autogenerated stub
  20. }
  21. /**
  22. * @api {POST} api/Logout/index 注销
  23. * @apiVersion 1.0.0
  24. * @apiGroup Logout
  25. *
  26. * @apiHeader {String} X-DS-KEY 用户授权token
  27. *
  28. * @apiParam {String} username 用户名
  29. * @apiParam {String} client 用户端 wap手机端
  30. *
  31. * @apiSuccess {String} code 返回码,10000为成功
  32. * @apiSuccess {String} message 返回消息
  33. */
  34. public function index(){
  35. if(empty(input('post.username')) || !in_array(input('post.client'), $this->client_type_array)) {
  36. ds_json_encode(10001,lang('param_error'));
  37. }
  38. $mbusertoken_model = model('mbusertoken');
  39. if ($this->member_info['member_name'] == trim(input('post.username'))) {
  40. $condition = array();
  41. $condition[] = array('member_id','=',$this->member_info['member_id']);
  42. $condition[] = array('member_clienttype','=',input('post.client'));
  43. $mbusertoken_model->delMbusertoken($condition);
  44. session(null); //删除session中的member_id下,因为次登录时要整合cookie中的商品到数据库中
  45. ds_json_encode(10000, '', '', '', false);
  46. } else {
  47. ds_json_encode(10001,lang('param_error'));
  48. }
  49. }
  50. }