all files / mlpm/lib/ package.js

94.87% Statements 111/117
88.24% Branches 45/51
96.67% Functions 29/30
96.36% Lines 106/110
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267    21×                                 10×                                 11×     11× 10×   10×         11×                                                                               15×                                                                                                                                             21×                      
'use strict';
 
var fs = require('fs')
  , path = require('path')
  , slash = require('slash')
  , vfs = require('vinyl-fs')
  , concat = require('concat-stream')
  , async  = require('async')
  , _ = require('lodash')
  , mkdirp = require('mkdirp')
  , JSZip  = require('jszip')
  , rimraf = require('rimraf')
  , util = require('./util.js')
 
function xqyMetadata(filePath, cb) {
  var resourceNs = 'http://marklogic.com/rest-api/resource/'
    , transformNs = 'http://marklogic.com/rest-api/transform/'
    , moduleRegex = /^\s*module\s+namespace\s+[^\s=]+\s*=\s*"(.+)"\s*;\s*$/ // TODO: NCName regex for prefix
    , data = {}
 
  util.readByLine(filePath, function(line, resume, close) {
    // filePath is a main module if we've reached a namespace/variable/function declaration *before* a module declaration
    if ( /^\s*declare/.test( line ) || /^\s*for\s/.test( line ) || /^\s*let\s/.test( line ) ) {
      close()
      return cb(null, null)
    }
 
    if ( /^\s*module/.test( line ) ) {
      close()
 
      try {
        data.ns = moduleRegex.exec( line )[1]
      } catch (err) {
        console.error('unable to parse module namespace for ' + filePath)
        data.ns = null
      }
 
      data.type = 'module'
 
      if ( data.ns ) {
        if ( data.ns.indexOf( resourceNs ) > -1 ) {
          data.type = 'resource'
          data.name = data.ns.substring( data.ns.indexOf( resourceNs ) + resourceNs.length )
        } else if ( data.ns.indexOf( transformNs ) > -1 ) {
          data.type = 'transform'
          data.name = data.ns.substring( data.ns.indexOf( transformNs ) + transformNs.length )
        }
      }
 
      return cb(null, data)
    }
 
    resume()
  }, function() {
    cb(null, null)
  })
}
 
function formatFromPath(filePath) {
  var format = 'txt'
    , extension = null
 
  if ( /\.[^\s\/]+$/.test( filePath ) ) {
    extension = /\.([^\s\/]+)$/.exec( filePath )[1]
 
    if ( ['xq', 'xqy', 'xql', 'xqm'].indexOf( extension ) > -1 ) {
      format = 'xqy'
    } else {
      format = extension
    }
  }
 
  return format
}
 
function getFileMetadata(filePath, deploy, cb) {
  var relativePath = filePath.replace(process.cwd() + path.sep, '')
    , metadata = {
        type: 'asset',
        path: filePath,
        relativePath: relativePath,
        format: formatFromPath(filePath),
        location: '/ext/' + slash(relativePath)
      }
 
  // cthulu
  if ( !/^mlpm_modules/.test( metadata.relativePath ) ) return cb(
    new Error('Path parsing error: ' + JSON.stringify(metadata))
  )
 
  deploy = deploy || {}
  _.assign(metadata, deploy)
 
  var skipXqyCondition = false
 
  // TODO: confirm that metadata is valid without inspecting the file (performance enhancement)
  // ( metadata.format === 'xqy' ) ?
  // _.contains(['transform', 'resource'], data.type) && data.name
 
  if ( metadata.format === 'xqy' && !skipXqyCondition ) {
    return xqyMetadata(filePath, function(err, extractedMetadata) {
      Iif (err) return cb(err)
 
      cb(null, _.assign(metadata, extractedMetadata))
    })
  } else {
    process.nextTick(function() { cb(null, metadata) })
  }
}
 
