Removed old unused data initializers, and rewrote the one in-use.
This commit is contained in:
parent
b7c8fd5aa8
commit
2c8df42a18
src/main/java/se/su/dsv/scipro
@ -2,36 +2,18 @@ package se.su.dsv.scipro;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import se.su.dsv.scipro.data.dao.interfaces.EventDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectClassDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectFollowerDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.RoleDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.StringResourceDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UserDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UsernameDao;
|
||||
import se.su.dsv.scipro.data.dataobjects.Employee;
|
||||
import se.su.dsv.scipro.data.dataobjects.Project;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectClass;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectFollower;
|
||||
import se.su.dsv.scipro.data.dataobjects.StringResource;
|
||||
import se.su.dsv.scipro.data.dataobjects.Student;
|
||||
import se.su.dsv.scipro.data.dataobjects.User;
|
||||
import se.su.dsv.scipro.data.dataobjects.Username;
|
||||
import se.su.dsv.scipro.data.enums.ProjectStatus;
|
||||
import se.su.dsv.scipro.data.enums.ProjectTeamMemberRoles;
|
||||
|
||||
/**
|
||||
* @author Richard Wilkinson - richard.wilkinson@jweekend.com
|
||||
*
|
||||
* Class defines default data to be pumped into database via dao-access.
|
||||
*/
|
||||
public class DataInitialiser {
|
||||
|
||||
//private static String[] dummyTitles = {"Wicket Event", "Party", "Breakfast At Tiffany's", "Holiday"};
|
||||
//private static String[] dummyLocations = {"London", "Paris", "Pub", "New York"};
|
||||
|
||||
@Autowired
|
||||
private EventDao eventDao;
|
||||
public class DataInitialiser {
|
||||
@Autowired
|
||||
private UserDao userDao;
|
||||
@Autowired
|
||||
@ -39,152 +21,71 @@ public class DataInitialiser {
|
||||
@Autowired
|
||||
private RoleDao roleDao;
|
||||
@Autowired
|
||||
private ProjectDao projectDao;
|
||||
@Autowired
|
||||
private StringResourceDao stringResourceDao;
|
||||
@Autowired
|
||||
private ProjectClassDao projectClassDao;
|
||||
@Autowired
|
||||
private ProjectFollowerDao projectFollowerDao;
|
||||
|
||||
/**
|
||||
* Creates some default table entries for empty installations.
|
||||
*/
|
||||
public void dataInit() {
|
||||
|
||||
ProjectClass masterClass;
|
||||
ProjectClass bachelorClass;
|
||||
|
||||
createDefaultProjectClasses();
|
||||
createDefaultUsers();
|
||||
}
|
||||
private void createDefaultProjectClasses(){
|
||||
if(projectClassDao.countAll() < 3){
|
||||
ProjectClass unknownClass = new ProjectClass(ProjectClass.UNKNOWN,"Unknown","Project class is unknown or could not be determined");
|
||||
unknownClass = projectClassDao.save(unknownClass);
|
||||
bachelorClass = new ProjectClass(ProjectClass.BACHELOR,"Bachelor","Bachelor degree thesis project");
|
||||
bachelorClass = projectClassDao.save(bachelorClass);
|
||||
masterClass = new ProjectClass(ProjectClass.MASTER,"Master","Master degree thesis project");
|
||||
masterClass = projectClassDao.save(masterClass);
|
||||
final ProjectClass masterClass = new ProjectClass(ProjectClass.MASTER,"Master","Master degree thesis project");;
|
||||
final ProjectClass bachelorClass = new ProjectClass(ProjectClass.BACHELOR,"Bachelor","Bachelor degree thesis project");;
|
||||
final ProjectClass unknownClass = new ProjectClass(ProjectClass.UNKNOWN,"Unknown","Project class is unknown or could not be determined");
|
||||
projectClassDao.save(unknownClass);
|
||||
projectClassDao.save(bachelorClass);
|
||||
projectClassDao.save(masterClass);
|
||||
}
|
||||
|
||||
User user = null;
|
||||
Student studentRole = null;
|
||||
User teacher = null;
|
||||
Employee employeeRole = null;
|
||||
Employee employeeRole2 = null;
|
||||
|
||||
}
|
||||
private void createDefaultUsers(){;
|
||||
if(userDao.countAll() == 0 ){
|
||||
user = new User();
|
||||
user.setFirstName("Martin");
|
||||
user.setLastName("Peters");
|
||||
user.setIdentifier(666L);
|
||||
user.setEmailAddress("martin@peters.tf");
|
||||
user = userDao.save(user);
|
||||
Username un = new Username();
|
||||
un.setRealm("DSV.SU.SE");
|
||||
un.setUserName("mpeters");
|
||||
un.setUser(user);
|
||||
un = usernameDao.save(un);
|
||||
studentRole = roleDao.makeStudent(user);
|
||||
roleDao.makeSysAdmin(user);
|
||||
|
||||
teacher = new User();
|
||||
teacher.setFirstName("Hugo");
|
||||
teacher.setLastName("Lärare");
|
||||
teacher.setIdentifier(99999999L);
|
||||
teacher.setEmailAddress("lärare@dsv.su.se");
|
||||
teacher = userDao.save(teacher);
|
||||
Username un2 = new Username();
|
||||
un2.setRealm("DSV.SU.SE");
|
||||
un2.setUserName("superman");
|
||||
un2.setUser(teacher);
|
||||
un2 = usernameDao.save(un2);
|
||||
employeeRole = roleDao.makeEmployee(teacher);
|
||||
|
||||
User extraStudent = new User();
|
||||
extraStudent.setFirstName("Stefan");
|
||||
extraStudent.setLastName("Student");
|
||||
extraStudent = userDao.save(extraStudent);
|
||||
Username eu = new Username();
|
||||
eu.setUser(extraStudent);
|
||||
eu.setRealm("DSV.SU.SE");
|
||||
eu.setUserName("extra");
|
||||
un2 = usernameDao.save(eu);
|
||||
roleDao.makeStudent(extraStudent);
|
||||
|
||||
User teacher2 = new User();
|
||||
teacher2.setFirstName("Hans");
|
||||
teacher2.setLastName("Handledare");
|
||||
teacher2.setIdentifier(439065363L);
|
||||
teacher2.setEmailAddress("hand@dsv.su.se");
|
||||
teacher2 = userDao.save(teacher2);
|
||||
Username t2u = new Username();
|
||||
t2u.setRealm("DSV.SU.SE");
|
||||
t2u.setUserName("hand");
|
||||
t2u.setUser(teacher2);
|
||||
t2u = usernameDao.save(t2u);
|
||||
employeeRole2 = roleDao.makeEmployee(teacher2);
|
||||
|
||||
}
|
||||
|
||||
if(projectDao.countAll() == 0 && false){
|
||||
Project project = new Project();
|
||||
project.addProjectParticipant(studentRole);
|
||||
project.setHeadSupervisor(employeeRole);
|
||||
project.setTitle("The superduper project about peer portals awesomeness");
|
||||
project.setProjectClass(projectClassDao.getProjectClass(ProjectClass.BACHELOR));
|
||||
project = projectDao.save(project);
|
||||
|
||||
project = new Project();
|
||||
project.addProjectParticipant(studentRole);
|
||||
project.setHeadSupervisor(employeeRole);
|
||||
project.setTitle("The crappy project");
|
||||
project.setProjectClass(projectClassDao.getProjectClass(ProjectClass.MASTER));
|
||||
project.setProjectStatus(ProjectStatus.COMPLETED);
|
||||
project = projectDao.save(project);
|
||||
|
||||
project = new Project();
|
||||
project.addProjectParticipant(studentRole);
|
||||
project.setHeadSupervisor(employeeRole2);
|
||||
project.setTitle("The third project");
|
||||
project.setProjectClass(projectClassDao.getProjectClass(ProjectClass.MASTER));
|
||||
project.setProjectStatus(ProjectStatus.ACTIVE);
|
||||
|
||||
|
||||
project = projectDao.save(project);
|
||||
ProjectFollower pf = new ProjectFollower();
|
||||
pf.setProject(project);
|
||||
pf.setFollower(employeeRole);
|
||||
pf.setProjectRole(ProjectTeamMemberRoles.REVIEWER);
|
||||
pf = projectFollowerDao.save(pf);
|
||||
|
||||
project.getProjectFollowers().add(pf);
|
||||
}
|
||||
|
||||
//doStringDefinitions();
|
||||
}
|
||||
|
||||
private void doStringDefinitions(){
|
||||
final String english = "en";
|
||||
final String swedish = "sv";
|
||||
String[][] en = {
|
||||
//Key followed by definition
|
||||
{"testKey","TestDefinitionInEnglish"},
|
||||
{"button.submit", "Submit"}
|
||||
};
|
||||
String[][] sv = {
|
||||
{"testKey","TestDefinitionInSwedish"},
|
||||
{"button.submit", "Skicka"}
|
||||
};
|
||||
|
||||
for(String[] arr : en){
|
||||
String key = arr[0];
|
||||
String value = arr[1];
|
||||
if(!stringResourceDao.isDefined(key, english))
|
||||
stringResourceDao.define(key, english, value);
|
||||
}
|
||||
for(String[] arr : sv){
|
||||
String key = arr[0];
|
||||
String value = arr[1];
|
||||
if(!stringResourceDao.isDefined(key, swedish)){
|
||||
StringResource sr = stringResourceDao.define(key, swedish, value);
|
||||
//System.out.println(sr);
|
||||
//Make a regular student
|
||||
{
|
||||
User user = new User();
|
||||
user.setFirstName("Default");
|
||||
user.setLastName("Student");
|
||||
user.setIdentifier(null);
|
||||
user.setEmailAddress("default.student@dsv.su.se");
|
||||
user = userDao.save(user);
|
||||
Username un = new Username();
|
||||
un.setRealm("DSV.SU.SE");
|
||||
un.setUserName("default.student");
|
||||
un.setUser(user);
|
||||
un = usernameDao.save(un);
|
||||
roleDao.makeStudent(user);
|
||||
}
|
||||
//Make an employee
|
||||
{
|
||||
User teacher = new User();
|
||||
teacher.setFirstName("Default");
|
||||
teacher.setLastName("Teacher");
|
||||
teacher.setIdentifier(null);
|
||||
teacher.setEmailAddress("default.teacher@dsv.su.se");
|
||||
teacher = userDao.save(teacher);
|
||||
Username un = new Username();
|
||||
un.setRealm("DSV.SU.SE");
|
||||
un.setUserName("default.teacher");
|
||||
un.setUser(teacher);
|
||||
un = usernameDao.save(un);
|
||||
roleDao.makeEmployee(teacher);
|
||||
}
|
||||
//Make a sysadm
|
||||
{
|
||||
User sysadm = new User();
|
||||
sysadm.setFirstName("Default");
|
||||
sysadm.setLastName("Sysadm");
|
||||
sysadm.setIdentifier(null);
|
||||
sysadm.setEmailAddress("default.sysadm@dsv.su.se");
|
||||
sysadm = userDao.save(sysadm);
|
||||
Username un = new Username();
|
||||
un.setRealm("DSV.SU.SE");
|
||||
un.setUserName("default.sysadm");
|
||||
un.setUser(sysadm);
|
||||
un = usernameDao.save(un);
|
||||
roleDao.makeSysAdmin(sysadm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,382 +0,0 @@
|
||||
package se.su.dsv.scipro.datainitializers;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Set;
|
||||
import java.util.TreeSet;
|
||||
|
||||
import org.joda.time.DateMidnight;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import se.su.dsv.scipro.data.dao.interfaces.EventDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.GroupEventDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectClassDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectEventDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectScheduleDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.RoleDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UserDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UsernameDao;
|
||||
import se.su.dsv.scipro.data.dataobjects.Employee;
|
||||
import se.su.dsv.scipro.data.dataobjects.GroupEvent;
|
||||
import se.su.dsv.scipro.data.dataobjects.Project;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectClass;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectEvent;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectSchedule;
|
||||
import se.su.dsv.scipro.data.dataobjects.Student;
|
||||
import se.su.dsv.scipro.data.dataobjects.SysAdmin;
|
||||
import se.su.dsv.scipro.data.dataobjects.User;
|
||||
import se.su.dsv.scipro.data.dataobjects.Username;
|
||||
|
||||
/**
|
||||
* @author Richard Wilkinson - richard.wilkinson@jweekend.com
|
||||
*
|
||||
*/
|
||||
public class EventDataInitializer {
|
||||
|
||||
@Autowired
|
||||
private EventDao eventDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectEventDao projectEventDao;
|
||||
|
||||
@Autowired
|
||||
private GroupEventDao groupEventDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectScheduleDao projectScheduleDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectDao projectDao;
|
||||
|
||||
@Autowired
|
||||
private RoleDao roleDao;
|
||||
|
||||
@Autowired
|
||||
private UserDao userDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectClassDao projectClassDao;
|
||||
|
||||
@Autowired
|
||||
private UsernameDao usernameDao;
|
||||
|
||||
private User adam;
|
||||
private User groupEventCreatorUser;
|
||||
|
||||
private User projectUser1;
|
||||
private User projectUser2;
|
||||
private Project project1;
|
||||
private Project project2;
|
||||
|
||||
protected ProjectEvent indEvent;
|
||||
protected ProjectEvent deletedIndEvent;
|
||||
|
||||
private ProjectClass prClass;
|
||||
|
||||
private GroupEvent groupEvent;
|
||||
private GroupEvent deletedGroupEvent;
|
||||
|
||||
|
||||
public void dataInit() {
|
||||
|
||||
User dan = new User();
|
||||
dan.setFirstName("Dan");
|
||||
dan.setLastName("Kjellman");
|
||||
dan = userDao.save(dan);
|
||||
dan = userDao.save(dan);
|
||||
|
||||
Username un = new Username();
|
||||
un.setRealm("DSV.SU.SE");
|
||||
un.setUserName("dan-kjel");
|
||||
un.setUser(dan);
|
||||
un = usernameDao.save(un);
|
||||
|
||||
prClass = new ProjectClass(ProjectClass.MASTER, "Master",null);
|
||||
prClass = projectClassDao.save(prClass);
|
||||
|
||||
Student danStudent = new Student();
|
||||
danStudent.setUser(dan);
|
||||
danStudent = (Student) roleDao.save(danStudent);
|
||||
|
||||
Employee danEmployee = new Employee();
|
||||
danEmployee.setUser(dan);
|
||||
danEmployee = (Employee) roleDao.save(danEmployee);
|
||||
|
||||
SysAdmin danSysAdmin = new SysAdmin();
|
||||
danSysAdmin.setUser(dan);
|
||||
danSysAdmin = (SysAdmin) roleDao.save(danSysAdmin);
|
||||
|
||||
adam = new User();
|
||||
adam.setFirstName("Adam");
|
||||
adam.setLastName("Student");
|
||||
adam = userDao.save(adam);
|
||||
|
||||
Student adamStudent = new Student();
|
||||
adamStudent.setUser(adam);
|
||||
adamStudent = (Student) roleDao.save(adamStudent);
|
||||
|
||||
Project noScheduleProject = new Project();
|
||||
noScheduleProject.setTitle("No schedule project");
|
||||
noScheduleProject.addProjectParticipant(danStudent);
|
||||
noScheduleProject.addProjectParticipant(adamStudent);
|
||||
noScheduleProject.setProjectClass(prClass);
|
||||
noScheduleProject = projectDao.save(noScheduleProject);
|
||||
|
||||
groupEventCreatorUser = new User();
|
||||
groupEventCreatorUser.setFirstName("eventCreatorUser");
|
||||
groupEventCreatorUser = userDao.save(groupEventCreatorUser);
|
||||
|
||||
Employee groupEventCreatorUserRole = new Employee();
|
||||
groupEventCreatorUserRole.setUser(groupEventCreatorUser);
|
||||
groupEventCreatorUserRole = (Employee) roleDao.save(groupEventCreatorUserRole);
|
||||
|
||||
projectUser1 = new User();
|
||||
projectUser1.setFirstName("Nisse");
|
||||
projectUser1.setLastName("Student");
|
||||
projectUser1 = userDao.save(projectUser1);
|
||||
|
||||
Student projectUser1Role = new Student();
|
||||
projectUser1Role.setUser(projectUser1);
|
||||
projectUser1Role = (Student) roleDao.save(projectUser1Role);
|
||||
|
||||
projectUser2 = new User();
|
||||
projectUser2.setFirstName("Kalle");
|
||||
projectUser2.setLastName("Student");
|
||||
projectUser2 = userDao.save(projectUser2);
|
||||
|
||||
Student projectUser2Role = new Student();
|
||||
projectUser2Role.setUser(projectUser2);
|
||||
projectUser2Role = (Student) roleDao.save(projectUser2Role);
|
||||
|
||||
project1 = new Project();
|
||||
project1.setTitle("Project 1");
|
||||
project1.addProjectParticipant(adamStudent);
|
||||
project1.addProjectParticipant(danStudent);
|
||||
project1.setProjectClass(prClass);
|
||||
project1 = projectDao.save(project1);
|
||||
|
||||
ProjectSchedule schedule1 = new ProjectSchedule();
|
||||
schedule1.setProject(project1);
|
||||
schedule1 = projectScheduleDao.save(schedule1);
|
||||
|
||||
project2 = new Project();
|
||||
project2.setTitle("Project 2");
|
||||
project2.addProjectParticipant(adamStudent);
|
||||
project2.addProjectParticipant(projectUser2Role);
|
||||
project2.setProjectClass(prClass);
|
||||
project2 = projectDao.save(project2);
|
||||
|
||||
ProjectSchedule schedule2 = new ProjectSchedule();
|
||||
schedule2.setProject(project2);
|
||||
schedule2 = projectScheduleDao.save(schedule2);
|
||||
|
||||
indEvent = new ProjectEvent();
|
||||
indEvent.setTitle("Individual event title");
|
||||
indEvent.setDescription("Individual Event Description");
|
||||
indEvent.setDueDate(new Date(System.currentTimeMillis() + 100000));
|
||||
Set<Student> indEventStudents = new TreeSet<Student>();
|
||||
indEventStudents.add(adamStudent);
|
||||
indEvent.setParticipants(indEventStudents);
|
||||
indEvent.setProjectSchedule(schedule1);
|
||||
indEvent.setCreator(groupEventCreatorUser);
|
||||
indEvent = projectEventDao.save(indEvent);
|
||||
|
||||
deletedIndEvent = new ProjectEvent();
|
||||
deletedIndEvent.setTitle("Deleted Individual Event title");
|
||||
deletedIndEvent.setDescription("Deleted Individual Event description");
|
||||
deletedIndEvent.setDueDate(new Date(System.currentTimeMillis() + 100000));
|
||||
deletedIndEvent.setDeleted(true);
|
||||
Set<Student> indDeletedEventStudents = new TreeSet<Student>();
|
||||
indDeletedEventStudents.add(adamStudent);
|
||||
indEvent.setParticipants(indDeletedEventStudents);
|
||||
deletedIndEvent.setProjectSchedule(schedule1);
|
||||
deletedIndEvent.setCreator(groupEventCreatorUser);
|
||||
deletedIndEvent = projectEventDao.save(deletedIndEvent);
|
||||
|
||||
groupEvent = new GroupEvent();
|
||||
groupEvent.setTitle("Group event title");
|
||||
groupEvent.setDescription("Group Event Description");
|
||||
groupEvent.setDueDate(new Date(System.currentTimeMillis() + 500000000));
|
||||
groupEvent.addProjectSchedule(schedule1);
|
||||
groupEvent.addProjectSchedule(schedule2);
|
||||
groupEvent.setCreator(groupEventCreatorUser);
|
||||
groupEvent = groupEventDao.save(groupEvent);
|
||||
|
||||
deletedGroupEvent = new GroupEvent();
|
||||
deletedGroupEvent.setTitle("Deleted group Event title");
|
||||
deletedGroupEvent.setDescription("Deleted group Event description");
|
||||
deletedGroupEvent.setDueDate(new Date(System.currentTimeMillis() + 100000));
|
||||
deletedGroupEvent.setDeleted(true);
|
||||
deletedGroupEvent.addProjectSchedule(schedule1);
|
||||
deletedGroupEvent.addProjectSchedule(schedule2);
|
||||
deletedGroupEvent.setCreator(groupEventCreatorUser);
|
||||
deletedGroupEvent = groupEventDao.save(deletedGroupEvent);
|
||||
|
||||
DateMidnight date1 = new DateMidnight();
|
||||
int count = 0;
|
||||
for(int i = 1; i < 6; i++){
|
||||
date1 = date1.plusWeeks(i);
|
||||
indEvent = new ProjectEvent();
|
||||
indEvent.setTitle("Project event " + count++);
|
||||
indEvent.setDescription("Project event description");
|
||||
indEvent.setDueDate(date1.toDate());
|
||||
Set<Student> students = new TreeSet<Student>();
|
||||
students.add(adamStudent);
|
||||
if(count % 2 == 0){
|
||||
students.add(projectUser1Role);
|
||||
}
|
||||
indEvent.setParticipants(students);
|
||||
indEvent.setProjectSchedule(schedule1);
|
||||
indEvent.setCreator(groupEventCreatorUser);
|
||||
indEvent = projectEventDao.save(indEvent);
|
||||
}
|
||||
|
||||
date1 = new DateMidnight();
|
||||
for(int i = 1; i < 6; i++){
|
||||
date1 = date1.minusWeeks(i);
|
||||
indEvent = new ProjectEvent();
|
||||
indEvent.setTitle("Project event " + count++);
|
||||
indEvent.setDescription("Duis quis faucibus odio. Ut ullamcorper elit eu lacus gravida pharetra. Nunc fermentum tincidunt purus, nec dignissim massa feugiat a. Quisque vestibulum, elit in convallis commodo, metus ipsum accumsan lorem, vitae pulvinar odio odio ac dolor. Donec arcu quam, consectetur scelerisque interdum eget, tempus non odio. Vestibulum pellentesque viverra diam vitae bibendum. In congue fringilla suscipit. Sed semper tortor nec ligula mollis a tempus mauris interdum. Phasellus sit amet mauris leo, ut mollis velit.");
|
||||
indEvent.setDueDate(date1.toDate());
|
||||
Set<Student> students = new TreeSet<Student>();
|
||||
students.add(adamStudent);
|
||||
if(count % 2 == 0){
|
||||
students.add(projectUser1Role);
|
||||
}
|
||||
indEvent.setParticipants(students);
|
||||
indEvent.setProjectSchedule(schedule1);
|
||||
indEvent.setCreator(groupEventCreatorUser);
|
||||
indEvent = projectEventDao.save(indEvent);
|
||||
}
|
||||
|
||||
date1 = new DateMidnight();
|
||||
for(int i = 1; i < 6; i++){
|
||||
date1 = date1.minusWeeks(i).minusDays(1);
|
||||
groupEvent = new GroupEvent();
|
||||
groupEvent.setTitle("Group event " + count++);
|
||||
groupEvent.setDescription("Duis quis faucibus odio. Ut ullamcorper elit eu lacus gravida pharetra. Nunc fermentum tincidunt purus, nec dignissim massa feugiat a. Quisque vestibulum, elit in convallis commodo, metus ipsum accumsan lorem, vitae pulvinar odio odio ac dolor. Donec arcu quam, consectetur scelerisque interdum eget, tempus non odio. Vestibulum pellentesque viverra diam vitae bibendum. In congue fringilla suscipit. Sed semper tortor nec ligula mollis a tempus mauris interdum. Phasellus sit amet mauris leo, ut mollis velit.");
|
||||
groupEvent.setDueDate(date1.toDate());
|
||||
groupEvent.addProjectSchedule(schedule1);
|
||||
groupEvent.addProjectSchedule(schedule2);
|
||||
groupEvent.setCreator(groupEventCreatorUser);
|
||||
groupEvent = groupEventDao.save(groupEvent);
|
||||
}
|
||||
|
||||
date1 = new DateMidnight();
|
||||
for(int i = 1; i < 6; i++){
|
||||
date1 = date1.plusWeeks(i).plusDays(1);
|
||||
groupEvent = new GroupEvent();
|
||||
groupEvent.setTitle("Group event " + count++);
|
||||
groupEvent.setDescription("Group Event Description");
|
||||
groupEvent.setDueDate(date1.toDate());
|
||||
groupEvent.addProjectSchedule(schedule1);
|
||||
groupEvent.addProjectSchedule(schedule2);
|
||||
groupEvent.setCreator(groupEventCreatorUser);
|
||||
groupEvent = groupEventDao.save(groupEvent);
|
||||
}
|
||||
|
||||
date1 = new DateMidnight();
|
||||
for(int i = 1; i < 6; i++){
|
||||
|
||||
date1 = date1.plusDays(i).plus(60 * 60 * 1000);
|
||||
groupEvent = new GroupEvent();
|
||||
groupEvent.setTitle("Group event " + count++);
|
||||
groupEvent.setDescription("Group Event Description");
|
||||
groupEvent.setDueDate(date1.toDate());
|
||||
groupEvent.addProjectSchedule(schedule1);
|
||||
groupEvent.addProjectSchedule(schedule2);
|
||||
groupEvent.setCreator(groupEventCreatorUser);
|
||||
groupEvent = groupEventDao.save(groupEvent);
|
||||
|
||||
date1 = new DateMidnight();
|
||||
date1 = date1.plusDays(i);
|
||||
indEvent = new ProjectEvent();
|
||||
indEvent.setTitle("Project event " + count++);
|
||||
indEvent.setDescription("Project event description");
|
||||
indEvent.setDueDate(date1.toDate());
|
||||
Set<Student> students = new TreeSet<Student>();
|
||||
students.add(adamStudent);
|
||||
if(count % 2 == 0){
|
||||
students.add(projectUser1Role);
|
||||
}
|
||||
indEvent.setParticipants(students);
|
||||
indEvent.setProjectSchedule(schedule1);
|
||||
indEvent.setCreator(groupEventCreatorUser);
|
||||
indEvent = projectEventDao.save(indEvent);
|
||||
}
|
||||
|
||||
System.out.println("DONE");
|
||||
}
|
||||
|
||||
|
||||
public EventDao getEventDao() {
|
||||
return eventDao;
|
||||
}
|
||||
|
||||
|
||||
public void setEventDao(EventDao eventDao) {
|
||||
this.eventDao = eventDao;
|
||||
}
|
||||
|
||||
|
||||
public GroupEventDao getGroupEventDao() {
|
||||
return groupEventDao;
|
||||
}
|
||||
|
||||
|
||||
public void setGroupEventDao(GroupEventDao groupEventDao) {
|
||||
this.groupEventDao = groupEventDao;
|
||||
}
|
||||
|
||||
|
||||
public ProjectScheduleDao getProjectScheduleDao() {
|
||||
return projectScheduleDao;
|
||||
}
|
||||
|
||||
|
||||
public void setProjectScheduleDao(ProjectScheduleDao projectScheduleDao) {
|
||||
this.projectScheduleDao = projectScheduleDao;
|
||||
}
|
||||
|
||||
|
||||
public ProjectDao getProjectDao() {
|
||||
return projectDao;
|
||||
}
|
||||
|
||||
|
||||
public void setProjectDao(ProjectDao projectDao) {
|
||||
this.projectDao = projectDao;
|
||||
}
|
||||
|
||||
|
||||
public RoleDao getRoleDao() {
|
||||
return roleDao;
|
||||
}
|
||||
|
||||
|
||||
public void setRoleDao(RoleDao roleDao) {
|
||||
this.roleDao = roleDao;
|
||||
}
|
||||
|
||||
|
||||
public UserDao getUserDao() {
|
||||
return userDao;
|
||||
}
|
||||
|
||||
|
||||
public void setUserDao(UserDao userDao) {
|
||||
this.userDao = userDao;
|
||||
}
|
||||
|
||||
|
||||
public ProjectEventDao getProjectEventDao() {
|
||||
return projectEventDao;
|
||||
}
|
||||
|
||||
|
||||
public void setProjectEventDao(ProjectEventDao projectEventDao) {
|
||||
this.projectEventDao = projectEventDao;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,69 +0,0 @@
|
||||
package se.su.dsv.scipro.datainitializers;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectEventTemplateDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.RoleDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UserDao;
|
||||
import se.su.dsv.scipro.data.dataobjects.Employee;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectEventTemplate;
|
||||
import se.su.dsv.scipro.data.dataobjects.SysAdmin;
|
||||
import se.su.dsv.scipro.data.dataobjects.User;
|
||||
|
||||
public class EventTemplatesInitializer {
|
||||
|
||||
@Autowired
|
||||
private UserDao userDao;
|
||||
|
||||
@Autowired
|
||||
private RoleDao roleDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectEventTemplateDao eventTemplateDao;
|
||||
|
||||
public void dataInit(){
|
||||
User supervisorUser = new User();
|
||||
supervisorUser = userDao.save(supervisorUser);
|
||||
|
||||
Employee supervisorRole = new Employee();
|
||||
supervisorRole.setUser(supervisorUser);
|
||||
supervisorRole = (Employee) roleDao.save(supervisorRole);
|
||||
|
||||
User sysAdminUser = new User();
|
||||
sysAdminUser = userDao.save(sysAdminUser);
|
||||
|
||||
SysAdmin sysAdminRole = new SysAdmin();
|
||||
sysAdminRole.setUser(sysAdminUser);
|
||||
sysAdminRole = (SysAdmin) roleDao.save(sysAdminRole);
|
||||
|
||||
ProjectEventTemplate projectEventTemplate = new ProjectEventTemplate();
|
||||
projectEventTemplate.setTitle("projectEventTemplate title");
|
||||
projectEventTemplate.setDescription("Project event template description");
|
||||
projectEventTemplate.setTemplateCreator(supervisorUser);
|
||||
projectEventTemplate = (ProjectEventTemplate) eventTemplateDao.save(projectEventTemplate);
|
||||
|
||||
ProjectEventTemplate projectEventTemplateSysAdmin = new ProjectEventTemplate();
|
||||
projectEventTemplateSysAdmin.setTitle("projectEventTemplateSysAdmin title");
|
||||
projectEventTemplateSysAdmin.setDescription("projectEventTemplateSysAdmin description");
|
||||
projectEventTemplateSysAdmin.setTemplateCreator(sysAdminUser);
|
||||
projectEventTemplateSysAdmin = (ProjectEventTemplate) eventTemplateDao.save(projectEventTemplateSysAdmin);
|
||||
|
||||
User employeeAndSysAdminUser = new User();
|
||||
employeeAndSysAdminUser = userDao.save(employeeAndSysAdminUser);
|
||||
|
||||
SysAdmin employeeAndSysAdminUserSysAdminRole = new SysAdmin();
|
||||
employeeAndSysAdminUserSysAdminRole.setUser(employeeAndSysAdminUser);
|
||||
employeeAndSysAdminUserSysAdminRole = (SysAdmin) roleDao.save(employeeAndSysAdminUserSysAdminRole);
|
||||
|
||||
Employee employeeAndSysAdminUserEmpRole = new Employee();
|
||||
employeeAndSysAdminUserEmpRole.setUser(employeeAndSysAdminUser);
|
||||
employeeAndSysAdminUserEmpRole = (Employee) roleDao.save(employeeAndSysAdminUserEmpRole);
|
||||
|
||||
ProjectEventTemplate pr1 = new ProjectEventTemplate();
|
||||
pr1.setTitle("pr1 title");
|
||||
pr1.setDescription("pr1 description");
|
||||
pr1.setTemplateCreator(employeeAndSysAdminUser);
|
||||
pr1 = (ProjectEventTemplate) eventTemplateDao.save(pr1);
|
||||
|
||||
}
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
package se.su.dsv.scipro.datainitializers;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectClassDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ProjectEventTemplateDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.RoleDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.ScheduleTemplateDao;
|
||||
import se.su.dsv.scipro.data.dao.interfaces.UserDao;
|
||||
import se.su.dsv.scipro.data.dataobjects.Employee;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectClass;
|
||||
import se.su.dsv.scipro.data.dataobjects.ProjectEventTemplate;
|
||||
import se.su.dsv.scipro.data.dataobjects.ScheduleTemplate;
|
||||
import se.su.dsv.scipro.data.dataobjects.Student;
|
||||
import se.su.dsv.scipro.data.dataobjects.SysAdmin;
|
||||
import se.su.dsv.scipro.data.dataobjects.User;
|
||||
|
||||
public class ScheduleTemplateInitializer {
|
||||
|
||||
@Autowired
|
||||
private UserDao userDao;
|
||||
|
||||
@Autowired
|
||||
private RoleDao roleDao;
|
||||
|
||||
@Autowired
|
||||
private ScheduleTemplateDao scheduleTemplateDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectEventTemplateDao eventTemplateDao;
|
||||
|
||||
@Autowired
|
||||
private ProjectClassDao projectClassDao;
|
||||
|
||||
private User supervisorUser;
|
||||
private Employee supervisorRole;
|
||||
|
||||
private User sysAdminUser;
|
||||
private SysAdmin sysAdminRole;
|
||||
|
||||
private ScheduleTemplate sysAdminTemplate;
|
||||
private ScheduleTemplate employeeTemplate;
|
||||
|
||||
private ProjectEventTemplate projectEventTemplateSysAdmin;
|
||||
private ProjectEventTemplate projectEventTemplate;
|
||||
|
||||
public void dataInit(){
|
||||
supervisorUser = new User();
|
||||
supervisorUser.setFirstName("Adam");
|
||||
supervisorUser.setLastName("Supervisor");
|
||||
supervisorUser = userDao.save(supervisorUser);
|
||||
|
||||
supervisorRole = new Employee();
|
||||
supervisorRole.setUser(supervisorUser);
|
||||
supervisorRole = (Employee) roleDao.save(supervisorRole);
|
||||
|
||||
sysAdminUser = new User();
|
||||
sysAdminUser.setFirstName("Eva");
|
||||
sysAdminUser.setLastName("SysAdmin");
|
||||
sysAdminUser = userDao.save(sysAdminUser);
|
||||
|
||||
sysAdminRole = new SysAdmin();
|
||||
sysAdminRole.setUser(sysAdminUser);
|
||||
sysAdminRole = (SysAdmin) roleDao.save(sysAdminRole);
|
||||
|
||||
|
||||
ProjectClass masterClass = new ProjectClass(ProjectClass.MASTER, "Master",null);
|
||||
ProjectClass bachelorClass = new ProjectClass(ProjectClass.BACHELOR,"Bachelor",null);
|
||||
masterClass = projectClassDao.save(masterClass);
|
||||
bachelorClass = projectClassDao.save(bachelorClass);
|
||||
|
||||
for(int i = 0; i < 20; i++){
|
||||
ScheduleTemplate s = new ScheduleTemplate();
|
||||
s.setActive(true);
|
||||
s.setTemplateName("ScheduleTemplate no " + i);
|
||||
if(i % 2 == 0){
|
||||
s.setCreator(supervisorUser);
|
||||
s.setProjectClass(bachelorClass);
|
||||
} else {
|
||||
s.setCreator(sysAdminUser);
|
||||
s.setSysAdminTemplate(true);
|
||||
s.setProjectClass(masterClass);
|
||||
}
|
||||
s = scheduleTemplateDao.save(s);
|
||||
}
|
||||
|
||||
ScheduleTemplate s = new ScheduleTemplate();
|
||||
s.setActive(true);
|
||||
s.setTemplateName("A test template");
|
||||
s.setTemplateDescription("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque et magna in nulla rutrum dictum. Nunc at dolor nunc. Morbi quis augue vel urna posuere pharetra at non quam. Nunc elit mauris, commodo sed gravida sed, tempus in tortor. \nPellentesque accumsan nulla ante, in pulvinar velit. Mauris in nisi mi, fermentum porttitor turpis. Vivamus non nunc ipsum. Phasellus ultricies malesuada nibh eget dapibus. Duis id ipsum at tellus bibendum eleifend id sed augue. Nunc ornare vehicula dapibus. Praesent eget arcu ut elit tempus hendrerit. Aliquam imperdiet, quam at convallis volutpat, diam orci elementum ante, at luctus nunc leo sed elit.");
|
||||
s.setCreator(supervisorUser);
|
||||
s.setProjectClass(bachelorClass);
|
||||
s = scheduleTemplateDao.save(s);
|
||||
|
||||
for(int i = 0; i < 10; i++){
|
||||
ProjectEventTemplate e = new ProjectEventTemplate();
|
||||
e.setTemplateCreator(supervisorUser);
|
||||
e.setDescription("Duis quis faucibus odio. Ut ullamcorper elit eu lacus gravida pharetra. Nunc fermentum tincidunt purus, nec dignissim massa feugiat a. Quisque vestibulum, elit in convallis commodo, metus ipsum accumsan lorem, vitae pulvinar odio odio ac dolor. Donec arcu quam, consectetur scelerisque interdum eget, tempus non odio. Vestibulum pellentesque viverra diam vitae bibendum. In congue fringilla suscipit. Sed semper tortor nec ligula mollis a tempus mauris interdum. Phasellus sit amet mauris leo, ut mollis velit.");
|
||||
e.setEstimatedTimeConsumption(10);
|
||||
e.setNumberInOrder(i);
|
||||
e.setTitle("Event tempalte no: " + i);
|
||||
s.addProjectEventTemplate(e);
|
||||
}
|
||||
|
||||
s = scheduleTemplateDao.save(s);
|
||||
|
||||
|
||||
User u = new User();
|
||||
u.setFirstName("Dan");
|
||||
u.setLastName("Allaroller");
|
||||
u = userDao.save(u);
|
||||
|
||||
Employee us = new Employee();
|
||||
us.setUser(u);
|
||||
us = (Employee) roleDao.save(us);
|
||||
|
||||
SysAdmin usa = new SysAdmin();
|
||||
usa.setUser(u);
|
||||
usa = (SysAdmin) roleDao.save(usa);
|
||||
|
||||
Student st = new Student();
|
||||
st.setUser(u);
|
||||
st = (Student) roleDao.save(st);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user