realm.join and realm.unjoin are never fired

Description

KNL-523 introduced separate events for joining and unjoining a site. However there is a bug in this code. The 'realm.join' or 'realm.unjoin' event is only added if the event is null, which it never is:

BaseAuthzGroupService. joinGroup method has this:
((BaseAuthzGroup) azGroup).setEvent(SECURE_UPDATE_OWN_AUTHZ_GROUP);

which then calls addMemberToAuthzGroup which has this:

String event = ((BaseAuthzGroup) azGroup).getEvent();
if (event == null) event = SECURE_JOIN_AUTHZ_GROUP;

So the event string will always be set as the first one, whidh is realm.upd.own, and not realm.join.

This is a problem in both joining and unjoining and the fix is the same, remove the first setEvent call and have each individual method set the correct event.

Activity

Steve Swinsburg January 28, 2013 at 2:58 PM

1.2.x r118909

Neal Caidin November 26, 2012 at 8:28 AM

bulk close using query: "1.3.x status" in (Resolved, Closed) and status in (Resolved, Verified) and project = "KNL" and fixVersion = "1.3.0" and resolution = Fixed

Sam Ottenhoff September 21, 2012 at 8:15 AM

1.3.x: r113288

Sam Ottenhoff September 20, 2012 at 8:47 AM

Tested and confirmed locally.

Hudson CI Server September 16, 2012 at 10:11 PM

Integrated in kernel-trunk #544 (See http://builds.sakaiproject.org:8080/job/kernel-trunk/544/)
realm.join and realm.unjoin are now fired correctly (Revision 112494)

Result = SUCCESS

Fixed

Details

Priority

Affects versions

Fix versions

Components

Assignee

Reporter

Created September 16, 2012 at 8:55 PM
Updated April 25, 2018 at 3:18 PM
Resolved September 16, 2012 at 9:05 PM