Why?
Recently I had to make a script which runs once per week and gathers images of an admin interface (login required) and sends it to its manager by email for quick overview. This is great because it saves the manager’s time as he doesn’t have to login to the website and click through all of the graphs and wait for them to load, instead he gets a weekly (YMMV) summary. The site was hosted on Webfaction, which, as it turns out, is a cool web host (haven’t come across it before) because it allows you to compile source code and run custom binaries.
How?
The task of automatically logging in the admin dashboard and taking screenshots proved to be an excellent job for CasperJS, an open source navigation scripting & testing utility written in JavaScript for the PhantomJS WebKit headless browser.
Installation
In order to run CasperJS scripts, you need to have NodeJS installed. Installing NodeJS on Webfaction is as straightforward as it can get, as it’s done via their control panel in the Applications tab, as shown in the illustration below:

It’s useful to put NodeJS executable in your path because then you can run node from any folder. You can do this by going to your NodeJS application’s bin directory and execute the following command:
export PATH=$PATH:$PWD/bin/
Installing CasperJS is easy via npm (Node package manager):
npm install -g casperjs
However, in order for CasperJS to work, you need to install PhantomJS and you can do it by cloning it from its GitHub repository and running the build.sh script:
mkdir -p $HOME/src
cd $HOME/src
git clone git://github.com/ariya/phantomjs.git && cd phantomjs
git checkout 1.5
./build.sh
cp $HOME/src/phantomjs/bin/phantomjs $HOME/bin
To test if PhantomJS has been successfully installed, you can run:
phantomjs --version
To have the binaries in my path every time I log in, I added this alias to my .bashrc
:
alias nodeset="export PATH=$PATH:/home/webapp/node/bin:/home/webapp/bin"
and my .bash_profile
looks like this:
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
nodeset
CasperJS Script for Automatically Saving Images
var casper = require("casper").create({
verbose: false,
logLevel: 'debug'
});
var url = "http://your-app.com/",
saveDir = "/home/app/savedImages";
casper.start(url, function() {
this.fill('form#fm_login', {
'username': 'username',
'password': 'password',
});
this.echo("I filled the form");
});
casper.then(function(){
this.click('#btn_login');
this.echo("I'm, logging in");
});
casper.thenOpen("http://your-app.com/graph_1", function(){
this.wait(3000, function() {
this.echo("I've waited for 3 seconds for the graphs to load.");
casper.then(function(){
var fileName = saveDir + '/graph_1.png';
this.viewport(1920, 1080);
this.captureSelector(fileName, '#page_content');
this.echo('first snapshot taken');
});
});
});
casper.run(function() {
this.echo('done').exit();
});
First, I initialize casper and set few variables (url
, saveDir
– note that it has to be full path). Then, I start casper by visiting the passed in url
and fill the login form by using caspers fill()
function. After that, I click on the login button and voila – I’m logged in. After that, I open up the link with the graph and wait 3 seconds for the graph to load, and then I save the selected area by using the captureSelector()
function and a CSS selector of the area I want to save.
NodeJS Script for Automatically Sending Email with Attachment via Gmail SMTP
This node script uses nodemailer which can be installed using npm:
node install -g nodemailer
This script uses Gmail SMTP (if you want to test it, make sure to enter correct Gmail account credentials), but nodemailer offers many more options for sending the email. The simple email sending script is here:
var nodemailer = require("nodemailer");
var rootFolder = "/home/app/savedImages/";
var smtpTransport = nodemailer.createTransport("SMTP",{
service: "Gmail",
auth: {
user: "your.gmail.account@gmail.com",
pass: "your.gmail.pass"
}
});
var mailOptions = {
from: "Automatic Graph Sender <your.gmail.accoun@gmail.com>",
to: "the.manager@gmail.com",
subject: "Automatic Graph Sender",
text: "Hello, I'm Roboty, an automatic report sending robot.
You will find your files in attachment.
I wish you a great day! Bye, Roboty",
html: "Hello,<br/><br/>I'm Roboty,
an automatic report sending robot. You will find your files in attachment.
<br/><br/>I wish you a great day!<br/><br/>Bye,<br/>Roboty",
attachments: [
{ filePath: rootFolder + "graph_1.png"},
{ filePath: rootFolder + "graph_2.png"},
]
}
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
smtpTransport.close();
});
Cron Jobs
The following script will run every day at exactly 19:50h. I added the PHANTOMJS_EXECUTABLE
needed by CasperJS executable, then I wrote the path to CasperJS and the script that we want to execute and finally I redirected all the output to the temporary file for later inspection if needed.
50 19 * * * PHANTOMJS_EXECUTABLE=/home/app/bin/phantomjs /home/app/node/bin/casperjs /home/app/casper/saveImages.js > /tmp/outputCheck.txt
Mailing script runs 5 minutes after the image gathering script and also outputs everything to the temporary file used in some other success status checking script.
55 19 * * * /home/emtool/webapps/node/bin/node /home/emtool/my_folder/casper/mail.node.js > /tmp/emailOut.txt
Hope this proved useful to someone, and hit me with comments or questions you may have.
CodeProject
I’m an engineer at heart and a jack of all trades kind of guy.
For those who care about titles, I hold a masters degree in computing from
FER (and a black belt in karate, but that’s another story…).
During the last years, worked in a betting software industry where I made use of my knowledge in areas ranging from full-stack (web & desktop) development to game development through Linux and database administration and use of various languages (C#, PHP, JavaScript to name just a few).
Currently, I’m a senior software engineer at
TelTech, where we make innovative communications apps, and I <3 it.
Lately, I’m very passionate about Ionic framework and am currently in the top 3 answerers on
StackOverflow in
Ionic framework. I wrote a book about Ionic framework which you can get for free on Leanpub:
Ionic framework – step by step from idea through prototyping to the app stores.
Other technical writing:
+ wrote a book
Getting MEAN with MEMEs
was a technical reviewer for a book
Deploying Node published by Packt
was a technical reviewer for a book
Getting started with Ionic published by Packt
After writing 300 posts, this is why I think
you should start blogging too
Come and see what I write about on
my blog.