use of org.onebusaway.users.model.properties.UserPropertiesV2 in project onebusaway-application-modules by camsys.
the class UserPropertiesServiceV2Impl method markServiceAlertAsRead.
@Override
public void markServiceAlertAsRead(User user, String situationId, long time, boolean isRead) {
UserPropertiesV2 properties = getProperties(user);
Map<String, Long> readSituationIdsWithReadTime = properties.getReadSituationIdsWithReadTime();
if (isRead) {
if (readSituationIdsWithReadTime == null) {
readSituationIdsWithReadTime = new HashMap<String, Long>();
properties.setReadSituationIdsWithReadTime(readSituationIdsWithReadTime);
}
readSituationIdsWithReadTime.put(situationId, time);
_userDao.saveOrUpdateUser(user);
} else {
if (readSituationIdsWithReadTime == null)
return;
if (readSituationIdsWithReadTime.remove(situationId) != null)
_userDao.saveOrUpdateUser(user);
}
}
use of org.onebusaway.users.model.properties.UserPropertiesV2 in project onebusaway-application-modules by camsys.
the class UserPropertiesServiceV2Impl method setDefaultLocation.
@Override
public void setDefaultLocation(User user, String locationName, double lat, double lon) {
UserPropertiesV2 properties = getProperties(user);
if (!properties.isRememberPreferencesEnabled())
return;
properties.setDefaultLocationName(locationName);
properties.setDefaultLocationLat(lat);
properties.setDefaultLocationLon(lon);
_userDao.saveOrUpdateUser(user);
}
use of org.onebusaway.users.model.properties.UserPropertiesV2 in project onebusaway-application-modules by camsys.
the class UserPropertiesServiceV2Impl method addStopBookmark.
@Override
public int addStopBookmark(User user, String name, List<String> stopIds, RouteFilter filter) {
UserPropertiesV2 properties = getProperties(user);
if (!properties.isRememberPreferencesEnabled())
return -1;
int maxId = 0;
for (Bookmark bookmark : properties.getBookmarks()) maxId = Math.max(maxId, bookmark.getId() + 1);
Bookmark bookmark = new Bookmark(maxId, name, stopIds, filter);
properties.getBookmarks().add(bookmark);
_userDao.saveOrUpdateUser(user);
return bookmark.getId();
}
use of org.onebusaway.users.model.properties.UserPropertiesV2 in project onebusaway-application-modules by camsys.
the class UserPropertiesServiceV2Impl method getUserAsBean.
@Override
public UserBean getUserAsBean(User user, UserBean bean) {
UserPropertiesV2 properties = getProperties(user);
bean.setRememberPreferencesEnabled(properties.isRememberPreferencesEnabled());
bean.setHasDefaultLocation(properties.hasDefaultLocationLat() && properties.hasDefaultLocationLon());
bean.setDefaultLocationName(properties.getDefaultLocationName());
bean.setDefaultLocationLat(properties.getDefaultLocationLat());
bean.setDefaultLocationLon(properties.getDefaultLocationLon());
List<String> stopIds = _lastSelectedStopService.getLastSelectedStopsForUser(user.getId());
bean.setLastSelectedStopIds(stopIds);
for (Bookmark bookmark : properties.getBookmarks()) {
BookmarkBean bookmarkBean = new BookmarkBean();
bookmarkBean.setId(bookmark.getId());
bookmarkBean.setName(bookmark.getName());
bookmarkBean.setStopIds(bookmark.getStopIds());
bookmarkBean.setRouteFilter(getRouteFilterAsBean(bookmark.getRouteFilter()));
bean.addBookmark(bookmarkBean);
}
bean.setMinApiRequestInterval(properties.getMinApiRequestInterval());
Map<String, Long> readServiceAlerts = properties.getReadSituationIdsWithReadTime();
if (readServiceAlerts == null)
readServiceAlerts = Collections.emptyMap();
bean.setReadServiceAlerts(readServiceAlerts);
return bean;
}
use of org.onebusaway.users.model.properties.UserPropertiesV2 in project onebusaway-application-modules by camsys.
the class UserPropertiesServiceVersionedInvocationHandler method getPropertiesVersion.
private int getPropertiesVersion(User user) {
UserProperties props = user.getProperties();
if (props instanceof UserPropertiesV1)
return 1;
if (props instanceof UserPropertiesV2)
return 2;
if (props instanceof UserPropertiesV3)
return 3;
if (props instanceof UserPropertiesV4)
return 4;
_log.warn("unknown user properties version: " + props.getClass());
return 0;
}
Aggregations