use of org.olat.modules.vitero.model.GetUserInfo in project openolat by klemens.
the class ViteroManager method createVMSSessionCode.
/**
* Create a session code with a one hour expiration date
* @param identity
* @param booking
* @return
*/
protected String createVMSSessionCode(Identity identity) throws VmsNotAvailableException {
try {
GetUserInfo userInfo = getVmsUserId(identity, true);
int userId = userInfo.getUserId();
// update user information
if (!userInfo.isCreated()) {
try {
updateVmsUser(identity, userId);
storePortrait(identity, userId);
} catch (Exception e) {
log.error("Cannot update user on vitero system:" + identity.getName(), e);
}
}
CreateVmsSessionCodeRequest.Sessioncode code = new CreateVmsSessionCodeRequest.Sessioncode();
code.setUserid(userId);
code.setTimezone(viteroModule.getTimeZoneId());
Calendar cal = Calendar.getInstance();
cal.setTime(new Date());
cal.add(Calendar.HOUR, 1);
code.setExpirationdate(format(cal.getTime()));
CreateVmsSessionCodeRequest codeRequest = new CreateVmsSessionCodeRequest();
codeRequest.setSessioncode(code);
Codetype myCode = getSessionCodeWebService().createVmsSessionCode(codeRequest);
return myCode.getCode();
} catch (SOAPFaultException f) {
ErrorCode code = handleAxisFault(f);
switch(code) {
case userDoesntExist:
log.error("User does not exist.", f);
break;
case userNotAssignedToGroup:
log.error("User not assigned to group.", f);
break;
case invalidAttribut:
log.error("Invalid attribute.", f);
break;
case invalidTimezone:
log.error("Invalid time zone.", f);
break;
case bookingDoesntExist:
case bookingDoesntExistPrime:
log.error("Booking does not exist.", f);
break;
default:
logAxisError("Cannot create session code.", f);
}
return null;
} catch (WebServiceException e) {
if (e.getCause() instanceof ConnectException) {
throw new VmsNotAvailableException();
}
log.error("Cannot create session code.", e);
return null;
}
}
use of org.olat.modules.vitero.model.GetUserInfo in project openolat by klemens.
the class ViteroManager method deleteUserData.
@Override
public void deleteUserData(Identity identity, String newDeletedUserName, File archivePath) {
if (!viteroModule.isDeleteVmsUserOnUserDelete())
return;
try {
GetUserInfo userInfo = getVmsUserId(identity, false);
int userId = userInfo.getUserId();
if (userId > 0) {
deleteVmsUser(userId);
}
} catch (VmsNotAvailableException e) {
log.error("Cannot delete a vms user after a OLAT user deletion.", e);
}
}
use of org.olat.modules.vitero.model.GetUserInfo in project openolat by klemens.
the class ViteroManager method getBookingInFutures.
public List<ViteroBooking> getBookingInFutures(Identity identity) throws VmsNotAvailableException {
GetUserInfo userInfo = getVmsUserId(identity, false);
int userId = userInfo.getUserId();
if (userId > 0) {
List<Booking_Type> bookings = getBookingInFutureByUserId(userId);
return convert(bookings);
}
return Collections.emptyList();
}
use of org.olat.modules.vitero.model.GetUserInfo in project openolat by klemens.
the class ViteroManager method removeFromRoom.
public ViteroStatus removeFromRoom(ViteroBooking booking, Identity identity) throws VmsNotAvailableException {
GetUserInfo userInfo = getVmsUserId(identity, true);
int userId = userInfo.getUserId();
if (userId < 0) {
// nothing to remove
return new ViteroStatus();
}
return removeFromRoom(booking, userId);
}
use of org.olat.modules.vitero.model.GetUserInfo in project openolat by klemens.
the class ViteroManager method addToRoom.
public ViteroStatus addToRoom(ViteroBooking booking, Identity identity, GroupRole role) throws VmsNotAvailableException {
try {
GetUserInfo userInfo = getVmsUserId(identity, true);
int userId = userInfo.getUserId();
if (userId < 0) {
return new ViteroStatus(ErrorCode.userDoesntExist);
}
if (!userInfo.isCreated()) {
// update user information
try {
updateVmsUser(identity, userId);
// storePortrait(identity, userId);
} catch (Exception e) {
log.error("Cannot update user on vitero system:" + identity.getName(), e);
}
}
Group groupWs = getGroupWebService();
Groupiduserid groupuserId = new Groupiduserid();
groupuserId.setGroupid(booking.getGroupId());
groupuserId.setUserid(userId);
groupWs.addUserToGroup(groupuserId);
if (role != null) {
groupWs = getGroupWebService();
ChangeGroupRoleRequest roleRequest = new ChangeGroupRoleRequest();
roleRequest.setGroupid(booking.getGroupId());
roleRequest.setUserid(userId);
roleRequest.setRole(role.getVmsValue());
groupWs.changeGroupRole(roleRequest);
}
return new ViteroStatus();
} catch (SOAPFaultException f) {
ErrorCode code = handleAxisFault(f);
switch(code) {
case userDoesntExist:
log.error("The user doesn ́t exist!", f);
break;
case userNotAttachedToCustomer:
log.error("The user is not attached to the customer (to which this group belongs)", f);
break;
case groupDoesntExist:
log.error("The group doesn ́t exist", f);
break;
case invalidAttribut:
log.error("An id <= 0", f);
break;
default:
logAxisError("Cannot add an user to a group", f);
}
return new ViteroStatus(code);
} catch (WebServiceException e) {
if (e.getCause() instanceof ConnectException) {
throw new VmsNotAvailableException();
}
log.error("Cannot add an user to a group", e);
return new ViteroStatus(ErrorCode.unkown);
}
}
Aggregations