pajikos / sms-gammu-gateway

Simple SMS REST API gateway for sending SMS from gammu supported devices
Apache License 2.0
116 stars 31 forks source link

REST API SMS Gateway using gammu

Simple SMS REST API gateway for sending and receiving SMS from gammu supported devices. Gammu supports standard AT commands, which are using most of USB GSM modems.

Docker Cloud Build Status Docker Automated build GitHub

Available REST API endpoints:

Usage

There are two options how to run this REST API SMS Gateway:

Prerequisites

Either you are using Docker or standalone installation, your GSM modem must be visible in the system. When you put a USB stick to your system, you have to see a new USB device:

dmesg | grep ttyUSB

or typing command:

lsusb
...
Bus 001 Device 009: ID 12d1:1406 Huawei Technologies Co., Ltd. E1750
...

If only cdrom device appeared, install usb-modeswitch to see a modem as well:

apt-get install usb-modeswitch

Standalone installation

This guide does not cover Python 3.x installation process (including pip), but it is required as well.

Install system dependencies (using apt):

apt-get update && apt-get install -y pkg-config gammu libgammu-dev libffi-dev

Clone repository

git clone https://github.com/pajikos/sms-gammu-gateway
cd sms-gammu-gateway

Install python dependencies

pip install -r requirements.txt

Edit gammu configuration

You usually need to edit device property in file gammu.config only, e.g.:

[gammu]
device = /dev/ttyUSB1
connection = at

Run application (it will start to listen on port 5000):

python run.py

Running in Docker

In a case of using any GSM supporting AT commands, you can simply run the container:

docker run -d -p 5000:5000 --device=/dev/ttyUSB0:/dev/mobile pajikos/sms-gammu-gateway

Docker compose:

version: '3'
services:
  sms-gammu-gateway:
    container_name: sms-gammu-gateway
    restart: always
    image: pajikos/sms-gammu-gateway
    environment:
      - PIN="1234"
    ports:
      - "5000:5000"
    devices:
      - /dev/ttyUSB1:/dev/mobile

FAQ

PIN configuration

Pin to unblock SIM card could be set using environment variable PIN, e.g. PIN=1234.

Authentication

Out of the box, there is needed an HTTP Basic authentication to send any SMS, username and password can be configured in credentials.txt

How to use HTTPS?

Using environment variable SSL=True, the program expects RSA private key and certificate to provide content via HTTPS. Expected file paths (you can edit it in run.py or mount your own key/cert in Docker):

/ssl/key.pem
/ssl/cert.pem

Change default port

Using environment variable example : PORT="5002". So not forget to modify the exposure of the port of your container.

No more modem response ?

If you have some regular problem with your modem and you don't want to disconnect and reconnect it physically to reset it, you can try to regularly use the reset function. (For example with my Huawei modem the reset function is used every 24 hours to maintain the stability of the system)

It does not work...

Try to check gammu configuration file site

Integration with Home Assistant

Signal Strength sensor

- platform: rest
  resource: http://xxx.xxx.xxx.xxx:5000/signal
  name: GSM Signal
  scan_interval: 30
  value_template: '{{ value_json.SignalPercent }}'
  unit_of_measurement: '%'

SMS notification

notify:
  - name: SMS GW
    platform: rest
    resource: http://xxx.xxx.xxx.xxx:5000/sms
    method: POST_JSON
    authentication: basic
    username: !secret sms_gateway_username
    password: !secret sms_gateway_password
    target_param_name: number
    message_param_name: text

Using in Automation

- alias: Alarm Entry Alert - Garage Door
  trigger:
    platform: state
    entity_id: binary_sensor.garage_door
    state: 'on'
  condition:
    - platform: state
      entity_id: alarm_control_panel.alarm
      state: 'armed_home'
  action:
    service: notify.sms_gw
    data:
      message: 'alert, entry detected at garage door'
      target: '+xxxxxxxxxxxx'

Receiving SMS and sending notification

sensor:
  - platform: rest
    resource: http://127.0.0.1:5000/getsms
    name: sms
    scan_interval: 20
    username: !secret sms_gateway_username
    password: !secret sms_gateway_password
    json_attributes:
      - Date
      - Number
      - Text
      - State

automation sms_automations:
  - alias: Notify on received SMS
    trigger:
      - platform: template
        value_template: "{{state_attr('sensor.sms', 'Text') != ''}}"
    action:
      - service: notify.mobile_app_[DEVICE]
        data:
          title: SMS from {{ state_attr('sensor.sms', 'Number') }}
          message: "{{ state_attr('sensor.sms', 'Text') }}"
          data:
            sticky: "true"
      - service: persistent_notification.create
        data:
          title: SMS from {{ state_attr('sensor.sms', 'Number') }}
          message: "{{ state_attr('sensor.sms', 'Text') }}"