2020-07-15 16:28:34 +00:00
|
|
|
const axios = require('axios').default;
|
|
|
|
const data = require('../data');
|
|
|
|
|
|
|
|
let server = data.server
|
|
|
|
|
|
|
|
const rocketchat = axios.create({
|
|
|
|
baseURL: `${server}/api/v1/`,
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json;charset=UTF-8',
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const login = async (username, password) => {
|
|
|
|
console.log(`Logging in as user ${username}`)
|
|
|
|
const response = await rocketchat.post('login', {
|
|
|
|
"user": username,
|
|
|
|
"password": password
|
|
|
|
})
|
|
|
|
const userId = response.data.data.userId
|
|
|
|
const authToken = response.data.data.authToken
|
|
|
|
rocketchat.defaults.headers.common['X-User-Id'] = userId
|
|
|
|
rocketchat.defaults.headers.common['X-Auth-Token'] = authToken
|
|
|
|
}
|
|
|
|
|
|
|
|
const createUser = async (username, password, name, email) => {
|
|
|
|
console.log(`Creating user ${username}`)
|
|
|
|
try {
|
|
|
|
await rocketchat.post('users.create', {
|
|
|
|
"username": username,
|
|
|
|
"password": password,
|
|
|
|
"name": name,
|
|
|
|
"email": email
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
console.log(JSON.stringify(error))
|
|
|
|
throw "Failed to create user"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const createChannelIfNotExists = async (channelname) => {
|
2020-07-22 16:32:21 +00:00
|
|
|
console.log(`Creating public channel ${channelname}`)
|
2020-07-15 16:28:34 +00:00
|
|
|
try {
|
|
|
|
await rocketchat.post('channels.create', {
|
|
|
|
"name": channelname
|
|
|
|
})
|
|
|
|
} catch (createError) {
|
|
|
|
try { //Maybe it exists already?
|
|
|
|
await rocketchat.get(`channels.info?roomName=${channelname}`)
|
|
|
|
} catch (infoError) {
|
|
|
|
console.log(JSON.stringify(createError))
|
|
|
|
console.log(JSON.stringify(infoError))
|
2020-07-22 16:32:21 +00:00
|
|
|
throw "Failed to find or create public channel"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const createGroupIfNotExists = async (groupname) => {
|
|
|
|
console.log(`Creating private group ${groupname}`)
|
|
|
|
try {
|
|
|
|
await rocketchat.post('groups.create', {
|
|
|
|
"name": groupname
|
|
|
|
})
|
|
|
|
} catch (createError) {
|
|
|
|
try { //Maybe it exists already?
|
|
|
|
await rocketchat.get(`group.info?roomName=${groupname}`)
|
|
|
|
} catch (infoError) {
|
|
|
|
console.log(JSON.stringify(createError))
|
|
|
|
console.log(JSON.stringify(infoError))
|
|
|
|
throw "Failed to find or create private group"
|
2020-07-15 16:28:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const setup = async () => {
|
|
|
|
await login(data.adminUser, data.adminPassword)
|
|
|
|
|
|
|
|
for (var userKey in data.users) {
|
|
|
|
if (data.users.hasOwnProperty(userKey)) {
|
|
|
|
const user = data.users[userKey]
|
|
|
|
await createUser(user.username, user.password, user.username, user.email)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var channelKey in data.channels) {
|
|
|
|
if (data.channels.hasOwnProperty(channelKey)) {
|
|
|
|
const channel = data.channels[channelKey]
|
|
|
|
await createChannelIfNotExists(channel.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:32:21 +00:00
|
|
|
await login(data.users.regular.username, data.users.regular.password)
|
|
|
|
|
|
|
|
for (var groupKey in data.groups) {
|
|
|
|
if (data.groups.hasOwnProperty(groupKey)) {
|
|
|
|
const group = data.groups[groupKey]
|
|
|
|
await createGroupIfNotExists(group.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 16:28:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = setup
|