users.php
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:3k
源码类别:

中间件编程

开发平台:

JavaScript

  1. <?php
  2. /**
  3.  * @class Users
  4.  * A simple application controller extension
  5.  */
  6. class Users extends ApplicationController {
  7.     /**
  8.      * view
  9.      * Retrieves rows from database.
  10.      */
  11.     public function view() {
  12.         $res = new Response();
  13.         $res->success = true;
  14.         $res->message = "Loaded data";
  15.         $res->data = User::all();
  16.         return $res->to_json();
  17.     }
  18.     /**
  19.      * create
  20.      */
  21.     public function create() {
  22.         $res = new Response();
  23.         // Ugh, php...check if !hash
  24.         if (is_array($this->params) && !empty($this->params) && preg_match('/^d+$/', implode('', array_keys($this->params)))) {
  25.             foreach ($this->params as $data) {
  26.                 array_push($res->data, User::create($data)->to_hash());
  27.             }
  28.             $res->success = true;
  29.             $res->message = "Created " . count($res->data) . ' records';
  30.         } else {
  31.             if ($rec =  User::create($this->params)) {
  32.                 $res->success = true;
  33.                 $res->data = $rec->to_hash();
  34.                 $res->message = "Created record";
  35.             } else {
  36.                 $res->success = false;
  37.                 $res->message = "Failed to create record";
  38.             }
  39.         }
  40.         return $res->to_json();
  41.     }
  42.     /**
  43.      * update
  44.      */
  45.     public function update() {
  46.         $res = new Response();
  47.         if (is_array($this->id)) {
  48.             $res->data = array();
  49.             foreach ($this->id as $idx => $id) {
  50.                 if ($rec = User::update($id, $this->params[$idx])) {
  51.                     array_push($res->data, $rec->to_hash());
  52.                 }
  53.             }
  54.             $res->success = true;
  55.             $res->message = "Updated " . count($res->data) . " records";
  56.         } else {
  57.             if ($rec = User::update($this->id, $this->params)) {
  58.                 $res->data = $rec->to_hash();
  59.                 $res->success = true;
  60.                 $res->message = "Updated record";
  61.             } else {
  62.                 $res->message = "Failed to updated record";
  63.                 $res->success = false;
  64.             }
  65.             // SIMULATE ERROR:  All records having odd-numbered ID have error.
  66.             if ($this->id % 2) {
  67.                 $res->success = false;
  68.                 $res->message = "SIMULATED ERROR:  Lorem ipsum dolor sit amet, placerat consectetuer, nec lacus imperdiet velit dui interdum vestibulum, sagittis lectus morbi, urna aliquet minus natoque commodo egestas non, libero libero arcu sed sed.";
  69.             }
  70.         }
  71.         return $res->to_json();
  72.     }
  73.     /**
  74.      * destroy
  75.      */
  76.     public function destroy() {
  77.         $res = new Response();
  78.         if (is_array($this->params)) {
  79.             $destroyed = array();
  80.             foreach ($this->params as $id) {
  81.                 if ($rec = User::destroy($id)) {
  82.                     array_push($destroyed, $rec);
  83.                 }
  84.             }
  85.             $res->success = true;
  86.             $res->message = 'Destroyed ' . count($destroyed) . ' records';
  87.         } else {
  88.             if ($rec = User::destroy($this->params)) {
  89.                 $res->message = "Destroyed User";
  90.                 $res->success = true;
  91.             } else {
  92.                 $res->message = "Failed to Destroy user";
  93.             }
  94.         }
  95.         return $res->to_json();
  96.     }
  97. }