From 1fff14f0a5e25adaa851537c71c7bd8381c1bbb1 Mon Sep 17 00:00:00 2001 From: Koren Lev Date: Mon, 2 Oct 2017 11:37:03 +0300 Subject: ui move to docker Change-Id: Iff31ebb3fff782e848704801b7800fdf480264a1 Signed-off-by: Koren Lev (cherry picked from commit a9691f5fe78af32c474754f841a71a68e2d2a484) --- ui/imports/startup/both/config.js | 9 ---- ui/imports/startup/both/configs/accounts.js | 9 ---- ui/imports/startup/both/index.js | 10 ---- ui/imports/startup/client/index.js | 39 --------------- ui/imports/startup/client/template-helpers.js | 38 --------------- ui/imports/startup/server/config.js | 9 ---- ui/imports/startup/server/configs/accounts.js | 16 ------- ui/imports/startup/server/index.js | 13 ----- ui/imports/startup/server/register-api.js | 63 ------------------------- ui/imports/startup/server/seeds.js | 10 ---- ui/imports/startup/server/seeds/constants.js | 68 --------------------------- ui/imports/startup/server/seeds/users.js | 51 -------------------- 12 files changed, 335 deletions(-) delete mode 100644 ui/imports/startup/both/config.js delete mode 100644 ui/imports/startup/both/configs/accounts.js delete mode 100644 ui/imports/startup/both/index.js delete mode 100644 ui/imports/startup/client/index.js delete mode 100644 ui/imports/startup/client/template-helpers.js delete mode 100644 ui/imports/startup/server/config.js delete mode 100644 ui/imports/startup/server/configs/accounts.js delete mode 100644 ui/imports/startup/server/index.js delete mode 100644 ui/imports/startup/server/register-api.js delete mode 100644 ui/imports/startup/server/seeds.js delete mode 100644 ui/imports/startup/server/seeds/constants.js delete mode 100644 ui/imports/startup/server/seeds/users.js (limited to 'ui/imports/startup') diff --git a/ui/imports/startup/both/config.js b/ui/imports/startup/both/config.js deleted file mode 100644 index ac7c9a2..0000000 --- a/ui/imports/startup/both/config.js +++ /dev/null @@ -1,9 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 './configs/accounts'; diff --git a/ui/imports/startup/both/configs/accounts.js b/ui/imports/startup/both/configs/accounts.js deleted file mode 100644 index 2653abe..0000000 --- a/ui/imports/startup/both/configs/accounts.js +++ /dev/null @@ -1,9 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 / -///////////////////////////////////////////////////////////////////////////////////////// - diff --git a/ui/imports/startup/both/index.js b/ui/imports/startup/both/index.js deleted file mode 100644 index 62d0ef5..0000000 --- a/ui/imports/startup/both/index.js +++ /dev/null @@ -1,10 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 '/imports/api/simple-schema.init'; -import './config'; diff --git a/ui/imports/startup/client/index.js b/ui/imports/startup/client/index.js deleted file mode 100644 index 6439511..0000000 --- a/ui/imports/startup/client/index.js +++ /dev/null @@ -1,39 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 './template-helpers.js'; - -import '/imports/ui/store/store'; -import '/imports/ui/components/landing/landing'; -import '/imports/ui/components/main/main'; -import '/imports/ui/components/loading/loading'; -import '/imports/ui/components/top-navbar-menu/top-navbar-menu'; -import '/imports/ui/components/environment/environment'; -import '/imports/ui/components/environment-wizard/environment-wizard'; -import '/imports/ui/components/scanning-request/scanning-request'; -import '/imports/ui/components/scheduled-scan/scheduled-scan'; -import '/imports/ui/components/project-dashboard/project-dashboard'; -import '/imports/ui/components/region-dashboard/region-dashboard'; -import '/imports/ui/components/zone-dashboard/zone-dashboard'; -import '/imports/ui/components/host-dashboard/host-dashboard'; -import '/imports/ui/components/aggregate-dashboard/aggregate-dashboard'; -import '/imports/ui/components/scans-list/scans-list'; -import '/imports/ui/components/scheduled-scans-list/scheduled-scans-list'; -import '/imports/ui/components/link-types-list/link-types-list'; -import '/imports/ui/components/link-type/link-type'; -import '/imports/ui/components/clique-types-list/clique-types-list'; -import '/imports/ui/components/clique-type/clique-type'; -import '/imports/ui/components/clique-constraints-list/clique-constraints-list'; -import '/imports/ui/components/clique-constraint/clique-constraint'; -import '/imports/ui/components/user-list/user-list'; -import '/imports/ui/components/user/user'; -import '/imports/ui/components/messages-list/messages-list'; -import '/imports/ui/components/message/message'; -import '/imports/ui/components/dashboard/dashboard'; -import '/imports/ui/components/new-scanning/new-scanning'; -import '/imports/ui/components/user-settings/user-settings'; diff --git a/ui/imports/startup/client/template-helpers.js b/ui/imports/startup/client/template-helpers.js deleted file mode 100644 index 23eaf50..0000000 --- a/ui/imports/startup/client/template-helpers.js +++ /dev/null @@ -1,38 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 * as utils from '/imports/lib/utilities'; -import { Counter } from 'meteor/natestrauser:publish-performant-counts'; - -Template.registerHelper('asHash', function (params) { - return params.hash; -}); - -Template.registerHelper('idToStr', utils.idToStr); - -Template.registerHelper('rPath', function (source, pathStr) { - let path = R.split('.', pathStr); - return R.path(path, source); -}); - -Template.registerHelper('asArray', function (val) { - return [val]; -}); - -Template.registerHelper('countOf', function (name) { - if (name) { - return Counter.get(name); - } -}); - - -Template.registerHelper('jsonAsString', function (val) { - let str = JSON.stringify(val, null, 4); - return str; -}); diff --git a/ui/imports/startup/server/config.js b/ui/imports/startup/server/config.js deleted file mode 100644 index ac7c9a2..0000000 --- a/ui/imports/startup/server/config.js +++ /dev/null @@ -1,9 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 './configs/accounts'; diff --git a/ui/imports/startup/server/configs/accounts.js b/ui/imports/startup/server/configs/accounts.js deleted file mode 100644 index f098233..0000000 --- a/ui/imports/startup/server/configs/accounts.js +++ /dev/null @@ -1,16 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 / -///////////////////////////////////////////////////////////////////////////////////////// -Accounts.validateNewUser((_user) => { - let loggedInUser = Meteor.user(); - if (Roles.userIsInRole(loggedInUser, 'manage-users', Roles.GLOBAL_GROUP)) { - return true; - } - - throw new Meteor.Error(403, 'NotAuthorized to create new users'); -}); diff --git a/ui/imports/startup/server/index.js b/ui/imports/startup/server/index.js deleted file mode 100644 index ee22e45..0000000 --- a/ui/imports/startup/server/index.js +++ /dev/null @@ -1,13 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 / -///////////////////////////////////////////////////////////////////////////////////////// -// This defines all the collections, publications and methods that the application provides -// as an API to the client. -import './register-api.js'; -import './seeds.js'; -import './config.js'; diff --git a/ui/imports/startup/server/register-api.js b/ui/imports/startup/server/register-api.js deleted file mode 100644 index f0be6ce..0000000 --- a/ui/imports/startup/server/register-api.js +++ /dev/null @@ -1,63 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 '../../api/constants/server/publications'; - -import '../../api/environments/server/publications.js'; -import '../../api/environments/methods.js'; - -import '../../api/inventories/server/publications.js'; -import '../../api/inventories/server/methods.js'; - -import '../../api/scans/server/publications.js'; -import '../../api/scans/methods.js'; -import '../../api/scans/server/methods.js'; - -import '../../api/scheduled-scans/server/publications.js'; -import '../../api/scheduled-scans/methods.js'; -import '../../api/scheduled-scans/server/methods.js'; - -import '../../api/messages/server/publications'; -import '../../api/messages/server/methods'; -import '../../api/messages/methods.js'; - -import '../../api/cliques/server/publications'; -import '../../api/cliques/methods.js'; - -import '../../api/links/server/publications'; -import '../../api/links/methods.js'; -import '../../api/links/server/methods'; - -import '../../api/statistics/server/publications'; -import '../../api/statistics/methods.js'; - -import '../../api/attributes_for_hover_on_data/server/publications'; -import '../../api/attributes_for_hover_on_data/methods.js'; - -import '../../api/link-types/server/publications'; -import '../../api/link-types/methods.js'; - -import '../../api/clique-types/server/publications'; -import '../../api/clique-types/methods.js'; - -import '../../api/clique-constraints/server/publications'; -import '../../api/clique-constraints/methods.js'; - -import '../../api/accounts/server/publications'; -import '../../api/accounts/methods'; - -import '../../api/supported_environments/server/publications'; -import '../../api/supported_environments/methods'; - -import '../../api/user-settings/server/publications'; -import '../../api/user-settings/methods'; - -import '../../api/connection-tests/server/publications'; -import '../../api/connection-tests/methods'; - -import '../../api/migrations/migrations'; diff --git a/ui/imports/startup/server/seeds.js b/ui/imports/startup/server/seeds.js deleted file mode 100644 index a6132bf..0000000 --- a/ui/imports/startup/server/seeds.js +++ /dev/null @@ -1,10 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 './seeds/constants'; //disabled as of US2758. -import './seeds/users'; diff --git a/ui/imports/startup/server/seeds/constants.js b/ui/imports/startup/server/seeds/constants.js deleted file mode 100644 index 2d59d99..0000000 --- a/ui/imports/startup/server/seeds/constants.js +++ /dev/null @@ -1,68 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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 { Constants } from '/imports/api/constants/constants'; -import * as R from 'ramda'; -import { Distributions } from '/imports/api/constants/data/distributions'; -//import { NetworkPlugins } from './data/network-plugins'; -import { LogLevels } from '/imports/api/constants/data/log-levels'; -import { MechanismDrivers } from '/imports/api/constants/data/mechanism-drivers'; -import { ObjectTypesForLinks } from '/imports/api/constants/data/object-types-for-links'; -import { TypeDrivers } from '/imports/api/constants/data/type-drivers'; -import { EnvTypes } from '/imports/api/constants/data/env-types'; -import { Statuses as ScansStatuses } from '/imports/api/constants/data/scans-statuses'; -import { EnvironmentMonitoringTypes } from '/imports/api/constants/data/environment-monitoring-types'; -import { EnvProvisionTypes } from '/imports/api/constants/data/environment-provision-types'; -import { MessageSourceSystems } from '/imports/api/constants/data/message-source-systems'; - -let constantsDefaults = [{ - name: 'env_types', - values: EnvTypes -}, { - name: 'scans_statuses', - values: ScansStatuses -}, { - name: 'environment_monitoring_types', - values: EnvironmentMonitoringTypes -}, { - name: 'distributions', - values: Distributions -}, { - name: 'log_levels', - values: LogLevels -}, { - name: 'mechanism_drivers', - values: MechanismDrivers -}, { - name: 'object_types_for_links', - values: ObjectTypesForLinks -}, { - name: 'type_drivers', - values: TypeDrivers -}, { - name: 'environment_provision_types', - values: EnvProvisionTypes -}, { - name: 'message_source_systems', - values: MessageSourceSystems -}]; - -if (Meteor.server) { - R.forEach((def) => { - insertConstants(Constants, def.name, def.values); - }, constantsDefaults); -} - -function insertConstants(collection, name, values) { - if (collection.find({ name: name}).count() === 0) { - Constants.insert({ - name: name, - data: values - }); - } -} diff --git a/ui/imports/startup/server/seeds/users.js b/ui/imports/startup/server/seeds/users.js deleted file mode 100644 index 34c20c6..0000000 --- a/ui/imports/startup/server/seeds/users.js +++ /dev/null @@ -1,51 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////////////// -// 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); -- cgit 1.2.3-korg