Search in sources :

Example 6 with ApplicationVersion

use of ai.elimu.model.admin.ApplicationVersion 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 7 with ApplicationVersion

use of ai.elimu.model.admin.ApplicationVersion 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)

Example 8 with ApplicationVersion

use of ai.elimu.model.admin.ApplicationVersion in project webapp by elimu-ai.

the class AppEditController method handleSubmit.

@RequestMapping(method = RequestMethod.POST)
public String handleSubmit(@PathVariable Long projectId, @PathVariable Long appCategoryId, @PathVariable Long appGroupId, @PathVariable Long applicationId, HttpSession session, @Valid Application application, 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);
    AppGroup appGroup = appGroupDao.read(appGroupId);
    model.addAttribute("appGroup", appGroup);
    if (result.hasErrors()) {
        model.addAttribute("application", application);
        List<ApplicationVersion> applicationVersions = applicationVersionDao.readAll(application);
        model.addAttribute("applicationVersions", applicationVersions);
        model.addAttribute("applicationStatuses", ApplicationStatus.values());
        return "project/app/edit";
    } else {
        applicationDao.update(application);
        if (application.getApplicationStatus() == ApplicationStatus.DELETED) {
            // Delete corresponding ApplicationVersions
            List<ApplicationVersion> applicationVersions = applicationVersionDao.readAll(application);
            for (ApplicationVersion applicationVersion : applicationVersions) {
                applicationVersionDao.delete(applicationVersion);
            }
            // Refresh REST API cache
            // jsonService.refreshApplicationsInAppCollection(appCollection);
            jsonService.refreshApplicationsInAppCollection();
            if (EnvironmentContextLoaderListener.env == Environment.PROD) {
                // Notify project members in Slack
                Contributor contributor = (Contributor) session.getAttribute("contributor");
                String text = URLEncoder.encode(contributor.getFirstName() + " just deleted an Application:\n" + "• Project: \"" + project.getName() + "\"\n" + "• App Category: \"" + appCategory.getName() + "\"\n" + "• Package name: \"" + application.getPackageName() + "\"\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);
            }
        }
        return "redirect:/project/" + projectId + "/app-category/" + appCategoryId + "/app-group/" + appGroupId + "/app/list";
    }
}
Also used : Project(ai.elimu.model.project.Project) ApplicationVersion(ai.elimu.model.admin.ApplicationVersion) 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 9 with ApplicationVersion

use of ai.elimu.model.admin.ApplicationVersion in project webapp by elimu-ai.

the class AppIconController method handleRequest.

@RequestMapping(method = RequestMethod.GET)
public void handleRequest(Model model, @PathVariable Long appVersionId, HttpServletResponse response, OutputStream outputStream) {
    logger.info("handleRequest");
    logger.info("appVersionId: " + appVersionId);
    ApplicationVersion applicationVersion = applicationVersionDao.read(appVersionId);
    response.setContentType("image/png");
    byte[] bytes = applicationVersion.getIcon();
    response.setContentLength(bytes.length);
    try {
        outputStream.write(bytes);
    } catch (EOFException ex) {
        // org.eclipse.jetty.io.EofException (occurs when download is aborted before completion)
        logger.warn(ex);
    } catch (IOException ex) {
        logger.error(null, ex);
    } finally {
        try {
            try {
                outputStream.flush();
                outputStream.close();
            } catch (EOFException ex) {
                // org.eclipse.jetty.io.EofException (occurs when download is aborted before completion)
                logger.warn(ex);
            }
        } catch (IOException ex) {
            logger.error(null, ex);
        }
    }
}
Also used : ApplicationVersion(ai.elimu.model.admin.ApplicationVersion) EOFException(java.io.EOFException) IOException(java.io.IOException) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 10 with ApplicationVersion

use of ai.elimu.model.admin.ApplicationVersion in project webapp by elimu-ai.

the class ApplicationVersionDaoTest method testCacheable.

@Test
public void testCacheable() {
    Application application = new Application();
    applicationDao.create(application);
    List<ApplicationVersion> applicationVersions = applicationVersionDao.readAll(application);
    assertThat(applicationVersions.isEmpty(), is(true));
}
Also used : ApplicationVersion(ai.elimu.model.admin.ApplicationVersion) Application(ai.elimu.model.admin.Application) Test(org.junit.Test)

Aggregations

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