This application has a few features.
- Allows you to send messages via
iMessageusingMessages.appwith an HTTP API call. - The webserver is optional.
- iMessages is optional. Telegram is optional too, but one is required.
- It also integrates with ffmpeg to capture videos from SecuritySpy.
- Allows subscribing to motion notifications on SecuritySpy cameras.
- You can receive a video in Messages.app or Telegram when there is motion.
- SecuritySpy is not optional, and is the main feature of this application.
This code is still very crude, under construction and lacking full documentation. Telegram was recently added (12/22021), and works very well with SecuritySpy.
My wife and I use this to receive videos in Telegram for cameras we care about. I have a couple other family members relying on this app; they also use SecuritySpy.
This once worked with iMessage but has been converted to Telegram-only.
This library taps into the SecuritySpy API and Event Stream. You do not need to do much besides provide a URL. You can then subscribe to any camera. It works with Telegram.
Add an account to securityspy, and give it access to your cameras. I probably used admin, but you can certainly tune the permissions. Sorry, I do not know what they are right now. :(
Put the url, username and password into the config file.
Add a bot token and set a password in the config.
Once the app fires up, message your bot /id <password>.
Then message it /help.
Only addresses added to the config can have messages sent to them.
- Location:
/usr/local/etc/motifini.conf - Example: examples/motifini.conf.example
Setting clear_messages to true will delete every conversation in Messages.app.
If you enable the webserver, these are (some) of the endpoints.
-
/api/v1.0/send/imessage/video/{to}/{camera} Uses FFMPEG to capture a video from an IP camera (or other URL).
to(csv), list of message recipientscam(string), camera namewidth(int), frame size, default:1280height(int), frame size, default:720quality(int), h264 quality setting, default:20time(int), max video duration in seconds, default15rate(int), output frame rate, default5size(int), max file size, default:2500000(~2.5MB)
-
/api/v1.0/send/imessage/picture/{to}/{camera} This method requires SecuritySpy be running.
to(csv), list of message recipientscam(string), camera name
-
/api/v1.0/send/imessage/msg/{to}?msg={msg} Just sends a plain-ol' message with iMessage.
to(csv), list of message recipientsmsg(string), text to send
This is an example showing how to trigger this app to send a picture or message to someone via iMessage from Indigo. This works, and also works with Telegram now. You can directly trigger "send a picture or video snippet to someone via telegram or imessages" by hitting an http endpoint as shown here.
Create two variables in Indigo.
Name one variable Subscribers and the other SendMessage
Create a trigger when SendMessage changes to run an Action.
Run this Action; replace the variable IDs with your own:
import urllib
import urllib2
import socket
timeout = 1
socket.setdefaulttimeout(timeout)
subs = urllib.quote(indigo.variables[1891888064].value, "")
msg = urllib.quote(indigo.variables[1023892794].value, "")
url = "http://127.0.0.1:8765/api/v1.0/send/imessage/msg/"+subs+"?msg="+msg
try:
urllib2.urlopen(url)
indigo.server.log(u"Dropped off message with Motifini!")
except Exception as err:
indigo.server.log(u"Error with Motifini: {}".format(err))- Better Usage/Install Documentation
- Some reasonable way to add and control events, and how they fire.
- For instance if you want a motion detector to fire a camera, or two, or a text message, how do you define and action that?
- Or any combination of "event -> take some cool action (ie. send a specific type of notification)"
- notifications currently supported: text, video, picture.
- Add more info to expvar data: events, cameras, subscribers, telegram stats.