update to afb-daemon evolutions
[src/app-framework-demo.git] / afm-client / app / Backend / RestApis / AfmMainMockApi.js
index 0d8cd87..9469eef 100644 (file)
  *   /api/afm-main/runnables  // no params
  *   /api/afm-main/details    &id="xxxx"
  *   /api/afm-main/start      &id="xxxx"
- *   /api/afm-main/terminate  &id="xxxx"
- *   /api/afm-main/stop       &id="xxxx"
- *   /api/afm-main/continue   &id="xxxx"
- *   /api/afm-main/runners    &id="xxxx"
- *   /api/afm-main/state      &id="xxxx"
+ *   /api/afm-main/terminate  &runid="xxxx"
+ *   /api/afm-main/stop       &runid="xxxx"
+ *   /api/afm-main/continue   &runid="xxxx"
+ *   /api/afm-main/runners    // no params
+ *   /api/afm-main/state      &runid="xxxx"
  * ----------------------------------------------------------------------*/
 
  
@@ -36,13 +36,58 @@ function NewApi(handle, prefix) {
     
     // Simulate Client Context Session Creation
     handle.app.get (prefix +'/runnables', function (req, res) {
-        var Response= { jtype: "AJB_reply",
+        var Response= { jtype: "afb-reply",
                         request: { "prefix": "afm-main", "api": "runnables", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" },
-                        response: [ 
+                        response: {runnables: 
                             {id: "webapps-rabbit@0.0", version: "0.0.8", name: "Rabbit", description: "Fun grid game where the rabbit finds and eats the carrots dodging the foxes.", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>" },
                             {id: "webapps-annex@0.0", version: "0.0.10", name: "Annex", description: "Reversi/Othello", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>" },
                             {id: "webapps-memory-match@1.1", version: "1.1.7", name: "MemoryMatch", description: "Memory match", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>"  }
-                       ]};
+                       ]}};
+                   
+                   /* "jtype":"afb-reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/
+                    
+        res.send(Response);
+    });
+    
+    handle.app.get (prefix +'/detail', function (req, res) {
+        var apps = { 
+                    "webapps-rabbit@0.0": {id: "webapps-rabbit@0.0", version: "0.0.8", name: "Rabbit", description: "Fun grid game where the rabbit finds and eats the carrots dodging the foxes.", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>" },
+                    "webapps-annex@0.0": {id: "webapps-annex@0.0", version: "0.0.10", name: "Annex", description: "Reversi/Othello", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>" },
+                    "webapps-memory-match@1.1": {id: "webapps-memory-match@1.1", version: "1.1.7", name: "MemoryMatch", description: "Memory match", shortname: "", author: "Todd Brandt <todd.e.brandt@intel.com>"  }
+                    };
+                    
+        var Response= { jtype: "afb-reply",
+                        request: { "prefix": "afm-main", "api": "detail", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" },
+                        response: apps[req.query.id]
+                       };
+                   
+                   /* "jtype":"afb-reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/
+                    
+        res.send(Response);
+    });
+    
+    handle.app.get (prefix +'/start', function (req, res) {
+        var apps = { "runid": 2, "uri": "/opa/images/avatars/tux-bzh.png"}; 
+                    
+        var Response= { jtype: "afb-reply",
+                        request: { "prefix": "afm-main", "api": "start", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" },
+                        response: apps
+                       };
+                   
+                   /* "jtype":"afb-reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/
+                    
+        res.send(Response);
+    });
+    
+    handle.app.get (prefix +'/terminate', function (req, res) {
+        var apps = {}; 
+                    
+        var Response= { jtype: "afb-reply",
+                        request: { "prefix": "afm-main", "api": "terminate", "uuid": "e4ef5e66-xxxx", "token": "123456789-xxxxx", "status": "processed" },
+                        response: apps
+                       };
+                   
+                   /* "jtype":"afb-reply","request":{"prefix":"afm-main","api":"runnables","status":"processed"},"response":{"runnables":[{"id":"webapps-annex@0.0","version":"0.0.10","width":0,"height":0,"name":"Annex","description":"Reversi/Othello","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"},{"id":"webapps-rabbit@0.0","version":"0.0.8","width":0,"height":0,"name":"Rabbit","description":"Fun grid game where the rabbit finds and eats the carrots dodging the foxes.","shortname":"","author":"Todd Brandt <todd.e.brandt@intel.com>"}]}}*/
                     
         res.send(Response);
     });