users.php
资源名称:ext-3.0.0.zip [点击查看]
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:3k
源码类别:
中间件编程
开发平台:
JavaScript
- <?php
- /**
- * @class Users
- * A simple application controller extension
- */
- class Users extends ApplicationController {
- /**
- * view
- * Retrieves rows from database.
- */
- public function view() {
- $res = new Response();
- $res->success = true;
- $res->message = "Loaded data";
- $res->data = User::all();
- return $res->to_json();
- }
- /**
- * create
- */
- public function create() {
- $res = new Response();
- // Ugh, php...check if !hash
- if (is_array($this->params) && !empty($this->params) && preg_match('/^d+$/', implode('', array_keys($this->params)))) {
- foreach ($this->params as $data) {
- array_push($res->data, User::create($data)->to_hash());
- }
- $res->success = true;
- $res->message = "Created " . count($res->data) . ' records';
- } else {
- if ($rec = User::create($this->params)) {
- $res->success = true;
- $res->data = $rec->to_hash();
- $res->message = "Created record";
- } else {
- $res->success = false;
- $res->message = "Failed to create record";
- }
- }
- return $res->to_json();
- }
- /**
- * update
- */
- public function update() {
- $res = new Response();
- if (is_array($this->id)) {
- $res->data = array();
- foreach ($this->id as $idx => $id) {
- if ($rec = User::update($id, $this->params[$idx])) {
- array_push($res->data, $rec->to_hash());
- }
- }
- $res->success = true;
- $res->message = "Updated " . count($res->data) . " records";
- } else {
- if ($rec = User::update($this->id, $this->params)) {
- $res->data = $rec->to_hash();
- $res->success = true;
- $res->message = "Updated record";
- } else {
- $res->message = "Failed to updated record";
- $res->success = false;
- }
- // SIMULATE ERROR: All records having odd-numbered ID have error.
- if ($this->id % 2) {
- $res->success = false;
- $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.";
- }
- }
- return $res->to_json();
- }
- /**
- * destroy
- */
- public function destroy() {
- $res = new Response();
- if (is_array($this->params)) {
- $destroyed = array();
- foreach ($this->params as $id) {
- if ($rec = User::destroy($id)) {
- array_push($destroyed, $rec);
- }
- }
- $res->success = true;
- $res->message = 'Destroyed ' . count($destroyed) . ' records';
- } else {
- if ($rec = User::destroy($this->params)) {
- $res->message = "Destroyed User";
- $res->success = true;
- } else {
- $res->message = "Failed to Destroy user";
- }
- }
- return $res->to_json();
- }
- }