summaryrefslogtreecommitdiff
path: root/examples/sms-python/sms-python
blob: 46d5e692ee6d9b23e1529914faf493d4c26a15c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2016 Aleksander Morgado <aleksander@aleksander.es>
#

import sys

import gi
gi.require_version('ModemManager', '1.0')
from gi.repository import Gio, GLib, GObject, ModemManager


def main():
    """Main routine."""

    # Process input arguments
    if len(sys.argv) != 3:
        sys.stderr.write('error: wrong number of arguments\n')
        sys.stdout.write('usage: sms-python <NUMBER> <TEXT>\n')
        sys.exit(1)

    # Prepare SMS properties
    sms_properties = ModemManager.SmsProperties.new()
    sms_properties.set_number(sys.argv[1])
    sms_properties.set_text(sys.argv[2])

    # Connection to ModemManager
    connection = Gio.bus_get_sync(Gio.BusType.SYSTEM, None)
    manager = ModemManager.Manager.new_sync(
        connection, Gio.DBusObjectManagerClientFlags.DO_NOT_AUTO_START, None)
    if not manager.get_name_owner():
        sys.stderr.write('ModemManager not found in bus')
        sys.exit(2)

    # Iterate modems and send SMS with each
    for obj in manager.get_objects():
        messaging = obj.get_modem_messaging()
        sms = messaging.create_sync(sms_properties)
        sms.send_sync()
        print('%s: sms sent' % messaging.get_object_path())


if __name__ == "__main__":
    main()