use of org.activityinfo.server.database.hibernate.entity.Attribute in project activityinfo by bedatadriven.
the class CreateEntityHandler method createAttribute.
private CommandResult createAttribute(CreateEntity cmd, Map<String, Object> properties) {
Attribute attribute = new Attribute();
AttributeGroup ag = entityManager().getReference(AttributeGroup.class, properties.get("attributeGroupId"));
attribute.setGroup(ag);
updateAttributeProperties(properties, attribute);
// Assume
Activity activity = ag.getActivities().iterator().next();
// group has
// only one
// activity
entityManager().persist(attribute);
activity.getDatabase().setLastSchemaUpdate(new Date());
return new CreateResult(attribute.getId());
}
use of org.activityinfo.server.database.hibernate.entity.Attribute in project activityinfo by bedatadriven.
the class UpdateEntityHandler method updateAttribute.
private void updateAttribute(User user, UpdateEntity cmd, Map<String, Object> changes) {
Attribute attribute = entityManager().find(Attribute.class, cmd.getId());
// TODO: decide where attributes belong and how to manage them
// assertDesignPriviledges(user, attribute.get);
updateAttributeProperties(changes, attribute);
AttributeGroup ag = entityManager().find(AttributeGroup.class, attribute.getGroup().getId());
// Assume only
Activity activity = ag.getActivities().iterator().next();
// one
// activity
// for the
// attr group
activity.getDatabase().setLastSchemaUpdate(new Date());
}
use of org.activityinfo.server.database.hibernate.entity.Attribute in project activityinfo by bedatadriven.
the class SchemaUpdateBuilder method makeEntityLists.
private void makeEntityLists() {
for (UserDatabase database : databases) {
if (!userIds.contains(database.getOwner().getId())) {
User u = database.getOwner();
// don't send hashed password to client
// EEK i think hibernate will persist this to the database
// automatically if we change it here!!
// u.setHashedPassword("");
users.add(u);
userIds.add(u.getId());
}
if (!countryIds.contains(database.getCountry().getId())) {
countries.add(database.getCountry());
adminLevels.addAll(database.getCountry().getAdminLevels());
countryIds.add(database.getCountry().getId());
for (org.activityinfo.server.database.hibernate.entity.LocationType l : database.getCountry().getLocationTypes()) {
locationTypes.add(l);
}
}
for (Partner partner : database.getPartners()) {
if (!partnerIds.contains(partner.getId())) {
partners.add(partner);
partnerIds.add(partner.getId());
}
}
projects.addAll(new ArrayList<Project>(database.getProjects()));
allLockedPeriods.addAll(database.getLockedPeriods());
for (Project project : database.getProjects()) {
allLockedPeriods.addAll(project.getLockedPeriods());
}
for (Activity activity : database.getActivities()) {
allLockedPeriods.addAll(activity.getLockedPeriods());
activities.add(activity);
for (Indicator indicator : activity.getIndicators()) {
indicators.add(indicator);
List<IndicatorLinkEntity> links = findIndicatorLinks(indicator);
if (links != null && !links.isEmpty()) {
indicatorLinks.addAll(links);
}
}
for (AttributeGroup g : activity.getAttributeGroups()) {
if (!attributeGroupIds.contains(g.getId())) {
attributeGroups.add(g);
attributeGroupIds.add(g.getId());
for (Attribute a : g.getAttributes()) {
attributes.add(a);
}
}
}
}
}
}
Aggregations