/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/
package org.olat.admin;
import org.olat.basesecurity.ManagerFactory;
import org.olat.core.commons.persistence.DBFactory;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.WindowManager;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.controller.BasicController;
import org.olat.core.id.Identity;
import org.olat.core.util.prefs.Preferences;
import org.olat.core.util.prefs.PreferencesFactory;
import org.olat.login.auth.OLATAuthManager;
import org.olat.registration.RegistrationManager;
/**
* Description:<br>
* TODO: patrickb Class Description for BulkReplayUserController
*
* <P>
* Initial Date: 13.11.2008 <br>
* @author patrickb
*/
class BulkReplayUserController extends BasicController implements Controller {
private BulkReplayUserFrom form;
protected BulkReplayUserController(UserRequest ureq, WindowControl control) {
super(ureq, control);
form = new BulkReplayUserFrom("bulkuserreplay", getTranslator());
form.addListener(this);
putInitialPanel(form);
}
/**
* @see org.olat.core.gui.control.DefaultController#doDispose()
*/
@Override
protected void doDispose() {
// TODO Auto-generated method stub
}
/**
* @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest, org.olat.core.gui.components.Component, org.olat.core.gui.control.Event)
*/
@Override
protected void event(UserRequest ureq, Component source, Event event) {
if(source == form){
String[] usernames = form.getUsernames();
Preferences[] bulkprefs = new Preferences[20];
boolean setReplayURL = form.isOn();
String password = form.getPassword();
for (int i = 0; i < usernames.length; i++) {
int pos = i % 20;
String identityName = usernames[i];
Identity identity = ManagerFactory.getManager().findIdentityByName(identityName);
bulkprefs[pos] = PreferencesFactory.getInstance().getPreferencesFor(identity, false);
if (setReplayURL) {
// selected -> true disable also ajax mode
bulkprefs[pos].putAndSave(WindowManager.class, "replayURLs", Boolean.TRUE);
bulkprefs[pos].putAndSave(WindowManager.class, "ajax-beta-on", Boolean.FALSE);
// confirmed disclaimer automatically for replayUrl-mode
RegistrationManager.getInstance().setHasConfirmedDislaimer(identity);
} else {
// not selected -> false enable also ajax mode
bulkprefs[pos].putAndSave(WindowManager.class, "replayURLs", Boolean.FALSE);
bulkprefs[pos].putAndSave(WindowManager.class, "ajax-beta-on", Boolean.TRUE);
}
if (password!=null && password.length()!=0) {
OLATAuthManager.changePassword(ureq.getIdentity(), identity, password);
}
if(pos == 0){
//its a bulkchange
DBFactory.getInstance(false).intermediateCommit();
bulkprefs = new Preferences[20];
}
}
}
}
}