Skip to content

The CloudFoundry Starter demonstrates a simple, reusable Node.js web application that works with Cloudant NoSQL DB

Notifications You must be signed in to change notification settings

amirkeren/bluemix-lab1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CloudFoundry and Cloudant Starter Overview

The CloudFoundry Starter demonstrates a simple, reusable Node.js web application that works with Cloudant NoSQL DB. The goal is to create a working UI that allows the insertion of documents into a Cloudant DB

Table of contents

  1. Preparation
  2. Deploying the application on Bluemix
  3. Implementing endpoints
  4. Adding Cloudant NoSQL DB service to the application
  5. Adding adapter methods
  6. Testing the web application

Preparation

  1. Register for a Bluemix account if you have not done so already

  2. Install the Bluemix CLI using the link here - verify that it's working by running bluemix -v in the command prompt, this should diplay the CLI version (if not working, make sure to add the bluemix executable to the PATH, instructions on how to do so can be found here for Windows, Linux or Mac)

  3. Install the CloudFoundry CLI using the link here - verify that it's working by running cf -v in the command prompt, this should diplay the CLI version (if not working, see above for how to add to PATH)

  4. Login to Bluemix with your username and password by running bluemix login -a https://api.ng.bluemix.net in the command prompt

Deploying the application on Bluemix

  1. Clone this repository by running git clone https://github.com/amirkeren/bluemix-lab1.git (if you have git installed) or download it as a zip file from here

  2. Navigate to the cloned project folder (extract the file first if you downloaded the zip file)

  3. Create a new file named manifest.yml in the root folder of the project with the following content (replace APP_NAME with the name you want to give your web application) -

applications:
- path: .
  memory: 256M
  instances: 1
  domain: mybluemix.net
  name: <APP_NAME>
  host: <APP_NAME>
  disk_quota: 1024M

And then run cf push. Note that APP_NAME.mybluemix.net must be unique (so it is best to use something like your fullname-lab1 for example)

You can view your deployed application on your dashboard. If the application fails to start, try renaming your application and run cf push again

Implementing endpoints

We will now add the relevant code to implement the endpoints of the web application responsible for retrieving the available phrases in the dictionary and adding new ones

  1. Edit the file app.js and replace the existing TODO code for the two endpoints (lines 44-56) with the following -
//endpoint for retrieving all phrases
app.get('/getPhrases', function(req, res) {
  var result = 'No Phrases Found';
  if (db == null) {
    console.log(DATABASE_ERROR);
    res.send(result);
    return;
  }
  db.list({ include_docs: true }, function(err, data) {
    if (err) {
      console.log("Error: ", err);
    } else {
      result = '';
      for (var i = 0; i < data.total_rows; i++) {
        result += '<li>' + data.rows[i].id + '</li>';
      }
      if (result == '') {
      	result = 'No Phrases Found';
      }
    }
    res.send(result);
  });
});

//endpoint for adding a new phrase
app.post('/addPhrase', function(req, res) {
  if (db == null) {
    console.log(DATABASE_ERROR);
    res.sendStatus(500);
    return;
  }
  var value = req.body.value;
  if (value == null) {
    console.log(PARAMETER_ERROR);
    res.sendStatus(500);
    return;
  }
  db.insert({ _id: value }, function(err, data) {
    if (err) {
      console.log('Document already exists');
      res.sendStatus(500);      
    } else {
      console.log('Inserted new document');
      res.sendStatus(200);
    }
  });
});

And run cf push

Wait for the application to redeploy and then try to add a new phrase (which will fail). To find out why, check the live application log by running cf logs <APP_NAME>

Adding Cloudant NoSQL DB service to the application

We will now provision a new instance of Cloudant NoSQL DB to be used as the database for our web application

  1. Go to the creation page of the Cloudant NoSQL DB service using this link or search for "cloudant" in the Bluemix catalog

  2. Before creating the service make sure it is bound to the application you created in the previous step (do this by verifying that the drop-down box on the left under "Connect to:" has your application name selected)

  3. Restage the application if prompt to do so

Adding adapter methods

We will now add the methods responsible for reading and writing to the Cloudant DB

  1. Add the following code to the bottom of the file app.js -
var Cloudant = require('cloudant');

var cloudant_url;
//check if services are bound to your project
if (process.env.VCAP_SERVICES) {
    var services = JSON.parse(process.env.VCAP_SERVICES);
  //check if CloudantNoSQLDB service is bound to your project
    if (services.cloudantNoSQLDB)
        cloudant_url = services.cloudantNoSQLDB[0].credentials.url;
}

//check that we have a valid Cloudant url
if (cloudant_url == null)
  console.log(DATABASE_ERROR);
else {
  //connect using cloudant npm and URL obtained from previous step
  var cloudant = Cloudant({ url: cloudant_url });
  //create databases
  var dbname = 'translations';
  cloudant.db.create(dbname, function(err, data) {
        if (err)
          console.log("Database " + dbname + " already exists");
        else
          console.log("Created database " + dbname);
  });
  dbname = 'phrases';
  cloudant.db.create(dbname, function(err, data) {
        if (err)
          console.log("Database " + dbname + " already exists");
        else
          console.log("Created database " + dbname);
        db = cloudant.db.use(dbname);
  });
}

And run cf push

Testing the web application

  1. Wait for the application to redeploy and then try to add a new phrase

About

The CloudFoundry Starter demonstrates a simple, reusable Node.js web application that works with Cloudant NoSQL DB

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published