Checking in all the SmartThings apps; both official and third-party.
[smartapps.git] / official / lock-it-when-i-leave.groovy
1 /**
2  *  Copyright 2015 SmartThings
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  *  in compliance with the License. You may obtain a copy of the License at:
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  *  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
10  *  on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
11  *  for the specific language governing permissions and limitations under the License.
12  *
13  *  Lock It When I Leave
14  *
15  *  Author: SmartThings
16  *  Date: 2013-02-11
17  */
18
19 definition(
20     name: "Lock It When I Leave",
21     namespace: "smartthings",
22     author: "SmartThings",
23     description: "Locks a deadbolt or lever lock when a SmartSense Presence tag or smartphone leaves a location.",
24     category: "Safety & Security",
25     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
26     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience%402x.png",
27     oauth: true
28 )
29
30 preferences {
31         section("When I leave...") {
32                 input "presence1", "capability.presenceSensor", title: "Who?", multiple: true
33         }
34         section("Lock the lock...") {
35                 input "lock1","capability.lock", multiple: true
36                 input "unlock", "enum", title: "Unlock when presence is detected?", options: ["Yes","No"]
37         input("recipients", "contact", title: "Send notifications to") {
38             input "spam", "enum", title: "Send Me Notifications?", options: ["Yes", "No"]
39         }
40         }
41 }
42
43 def installed()
44 {
45         subscribe(presence1, "presence", presence)
46 }
47
48 def updated()
49 {
50         unsubscribe()
51         subscribe(presence1, "presence", presence)
52 }
53
54 def presence(evt)
55 {
56         if (evt.value == "present") {
57                 if (unlock == "Yes") {
58                         def anyLocked = lock1.count{it.currentLock == "unlocked"} != lock1.size()
59                         if (anyLocked) {
60                                 sendMessage("Doors unlocked at arrival of $evt.linkText")
61                         }
62                         lock1.unlock()
63                 }
64         }
65         else {
66                 def nobodyHome = presence1.find{it.currentPresence == "present"} == null
67                 if (nobodyHome) {
68                         def anyUnlocked = lock1.count{it.currentLock == "locked"} != lock1.size()
69                         if (anyUnlocked) {
70                                 sendMessage("Doors locked after everyone departed")
71                         }
72                         lock1.lock()
73                 }
74         }
75 }
76
77 def sendMessage(msg) {
78
79     if (location.contactBookEnabled) {
80         sendNotificationToContacts(msg, recipients)
81     }
82     else {
83         if (spam == "Yes") {
84             sendPush msg
85         }
86     }
87 }