initial upload
[apps/native/smart-surveillance-camera.git] / smartthings-plugin / plugin / js / capability_motionSensor.js
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 var capabilityMotionSensor = {
18         'href' : {
19                 motion: "/capability/motionSensor/main/0"
20         },
21
22         'update' : function() {
23                 ocfDevice.getRemoteRepresentation(this.href.motion, this.onRepresentCallback);
24         },
25
26         'onRepresentCallback' : function(result, deviceHandle, uri, rcsJsonString) {
27                 scplugin.log.debug(className, arguments.callee.name, result);
28                 scplugin.log.debug(className, arguments.callee.name, uri);
29
30                 if (result == "OCF_OK" || result == "OCF_RESOURCE_CHANGED" || result == "OCF_RES_ALREADY_SUBSCRIBED") {
31                         if(rcsJsonString["value"] === undefined) return;
32
33                         var state = rcsJsonString["value"];
34
35                         if (state)
36                                 document.getElementById("motion_area").setAttribute('data-state', 'motion_detected');
37                         else
38                                 document.getElementById("motion_area").setAttribute('data-state', 'no_motion');
39                 }
40         }
41 }