mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
79 lines
2.3 KiB
JavaScript
79 lines
2.3 KiB
JavaScript
var r = require('rethinkdb')
|
|
var Promise = require('bluebird')
|
|
|
|
var logger = require('../util/logger')
|
|
var rutil = require('../util/rutil')
|
|
var tables = require('./tables')
|
|
|
|
module.exports = function(conn) {
|
|
var log = logger.createLogger('db:setup')
|
|
|
|
function alreadyExistsError(err) {
|
|
return err.msg && err.msg.indexOf('already exists') !== -1
|
|
}
|
|
|
|
function noMasterAvailableError(err) {
|
|
return err.msg && err.msg.indexOf('No master available') !== -1
|
|
}
|
|
|
|
function createDatabase() {
|
|
return rutil.run(conn, r.dbCreate(conn.db))
|
|
.then(function() {
|
|
log.info('Database "%s" created', conn.db)
|
|
})
|
|
.catch(alreadyExistsError, function() {
|
|
log.info('Database "%s" already exists', conn.db)
|
|
return Promise.resolve()
|
|
})
|
|
}
|
|
|
|
function createTable(table, options) {
|
|
var tableOptions = {
|
|
primaryKey: options.primaryKey
|
|
}
|
|
return rutil.run(conn, r.tableCreate(table, tableOptions))
|
|
.then(function() {
|
|
log.info('Table "%s" created', table)
|
|
})
|
|
.catch(alreadyExistsError, function() {
|
|
log.info('Table "%s" already exists', table)
|
|
return Promise.resolve()
|
|
})
|
|
.catch(noMasterAvailableError, function() {
|
|
return Promise.delay(1000).then(function() {
|
|
return createTable(table, options)
|
|
})
|
|
})
|
|
.then(function() {
|
|
if (options.indexes) {
|
|
return Promise.all(Object.keys(options.indexes).map(function(index) {
|
|
return createIndex(table, index, options.indexes[index])
|
|
}))
|
|
}
|
|
})
|
|
}
|
|
|
|
function createIndex(table, index, fn) {
|
|
return rutil.run(conn, r.table(table).indexCreate(index, fn))
|
|
.then(function() {
|
|
log.info('Index "%s"."%s" created', table, index)
|
|
})
|
|
.catch(alreadyExistsError, function() {
|
|
log.info('Index "%s"."%s" already exists', table, index)
|
|
return Promise.resolve()
|
|
})
|
|
.catch(noMasterAvailableError, function() {
|
|
return Promise.delay(1000).then(function() {
|
|
return createIndex(table, index, fn)
|
|
})
|
|
})
|
|
}
|
|
|
|
return createDatabase()
|
|
.then(function() {
|
|
return Promise.all(Object.keys(tables).map(function(table) {
|
|
return createTable(table, tables[table])
|
|
}))
|
|
})
|
|
.return(conn)
|
|
}
|