all files / lib-songbeamer/ index.js

78.95% Statements 30/38
50% Branches 8/16
100% Functions 12/12
78.95% Lines 30/38
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123                                                                                                                                                                                         
/**
 * @overview Main Includer
 * @module index
 * @author Dominik Sigmund
 * @version 1.0
 * @description Packs the libs
 * @memberof lib-songbeamer
 * @requires song
 * @requires ablauf
 * @requires fs
 */
var song = require('./libs/song.js')
var ablauf = require('./libs/ablauf.js')
var fs = require('fs')
/** Read in Song-File and callback a json
 * @param {string} file - Path to a Song-File
 * @param {index~jsonSongCallback} callback - A Callback with an error or the Json
 * @returns Nothing
 * */
exports.song2JSON = function (file, callback) {
  fs.readFile(file, 'utf8', function (err, data) {
    Iif (err) {
      callback(err)
    } else {
      song.toJSON(data, function (err, json) {
        Iif (err) {
          callback(err)
        } else {
          callback(null, json)
        }
      })
    }
  })
}
/** Read in Ablaufplan-File and callback a json
 * @param {string} file - Path to a Ablaufplan-File
 * @param {index~jsonAblaufCallback} callback - A Callback with an error or the Json
 * @returns Nothing
 * */
exports.ablauf2JSON = function (file, callback) {
  fs.readFile(file, 'utf8', function (err, data) {
    Iif (err) {
      callback(err)
    } else {
      ablauf.toJSON(data, function (err, json) {
        Iif (err) {
          callback(err)
        } else {
          var cbjson = {}
          cbjson.title = file
          cbjson.items = json
          callback(null, cbjson)
        }
      })
    }
  })
}
/** Read in JSON, Write to File and callback possible Errors
* @param {object} object - A JSON-Song-Object 
* @param {string} file - Path to a Song-File
 * @param {index~errorCallback} callback - A Callback with an error or nothing
 * @returns Nothing
 * */
exports.json2Song = function (object, file, callback) {
  song.toFile(object, function (err, data) {
    Iif (err) {
      callback(err)
    } else {
      fs.writeFile(file, data, function (err) {
        Iif (err) {
          callback(err)
        } else {
          callback(null)
        }
      })
    }
  })
}
/** Read in JSON, Write to File and callback possible Errors
* @param {object} object - A JSON-Ablaufplan-Object 
* @param {string} file - Path to an Ablaufplan-File
 * @param {index~errorCallback} callback - A Callback with an error or nothing
 * @returns Nothing
 * */
exports.json2Ablauf = function (object, file, callback) {
  ablauf.toFile(object.items, function (err, data) {
    Iif (err) {
      callback(err)
    } else {
      fs.writeFile(file, data, function (err) {
        Iif (err) {
          callback(err)
        } else {
          callback(null)
        }
      })
    }
  })
}
/**
  * This callback is displayed as part of the index class.
  * @callback index~jsonSongCallback
  * @param {object} Error or null
  * @param {object.status} Number of Error (Uses HTTP-Status)
  * @param {object.message} Custom Error Message
  * @param {object} Json - The JSON. See Schema
  */
  /**
  * This callback is displayed as part of the index class.
  * @callback index~jsonAblaufCallback
  * @param {object} Error or null
  * @param {object.status} Number of Error (Uses HTTP-Status)
  * @param {object.message} Custom Error Message
  * @param {object} Json - The JSON. See Schema
  */
  /**
  * This callback is displayed as part of the index class.
  * @callback index~errorCallback
  * @param {object} Error or null
  * @param {object.status} Number of Error (Uses HTTP-Status)
  * @param {object.message} Custom Error Message
  */