aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/startup/server/seeds/users.js
blob: 34c20c61d667ba17c3f8954cd3842e82dffe6d3a (plain)
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
/////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others /
//                                                                                      /
// All rights reserved. This program and the accompanying materials                     /
// are made available under the terms of the Apache License, Version 2.0                /
// which accompanies this distribution, and is available at                             /
// http://www.apache.org/licenses/LICENSE-2.0                                           /
/////////////////////////////////////////////////////////////////////////////////////////
import * as R from 'ramda';
import { Roles } from 'meteor/alanning:roles';

let users = [
  {
    username: 'admin',
    name: 'admin',
    email: 'admin@example.com',
    password: '123456',
    roles: [
      { role: 'manage-users', group: Roles.GLOBAL_GROUP },
      { role: 'manage-link-types', group: Roles.GLOBAL_GROUP },
      { role: 'manage-clique-types', group: Roles.GLOBAL_GROUP },
      { role: 'manage-clique-constraints', group: Roles.GLOBAL_GROUP },
      { role: 'view-env', group: Roles.GLOBAL_GROUP },
      { role: 'edit-env', group: Roles.GLOBAL_GROUP },
    ]
  }
];

R.forEach((user) => {
  let id;
  let userDb = Meteor.users.findOne({ username: user.username });
  if (R.isNil(userDb)) {
    console.log('creating user', user);
    id = Accounts.createUser({
      username: user.username,
      email: user.email,
      password: user.password,
      profile: { name: user.name }
    });
  } else {
    id = userDb._id;
  }

  if (user.roles.length > 0) {
    console.log('adding roles to user', user, user.roles);

    R.forEach((roleItem) => {
      Roles.addUsersToRoles(id, roleItem.role, roleItem.group);
    }, user.roles);
  }
}, users);