Search in sources :

Example 1 with Project

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

the class AdminProjectEditController method handleRequest.

@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public String handleRequest(Model model, @PathVariable Long id) {
    logger.info("handleRequest");
    Project project = projectDao.read(id);
    model.addAttribute("project", project);
    List<Contributor> contributors = contributorDao.readAll();
    model.addAttribute("managers", contributors);
    return "admin/project/edit";
}
Also used : Project(ai.elimu.model.project.Project) Contributor(ai.elimu.model.Contributor) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 2 with Project

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

the class StringToProjectConverter method convert.

/**
 * Convert Project id to Project entity
 */
public Project convert(String id) {
    if (StringUtils.isBlank(id)) {
        return null;
    } else {
        Long projectId = Long.parseLong(id);
        Project project = projectDao.read(projectId);
        return project;
    }
}
Also used : Project(ai.elimu.model.project.Project)

Example 3 with Project

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

the class ProjectListController method handleListRequest.

@RequestMapping(value = "/list", method = RequestMethod.GET)
public String handleListRequest(Model model, HttpSession session) {
    logger.info("handleListRequest");
    Contributor contributor = (Contributor) session.getAttribute("contributor");
    List<Project> projects = projectDao.read(contributor);
    if (EnvironmentContextLoaderListener.env == Environment.DEV) {
        if (projects.isEmpty()) {
            // To ease development, auto-generate Projects
            projects = generateProjects(contributor);
        }
    }
    model.addAttribute("projects", projects);
    return "project/list";
}
Also used : Project(ai.elimu.model.project.Project) Contributor(ai.elimu.model.Contributor) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 4 with Project

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

the class AppCreateController method handleRequest.

@RequestMapping(method = RequestMethod.GET)
public String handleRequest(@PathVariable Long projectId, @PathVariable Long appCategoryId, @PathVariable Long appGroupId, @RequestParam(required = false) Long applicationId, Model model) {
    logger.info("handleRequest");
    Project project = projectDao.read(projectId);
    model.addAttribute("project", project);
    AppCategory appCategory = appCategoryDao.read(appCategoryId);
    model.addAttribute("appCategory", appCategory);
    AppGroup appGroup = appGroupDao.read(appGroupId);
    model.addAttribute("appGroup", appGroup);
    ApplicationVersion applicationVersion = new ApplicationVersion();
    logger.info("applicationId: " + applicationId);
    if (applicationId != null) {
        Application application = applicationDao.read(applicationId);
        applicationVersion.setApplication(application);
    }
    model.addAttribute("applicationVersion", applicationVersion);
    return "project/app/create";
}
Also used : Project(ai.elimu.model.project.Project) ApplicationVersion(ai.elimu.model.admin.ApplicationVersion) AppGroup(ai.elimu.model.project.AppGroup) Application(ai.elimu.model.admin.Application) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 5 with Project

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

the class AppCreateController method handleSubmit.

