Search in sources :

Example 11 with AppCategory

use of ai.elimu.model.project.AppCategory in project webapp by elimu-ai.

the class AppListController method handlRequest.

@RequestMapping(value = "/list", method = RequestMethod.GET)
public String handlRequest(Model model, @PathVariable Long projectId, @PathVariable Long appCategoryId, @PathVariable Long appGroupId, HttpSession session) {
    logger.info("handleRequest");
    logger.info("projectId: " + projectId);
    Project project = projectDao.read(projectId);
    model.addAttribute("project", project);
    logger.info("appCategoryId: " + appCategoryId);
    AppCategory appCategory = appCategoryDao.read(appCategoryId);
    model.addAttribute("appCategory", appCategory);
    logger.info("appGroupId: " + appGroupId);
    AppGroup appGroup = appGroupDao.read(appGroupId);
    model.addAttribute("appGroup", appGroup);
    return "project/app/list";
}
Also used : Project(ai.elimu.model.project.Project) AppGroup(ai.elimu.model.project.AppGroup) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 12 with AppCategory

use of ai.elimu.model.project.AppCategory in project webapp by elimu-ai.

the class AppCategoryCreateController method handleRequest.

@RequestMapping(method = RequestMethod.GET)
public String handleRequest(@PathVariable Long projectId, Model model, HttpSession session) {
    logger.info("handleRequest");
    // Needed by breadcrumbs
    Project project = projectDao.read(projectId);
    model.addAttribute("project", project);
    AppCategory appCategory = new AppCategory();
    model.addAttribute("appCategory", appCategory);
    return "project/app-category/create";
}
Also used : Project(ai.elimu.model.project.Project) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 13 with AppCategory

use of ai.elimu.model.project.AppCategory in project webapp by elimu-ai.

the class AppCategoryCreateController method handleSubmit.

@RequestMapping(method = RequestMethod.POST)
public String handleSubmit(HttpSession session, @PathVariable Long projectId, @Valid AppCategory appCategory, BindingResult result, Model model) {
    logger.info("handleSubmit");
    // Disallow app categories with identical name
    Project project = projectDao.read(projectId);
    List<AppCategory> existingAppCategories = project.getAppCategories();
    for (AppCategory existingAppCategory : existingAppCategories) {
        if (existingAppCategory.getName().equals(appCategory.getName())) {
            result.rejectValue("name", "NonUnique");
            break;
        }
    }
    if (result.hasErrors()) {
        model.addAttribute("project", project);
        model.addAttribute("appCategory", appCategory);
        return "project/app-category/create";
    } else {
        appCategoryDao.create(appCategory);
        project.getAppCategories().add(appCategory);
        projectDao.update(project);
        if (EnvironmentContextLoaderListener.env == Environment.PROD) {
            // Notify project members in Slack
            Contributor contributor = (Contributor) session.getAttribute("contributor");
            String text = URLEncoder.encode(contributor.getFirstName() + " just added a new App Category:\n" + "• Project: \"" + project.getName() + "\"\n" + "• App Category: \"" + appCategory.getName() + "\"\n" + "See ") + "http://elimu.ai/project/" + project.getId();
            SlackApiHelper.postMessage("G6UR7UH2S", text, null, null);
        }
        return "redirect:/project/" + project.getId() + "/app-category/list#" + appCategory.getId();
    }
}
Also used : Project(ai.elimu.model.project.Project) Contributor(ai.elimu.model.Contributor) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 14 with AppCategory

use of ai.elimu.model.project.AppCategory in project webapp by elimu-ai.

the class AppGroupCreateController method handleSubmit.

@RequestMapping(method = RequestMethod.POST)
public String handleSubmit(HttpSession session, @PathVariable Long projectId, @PathVariable Long appCategoryId, @Valid AppGroup appGroup, BindingResult result, Model model) {
    logger.info("handleSubmit");
    Project project = projectDao.read(projectId);
    model.addAttribute("project", project);
    AppCategory appCategory = appCategoryDao.read(appCategoryId);
    model.addAttribute("appCategory", appCategory);
    List<AppGroup> appGroups = appCategory.getAppGroups();
    if (!appGroups.isEmpty()) {
        // Do not allow creation of a new AppGroup if an empty one already exists
        for (AppGroup existingAppGroup : appGroups) {
            if (existingAppGroup.getApplications().isEmpty()) {
                result.reject("EmptyAppGroup");
                break;
            }
        }
    }
    if (result.hasErrors()) {
        model.addAttribute("appGroup", appGroup);
        return "project/app-group/create";
    } else {
        appGroupDao.create(appGroup);
        appCategory.getAppGroups().add(appGroup);
        appCategoryDao.update(appCategory);
        if (EnvironmentContextLoaderListener.env == Environment.PROD) {
            // Notify project members in Slack
            Contributor contributor = (Contributor) session.getAttribute("contributor");
            String text = URLEncoder.encode(contributor.getFirstName() + " just added a new App Group:\n" + "• Project: \"" + project.getName() + "\"\n" + "• App Category: \"" + appCategory.getName() + "\"\n" + "See ") + "http://elimu.ai/project/" + project.getId() + "/app-category/" + appCategory.getId() + "/app-group/list";
            SlackApiHelper.postMessage("G6UR7UH2S", text, null, null);
        }
        return "redirect:/project/" + project.getId() + "/app-category/" + appCategory.getId() + "/app-group/list";
    }
}
Also used : Project(ai.elimu.model.project.Project) Contributor(ai.elimu.model.Contributor) AppGroup(ai.elimu.model.project.AppGroup) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 15 with AppCategory

use of ai.elimu.model.project.AppCategory in project webapp by elimu-ai.

the class AppGroupListController method handlRequest.

@RequestMapping(value = "/list", method = RequestMethod.GET)
public String handlRequest(Model model, @PathVariable Long projectId, @PathVariable Long appCategoryId, HttpSession session) {
    logger.info("handleRequest");
    logger.info("projectId: " + projectId);
    Project project = projectDao.read(projectId);
    model.addAttribute("project", project);
    logger.info("appCategoryId: " + appCategoryId);
    AppCategory appCategory = appCategoryDao.read(appCategoryId);
    model.addAttribute("appCategory", appCategory);
    return "project/app-group/list";
}
Also used : Project(ai.elimu.model.project.Project) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

AppCategory (ai.elimu.model.project.AppCategory)18 Project (ai.elimu.model.project.Project)14 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)12 AppGroup (ai.elimu.model.project.AppGroup)9 Contributor (ai.elimu.model.Contributor)5 ApplicationVersion (ai.elimu.model.admin.ApplicationVersion)5 Application (ai.elimu.model.admin.Application)4 ArrayList (java.util.ArrayList)3 AppCollection (ai.elimu.model.project.AppCollection)2 ApplicationGson (ai.elimu.model.gson.admin.ApplicationGson)1 ApplicationVersionGson (ai.elimu.model.gson.admin.ApplicationVersionGson)1 AppCategoryGson (ai.elimu.model.gson.project.AppCategoryGson)1 AppCollectionGson (ai.elimu.model.gson.project.AppCollectionGson)1 License (ai.elimu.model.project.License)1 Gson (com.google.gson.Gson)1 IOException (java.io.IOException)1 Date (java.util.Date)1 ByteArrayApkFile (net.dongliu.apk.parser.ByteArrayApkFile)1 ApkMeta (net.dongliu.apk.parser.bean.ApkMeta)1 JSONArray (org.json.JSONArray)1