The Bouncer
Convenient Web Requests
The second part of the alarm pipeline is shown in Listing 2; the REST request sent to the Pushover API server requires two tokens (lines 12 and 13), which users receive when registering with the Pushover service. The trial period lasts for four weeks and allows free access; if you like what you see, you can then buy a license for $5, which covers a single platform: iOS, Android, or the desktop client.
Registered users will find the token assigned to the user
key in the Pushover dashboard overview in Figure 4. The token labeled token
, on the other hand, identifies the app (Figure 5) to the Pushover service; in this case, it is the Python script in Listing 2, which I registered with Pushover under the name Snapshot.
Listing 2
pushover
For a successful REST request with Python's requests
library, you also need the message
parameter with the message text for the post()
method in line 9 to contact Pushover. In typical Python style, the library throws exceptions that abort the program in case of errors if they're not processed and outputs a stack trace that will hopefully help you solve the problem.
The Python requests
library keeps its promise of being a self-proclaimed "HTTP for Humans." At least it is more carefully thought out than urllib
and urllib2
, which you might remember I have complained about before.
Line 6 in Listing 2 retrieves the text sent from the first part of the pipeline from standard input and truncates it with the usual syntax for array slices in Python – [:1024]
– to the maximum length of 1,024 characters allowed by Pushover. The if
construct in lines 8-15 then uses the regular expression \S
to check whether the message contains printable characters and terminates empty runs without further ado.
Friend Cron
All you have to do now is set up a cron job that calls the pipeline about every five minutes and finds the user's home directory and the writable data
directory therein for storing the flag file:
*/5 * * * * /path/authwatch | /path/pushover
The Pushover service distributes any messages sent to all devices registered by the user, so it may happen that a failed login attempt triggers a whole explosion of notifications if several mobile devices in the room are actively connected. At least this only counts as one message, though, in the usage constraints, of which users are allowed 7,500 per month on the all-inclusive tier.
Mike Schilli
Mike Schilli works as a software engineer in the San Francisco Bay area of California. In his column, launched back in 1997, he focuses on short projects in Perl and various other languages. You can contact Mike at mailto:mschilli@perlmeister.com.
Infos
- "WiFi Connect Messages" by Mike Schilli, Linux Pro Magazine, issue 186, May 2016, p. 64, http://www.linux-magazine.com/Issues/2016/186/Perl-WiFi-Connect-Messages
- Pushover login: https://client.pushover.net
- Pygtail: https://github.com/bgreenlee/pygtail
- Listings for this article: ftp://ftp.linux-magazine.com/pub/listings/linux-magazine.com/200
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.