@RequestMapping(method = RequestMethod.POST)
public String handleSubmit(ApplicationVersion applicationVersion, @RequestParam("bytes") MultipartFile multipartFile, BindingResult result, Model model, HttpSession session, @PathVariable Long appGroupId, @PathVariable Long projectId, @PathVariable Long appCategoryId) {
    logger.info("handleSubmit");
    Project project = projectDao.read(projectId);
    AppCategory appCategory = appCategoryDao.read(appCategoryId);
    AppGroup appGroup = appGroupDao.read(appGroupId);
    boolean isUpdateOfExistingApplication = applicationVersion.getApplication() != null;
    logger.info("isUpdateOfExistingApplication: " + isUpdateOfExistingApplication);
    Contributor contributor = (Contributor) session.getAttribute("contributor");
    String packageName = null;
    if (multipartFile.isEmpty()) {
        result.rejectValue("bytes", "NotNull");
    } else {
        try {
            byte[] bytes = multipartFile.getBytes();
            Integer fileSizeInKb = bytes.length / 1024;
            logger.info("fileSizeInKb: " + fileSizeInKb + " (" + (fileSizeInKb / 1024) + "MB)");
            String contentType = multipartFile.getContentType();
            logger.info("contentType: " + contentType);
            // Auto-detect applicationId, versionCode, etc.
            ByteArrayApkFile byteArrayApkFile = new ByteArrayApkFile(bytes);
            ApkMeta apkMeta = byteArrayApkFile.getApkMeta();
            packageName = apkMeta.getPackageName();
            logger.info("packageName: " + packageName);
            String label = apkMeta.getLabel();
            logger.info("label: " + label);
            byte[] icon = byteArrayApkFile.getIconFile().getData();
            logger.info("icon.length: " + (icon.length / 1024) + "kB");
            Integer versionCode = apkMeta.getVersionCode().intValue();
            logger.info("versionCode: " + versionCode);
            String versionName = apkMeta.getVersionName();
            logger.info("versionName: " + versionName);
            Integer minSdkVersion = Integer.valueOf(apkMeta.getMinSdkVersion());
            logger.info("minSdkVersion: " + minSdkVersion);
            // Check if Application already exists in the same AppCategory
            // TODO
            applicationVersion.setBytes(bytes);
            applicationVersion.setFileSizeInKb(fileSizeInKb);
            applicationVersion.setChecksumMd5(ChecksumHelper.calculateMD5(bytes));
            applicationVersion.setContentType(contentType);
            applicationVersion.setVersionCode(versionCode);
            applicationVersion.setVersionName(versionName);
            applicationVersion.setLabel(label);
            applicationVersion.setMinSdkVersion(minSdkVersion);
            applicationVersion.setIcon(icon);
            applicationVersion.setTimeUploaded(Calendar.getInstance());
            applicationVersion.setContributor(contributor);
            if (isUpdateOfExistingApplication) {
                // Verify that the packageName of the APK update matches that of the Application
                if (!applicationVersion.getApplication().getPackageName().equals(packageName)) {
                    result.rejectValue("application", "NonUnique");
                }
            }
            if (!isUpdateOfExistingApplication) {
                // Verify that an Application with identical packageName has not already been uploaded withing the same Project
                Application existingApplication = applicationDao.readByPackageName(project, packageName);
                if (existingApplication != null) {
                    result.rejectValue("application", "NonUnique", new String[] { "application" }, null);
                }
            }
            if (isUpdateOfExistingApplication) {
                // Verify that the versionCode is higher than previous ones
                List<ApplicationVersion> existingApplicationVersions = applicationVersionDao.readAll(applicationVersion.getApplication());
                for (ApplicationVersion existingApplicationVersion : existingApplicationVersions) {
                    if (existingApplicationVersion.getVersionCode() >= applicationVersion.getVersionCode()) {
                        result.rejectValue("versionCode", "TooLow");
                        break;
                    }
                }
            }
        } catch (IOException ex) {
            logger.error(ex);
        }
    }
    if (result.hasErrors()) {
        model.addAttribute("project", project);
        model.addAttribute("appCategory", appCategory);
        model.addAttribute("appGroup", appGroup);
        return "project/app/create";
    } else {
        Application application = applicationVersion.getApplication();
        logger.info("application: " + application);
        if (application == null) {
            // First-time upload for packageName
            // Create new Application
            application = new Application();
            // TODO: Add Locale to each Project?
            application.setLocale(contributor.getLocale());
            application.setPackageName(packageName);
            application.setApplicationStatus(ApplicationStatus.MISSING_APK);
            application.setContributor(contributor);
            application.setProject(project);
            applicationDao.create(application);
            appGroup.getApplications().add(application);
            appGroupDao.update(appGroup);
            applicationVersion.setApplication(application);
            applicationVersionDao.create(applicationVersion);
            application.setApplicationStatus(ApplicationStatus.ACTIVE);
            applicationDao.update(application);
        } else {
            // Update of existing packageName previously uploaded
            // Create new ApplicationVersion for the existing Application
            applicationVersionDao.create(applicationVersion);
        }
        // Refresh REST API cache
        // jsonService.refreshApplicationsInAppCollection(appCollection);
        jsonService.refreshApplicationsInAppCollection();
        if (EnvironmentContextLoaderListener.env == Environment.PROD) {
            String applicationDescription = !isUpdateOfExistingApplication ? "Application" : "APK version";
            String text = URLEncoder.encode(contributor.getFirstName() + " just uploaded a new " + applicationDescription + ":\n" + "• Project: \"" + project.getName() + "\"\n" + "• App Category: \"" + appCategory.getName() + "\"\n" + "• Package name: \"" + application.getPackageName() + "\"\n" + "• Version code: " + applicationVersion.getVersionCode() + "\n" + "See ") + "http://elimu.ai/project/" + project.getId() + "/app-category/" + appCategory.getId() + "/app-group/" + appGroup.getId() + "/app/" + application.getId() + "/edit";
            SlackApiHelper.postMessage("G6UR7UH2S", text, null, null);
        }
        if (!isUpdateOfExistingApplication) {
            return "redirect:/project/{projectId}/app-category/{appCategoryId}/app-group/{appGroupId}/app/list#" + application.getId();
        } else {
            return "redirect:/project/{projectId}/app-category/{appCategoryId}/app-group/{appGroupId}/app/" + application.getId() + "/edit";
        }
    }
}
Also used : ApplicationVersion(ai.elimu.model.admin.ApplicationVersion) Contributor(ai.elimu.model.Contributor) IOException(java.io.IOException) Project(ai.elimu.model.project.Project) ByteArrayApkFile(net.dongliu.apk.parser.ByteArrayApkFile) AppGroup(ai.elimu.model.project.AppGroup) ApkMeta(net.dongliu.apk.parser.bean.ApkMeta) Application(ai.elimu.model.admin.Application) AppCategory(ai.elimu.model.project.AppCategory) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

Project (ai.elimu.model.project.Project)27 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)24 AppCategory (ai.elimu.model.project.AppCategory)14 Contributor (ai.elimu.model.Contributor)12 AppCollection (ai.elimu.model.project.AppCollection)8 AppGroup (ai.elimu.model.project.AppGroup)8 License (ai.elimu.model.project.License)5 ApplicationVersion (ai.elimu.model.admin.ApplicationVersion)4 Application (ai.elimu.model.admin.Application)3 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1 ByteArrayApkFile (net.dongliu.apk.parser.ByteArrayApkFile)1 ApkMeta (net.dongliu.apk.parser.bean.ApkMeta)1 Test (org.junit.Test)1