Skip to content

Commit

Permalink
Fix potential security vulnerabilities (#14313)
Browse files Browse the repository at this point in the history
* upgrade dependencies

lodash to 4.17.15
angularJS to v1.6.10

Signed-off-by: Oleksii Kurinnyi <okurinny@redhat.com>

* fix unit tests

Signed-off-by: Oleksii Kurinnyi <okurinny@redhat.com>

* fix tests for Che Multiuser

Signed-off-by: Oleksii Kurinnyi <okurinny@redhat.com>

* restore dialogs controllers initialization

* fixup! fix tests for Che Multiuser
  • Loading branch information
akurinnoy authored Sep 16, 2019
1 parent b896a49 commit f387e1a
Show file tree
Hide file tree
Showing 135 changed files with 710 additions and 258 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"license": "EPL-1.0",
"devDependencies": {
"angular-bootstrap": "^0.12.2",
"angular-mocks": "1.4.8",
"angular-mocks": "1.6.10",
"awesome-typescript-loader": "^1.1.1",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
Expand Down Expand Up @@ -62,7 +62,7 @@
"karma-ng-html2js-preprocessor": "~0.1.2",
"karma-phantomjs-launcher": "~1.0.4",
"karma-webpack": "^2.0.9",
"lodash": "4.17.11",
"lodash": "4.17.15",
"merge-stream": "^1.0.1",
"minimist": "^1.2.0",
"ng-annotate-loader": "^0.6.1",
Expand Down Expand Up @@ -96,20 +96,20 @@
"test": "gulp test"
},
"dependencies": {
"angular": "1.4.8",
"angular-animate": "1.4.8",
"angular-aria": "1.4.8",
"angular-cookies": "1.4.8",
"angular": "1.6.10",
"angular-animate": "1.6.10",
"angular-aria": "1.6.10",
"angular-cookies": "1.6.10",
"angular-file-upload": "2.0.0",
"angular-filter": "0.5.4",
"angular-gravatar": "0.2.4",
"angular-material": "1.0.1",
"angular-messages": "1.4.8",
"angular-messages": "1.6.10",
"angular-moment": "0.9.0",
"angular-resource": "1.4.8",
"angular-route": "1.4.8",
"angular-sanitize": "1.4.8",
"angular-touch": "1.4.8",
"angular-resource": "1.6.10",
"angular-route": "1.6.10",
"angular-sanitize": "1.6.10",
"angular-touch": "1.6.10",
"angular-ui-bootstrap": "1.1.2",
"angular-uuid4": "0.3.1",
"angular-websocket": "1.0.9",
Expand Down
5 changes: 5 additions & 0 deletions src/app/admin/user-management/add-user/add-user.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ export class AdminsAddUserController {
});
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Callback of the cancel button of the dialog.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ export class AdminUserDetailsController {
this.updateData();
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Update user's data.
*/
Expand Down
5 changes: 5 additions & 0 deletions src/app/admin/user-management/user-management.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ export class AdminsUserManagementCtrl {
this.pagesInfo = this.cheUser.getPagesInfo();
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Callback when name is changed.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export class DockerRegistryListController {
$scope.$on('$destroy', () => {
cheListHelperFactory.removeHelper(helperId);
});
}

$onInit(): void {
this.getRegistries();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ export class EditRegistryController {
}
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* It will hide the dialog box.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ export class DashboardLastWorkspacesController {
constructor(cheWorkspace: CheWorkspace, cheNotification: CheNotification) {
this.cheWorkspace = cheWorkspace;
this.cheNotification = cheNotification;
}

$onInit(): void {
this.loadData();
}

Expand All @@ -48,7 +50,7 @@ export class DashboardLastWorkspacesController {
this.isLoading = false;
return;
}

let promise = this.cheWorkspace.fetchWorkspaces();

promise.then((result) => {
Expand Down
16 changes: 10 additions & 6 deletions src/app/demo-components/demo-components.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@ export class DemoComponentsController {
this.$location = $location;
this.cheNotification = cheNotification;

const tab = $location.search().tab;
if (Tab[tab]) {
this.selectedIndex = parseInt(Tab[tab], 10);
} else {
this.selectedIndex = Tab.Font;
}
this.placement = {
options: [
'top',
Expand Down Expand Up @@ -105,6 +99,16 @@ export class DemoComponentsController {
orderNumber: 1
}]
};
}

$onInit(): void {
const tab = this.$location.search().tab;
if (Tab[tab]) {
this.selectedIndex = parseInt(Tab[tab], 10);
} else {
this.selectedIndex = Tab.Font;
}

this.init();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ export class FactoryActionBoxController {
this.selectedAction = this.actions[0].id;
}

$onInit(): void { }

/**
* Edit the action based on the provided index
* @param $event the mouse event
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ export class FactoryActionDialogEditController {
this.isFile = angular.isDefined(this.selectedValue.file);
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Callback of the edit button of the dialog.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ export class FactoryCommandDialogEditController {
this.$mdDialog = $mdDialog;
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Callback of the edit button of the dialog.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ export class FactoryCommandController {
this.$mdDialog = $mdDialog;
}

$onInit(): void { }

/**
* User clicked on the add button to add a new command
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,6 @@ export class FactoryFromFileCtrl {
this.factoryContent = null;
}

$onInit(): void { }

}
5 changes: 5 additions & 0 deletions src/app/factories/create-factory/create-factory.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ export class CreateFactoryCtrl {
});
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Clear factory content
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
*/
export class CreateFactoryGitController {


$onInit(): void { }

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ export class FactoryFromTemplateController {
this.isImporting = false;
this.factoryContent = null;
this.templateName = 'minimal';
}

$onInit(): void {
this.updateFactoryContent();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,21 @@ export class FactoryFromWorkspaceCtrl {
this.cheNotification = cheNotification;
this.workspacesService = workspacesService;

this.workspaces = cheAPI.getWorkspace().getWorkspaces().filter((workspace: che.IWorkspace) => {
return this.workspacesService.isSupported(workspace);
});
this.workspacesById = cheAPI.getWorkspace().getWorkspacesById();

this.filtersWorkspaceSelected = {};

this.workspaceFilter = {config: {name: ''}};

this.isLoading = true;
}

// fetch workspaces when initializing
let promise = cheAPI.getWorkspace().fetchWorkspaces();
$onInit(): void {
this.workspaces = this.cheAPI.getWorkspace().getWorkspaces().filter((workspace: che.IWorkspace) => {
return this.workspacesService.isSupported(workspace);
});
this.workspacesById = this.cheAPI.getWorkspace().getWorkspacesById();

// fetch workspaces when initializing
let promise = this.cheAPI.getWorkspace().fetchWorkspaces();
promise.then(() => {
this.isLoading = false;
this.updateData();
Expand All @@ -67,7 +68,6 @@ export class FactoryFromWorkspaceCtrl {
this.updateData();
}
});

}

updateData(): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ export class FactoryDetailsController {
});
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Returns `true` if supported version of factory workspace.
* @returns {boolean}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class FactoryInformationController {
private $timeout: ng.ITimeoutService;
private lodash: any;
private $filter: ng.IFilterService;
private cheBranding: CheBranding;

private timeoutPromise: ng.IPromise<any>;
private editorLoadedPromise: ng.IPromise<any>;
Expand Down Expand Up @@ -73,7 +74,7 @@ export class FactoryInformationController {
this.lodash = lodash;
this.$filter = $filter;
this.confirmDialogService = confirmDialogService;
this.factoryDocs = cheBranding.getDocs().factory;
this.cheBranding = cheBranding;

this.timeoutPromise = null;
$scope.$on('$destroy', () => {
Expand All @@ -97,14 +98,18 @@ export class FactoryInformationController {

this.stackRecipeMode = 'current-recipe';

this.updateData();
$scope.$watch(() => {
return this.factory;
}, () => {
this.updateData();
});
}

$onInit(): void {
this.factoryDocs = this.cheBranding.getDocs().factory;
this.updateData();
}

/**
* Update factory content data for editor
*/
Expand Down
8 changes: 5 additions & 3 deletions src/app/factories/last-factories/last-factories.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,16 @@ export class LastFactoriesController {
constructor(cheFactory: CheFactory) {
this.cheFactory = cheFactory;

this.factories = this.cheFactory.getPageFactories();

// TODO we should change to modificationDate after model's change
this.factoriesOrderBy = '-creator.created';
this.maxItems = 5;
}

$onInit(): void {
this.factories = this.cheFactory.getPageFactories();

// TODO add OrderBy to condition in fetch API
let promise = this.cheFactory.fetchFactories(this.maxItems);
const promise = this.cheFactory.fetchFactories(this.maxItems);

this.isLoading = true;
promise.finally(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ export class FactoryItemController {
this.loadFactoryService = loadFactoryService;
}

$onInit(): void { }

/**
* Returns `true` if supported version of factory workspace.
* @returns {boolean}
Expand Down
5 changes: 5 additions & 0 deletions src/app/factories/list-factories/list-factories.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ export class ListFactoriesController {
this.pagesInfo = cheAPI.getFactory().getPagesInfo();
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Provides actual list of factories to helper.
*/
Expand Down
5 changes: 5 additions & 0 deletions src/app/factories/load-factory/load-factory.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ export class LoadFactoryController {
this.getFactoryData();
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
* Hides menu and footer to maximize view.
*/
Expand Down
2 changes: 2 additions & 0 deletions src/app/ide/ide-iframe/ide-iframe.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class IdeIframe implements ng.IDirective {
this.templateUrl = 'app/ide/ide-iframe/ide-iframe.html';
}

$onInit(): void { }

}

export default IdeIframe;
Expand Down
4 changes: 4 additions & 0 deletions src/app/ide/ide.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@ class IdeCtrl {
this.updateData();
});
}
}

$onInit(): void {
// this method won't be called here
// place all initialization code in constructor
}

/**
Expand Down
Loading

0 comments on commit f387e1a

Please sign in to comment.