Page MenuHomeIn-Portal Phabricator

INP-1906 Execute "customProcessing" method in the "OnDelete" and "OnDeleteAll" events
Needs ReviewPublic

Authored by erik on Wed, Apr 2, 6:20 AM.

Details

Reviewers
alex
Summary

ensured customProcessing call for OnDelete and OnDeleteAll events

Test Plan

Preparations

Put following code as the kDBEventHandler::customProcessing method body.

if ( $event->Name == 'OnDelete' && $type == 'before' ) {
	trigger_error('OnDelete custom processing', E_USER_NOTICE);
}

if ( $event->Name == 'OnDeleteAll' && $type == 'before' ) {
	trigger_error('OnDeleteAll custom processing', E_USER_NOTICE);
}

if ( $event->Name == 'OnMassDelete' && $type == 'before' ) {
	trigger_error('OnMassDelete custom processing', E_USER_NOTICE);
}

Testing

  1. login to the adm. console, ensure that front-end theme "advanced" is default theme
  2. go to the User ManagementUsers section, create some regular user
  3. select some regular user in the Users grid and press "Login As"
  4. on front-end click on "My Addresses" link in the left side-box
  5. in the "My Addresses" section click on "New Address" link, create some address
  6. in the "My Addresses" press on "Delete" link
  7. in the adm. console go to the Logs & ReportsE-mail Log section
  8. press "Delete All" button in the section toolbar, confirm items deletion, asked in js alert
  9. go to the ConfigurationWebsiteStop Words section, select and delete some records from "Stop Words" grid
  10. go to the Logs & ReportsSystem Log section, confirm, that just created records with messages "OnDeleteAll custom processing", "OnMassDelete custom processing" and "OnDelete custom processing"

Diff Detail

Repository
rINP In-Portal
Branch
/in-portal/branches/5.2.x
Lint
Lint OK
Unit
No Unit Test Coverage
Build Status
Buildable 11075
Build 3775: arc lint + arc unit

Event Timeline

erik created this revision.Wed, Apr 2, 6:20 AM
erik requested review of this revision.Wed, Apr 2, 6:20 AM
erik edited the test plan for this revision. (Show Details)Wed, Apr 2, 6:23 AM
alex edited the test plan for this revision. (Show Details)Thu, Apr 3, 2:14 AM
alex requested changes to this revision.Thu, Apr 3, 2:32 AM
alex added inline comments.
core/kernel/db/db_event_handler.php
1763–1764

please exit from the method using inverted condition


IF ends at the same time, when the method ends

1768–1776

Please:

  1. add an array $ids parameter to this method
  2. rename method to the deleteByIds

usage of the ids $event parameter is internal logic of this method and should not be exposed to whoever calls it

1778

Add this code above the selected line:

$event->setEventParam('ids', $ids);

See above.

1874–1876

Please use deleteByEventIDs method in this (the OnMassDelete) event as well.


Code of the deleteByEventIDs method mostly duplicates the selected code.

1876–1877

Please also move this line after the $ids = $this->StoreSelectedIDs($event); line.

This revision now requires changes to proceed.Thu, Apr 3, 2:32 AM
alex added a comment.Thu, Apr 3, 2:34 AM

Update test plan to cover requested changes as well.

erik edited the test plan for this revision. (Show Details)Thu, Apr 3, 6:01 AM
erik updated this revision to Diff 1329.Thu, Apr 3, 6:03 AM
erik marked 5 inline comments as done.
erik edited the test plan for this revision. (Show Details)

done all requested code improvements