function getFiles(name, excludes, cb) {
  var filePath = './mlpm_modules/' + name // path.resolve('mlpm_modules', name)
    , globs = [ filePath + '/**/*' ]
 
  Eif ( !cb ) {
    cb = excludes
    excludes = []
  }
 
  var defaultExcludes = [
    '/**/mlpm.json',
    '/**/CHANGELOG.md',
    '/**/README.md',
    '/**/README.mdown',
    '/**/LICENSE'
  ]
 
  _.chain(defaultExcludes)
  .union(excludes)
  .each(function(exclude) {
    globs.push( '!' + filePath + exclude )
  })
  .run()
 
  var src = vfs.src(globs, { read: false })
 
  src.on('error', cb)
 
  src.pipe(concat(function(files) {
    cb(null, _.chain(files)
      .filter(function(file) { return file.stat.isFile() })
      .map(function(file) { return file.path })
      .value()
    )
  }))
}
 
function parseDeployConfig(pkg) {
  var results = {}
 
  // TODO: capture relative path
  function absolutePath(relativePath) {
    return path.resolve('./mlpm_modules/' + pkg.name, relativePath)
  }
 
  if ( _.isArray( pkg.deploy ) && _.every( pkg.deploy, _.isObject ) ) {
    _.each( pkg.deploy, function(value) {
      var absPath = absolutePath( value.file )
      value.path = absPath
      results[ absPath ] = value
    })
  } else if ( _.isObject( pkg.deploy ) && !_.isArray( pkg.deploy ) ) {
    _.each( pkg.deploy, function(value, file) {
      var absPath = absolutePath( file )
        , data = { path: absPath }
 
      if ( _.isObject(value) ) {
        _.assign(data, value)
      } else {
        data.type = value
      }
 
      results[ absPath ] = data
    })
  } else {
    // TODO: enable this ?
    // if ( _.isArray(pkg.deploy) && _.every(pkg.deploy, _.isString) )
    throw new Error('invalid deploy config')
  }
 
  return results
}
 
function parseContents(pkg, cb) {
  getFiles(pkg.name, function(err, paths) {
    Iif (err) return cb(err)
 
    var deploy = {}
 
    if ( pkg.deploy ) {
      try {
        deploy = parseDeployConfig(pkg)
      } catch(err) {
        // cthulu
        return cb(err)
      }
    }
 
    async.map(paths,
      function(filePath, callback) {
        getFileMetadata(filePath, deploy[filePath], callback)
      },
      function(err, preparedDeploy) {
        Eif (err) return cb(err)
 
        pkg.preparedDeploy = _.sortBy(preparedDeploy, function(deploy) {
          var idx = ['resource', 'transform'].indexOf( deploy.type )
          return idx > -1 ? preparedDeploy.length : idx
        })
 
        cb(null, pkg)
      })
  })
}
 
function getConfig(name, cb) {
  var packagePath = './mlpm_modules/' + name + '/mlpm.json'
  util.readJson(packagePath, cb)
}
 
function saveFile(filePath, data, cb) {
  mkdirp(path.dirname(filePath), function (err) {
    if (err) return cb(err)
    fs.writeFile(filePath, data, cb)
  })
}
 
function install(buffer, pkgName, cb) {
  var zip = new JSZip(buffer)
 
  var files = _.map(zip.files, function(contents, name) {
    return { path: name, contents: contents.asText() }
  })
 
  uninstall(pkgName, function(err) {
    //TODO: handle err?
 
    async.each(
      files,
      function(file, callback) {
        var filePath = path.resolve( 'mlpm_modules', pkgName, file.path )
        saveFile(filePath, file.contents, callback)
      },
      function(err) {
        if (err) return uninstall( pkgName, _.bind(cb, null, err) )
 
        cb(null)
      })
  })
}
 
function uninstall(name, cb) {
  rimraf( path.resolve('mlpm_modules', name), cb )
}
 
module.exports = {
  xqyMetadata: xqyMetadata,
  formatFromPath: formatFromPath,
  getFileMetadata: getFileMetadata,
  getFiles: getFiles,
  parseDeployConfig: parseDeployConfig,
  parseContents: parseContents,
  getConfig: getConfig,
  install: install,
  uninstall: uninstall
}