Search in sources :

Example 11 with Attachment

use of org.summerb.minicms.api.dto.Attachment in project summerb by skarpushin.

the class ArticlesAuthoringController method createAttachment.

// NOTE: File upload example:
// http://www.ioncannon.net/programming/975/spring-3-file-upload-example/
@RequestMapping(method = RequestMethod.POST, value = "/{articleId}/addAttachment")
public String createAttachment(@ModelAttribute(ATTR_ARTICLE_ATTACHMENT) ArticleAttachmentVm articleAttachmentVm, Model model, @PathVariable("articleId") long articleId) throws Exception {
    try {
        Preconditions.checkArgument(articleAttachmentVm.getFile() != null && articleAttachmentVm.getFile().getFileItem() != null, "File required");
        Article article = articleService.findById(articleId);
        Preconditions.checkArgument(article != null, "Article not found");
        Attachment att = articleAttachmentVm.getAttachment();
        att.setArticleId(articleId);
        FileItem fileItem = articleAttachmentVm.getFile().getFileItem();
        att.setSize(fileItem.getSize());
        String fileName = fileItem.getName();
        att.setName(fileName);
        att.setContents(articleAttachmentVm.getFile().getInputStream());
        attachmentService.create(att);
        return Views.redirect(String.format("article-authoring/%s", article.getArticleKey()));
    } catch (Throwable t) {
        log.error("Failed to create attachment", t);
        String msg = exceptionTranslator.buildUserMessage(t, CurrentRequestUtils.getLocale());
        addPageMessage(model.asMap(), new PageMessage(msg, MessageSeverity.Danger));
        // TBD: Navigate to article authoring instead!
        return viewNameArticleAuthoring;
    }
}
Also used : FileItem(org.apache.commons.fileupload.FileItem) PageMessage(org.summerb.webappboilerplate.model.PageMessage) Article(org.summerb.minicms.api.dto.Article) Attachment(org.summerb.minicms.api.dto.Attachment) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 12 with Attachment

use of org.summerb.minicms.api.dto.Attachment in project summerb by skarpushin.

the class ArticlesAuthoringController method getArticle.

@RequestMapping(method = RequestMethod.GET, value = "/{articleKey}")
public String getArticle(Model model, @PathVariable("articleKey") String articleKey, Locale locale) throws NotAuthorizedException {
    model.addAttribute(ATTR_ARTICLE_KEY, articleKey);
    Map<Locale, Article> options = articleService.findArticleLocalizations(articleKey);
    if (options.size() == 0) {
        throw new RuntimeException("Article not found: " + articleKey);
    }
    List<ArticleVm> contents = new LinkedList<ArticleVm>();
    for (Entry<Locale, Article> entry : options.entrySet()) {
        ArticleVm contentPm = new ArticleVm();
        contentPm.setDto(entry.getValue());
        contentPm.setAttachments(new ListPm<Attachment>(Arrays.asList(attachmentService.findArticleAttachments(entry.getValue().getId()))));
        contents.add(contentPm);
    }
    ArticlesVm articlesVm = new ArticlesVm(contents);
    model.addAttribute(ATTR_ARTICLES, articlesVm.getMap());
    model.addAttribute(ATTR_ARTICLE, contents.get(0));
    return viewNameArticleAuthoring;
}
Also used : Locale(java.util.Locale) ArticlesVm(org.summerb.webappboilerplate.articles.vm.ArticlesVm) ArticleVm(org.summerb.webappboilerplate.articles.vm.ArticleVm) Article(org.summerb.minicms.api.dto.Article) Attachment(org.summerb.minicms.api.dto.Attachment) LinkedList(java.util.LinkedList) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

Attachment (org.summerb.minicms.api.dto.Attachment)12 Test (org.junit.Test)5 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)5 Locale (java.util.Locale)3 Article (org.summerb.minicms.api.dto.Article)3 InputStream (java.io.InputStream)2 RenderedArticle (org.summerb.minicms.api.dto.consuming.RenderedArticle)2 EventBus (com.google.common.eventbus.EventBus)1 UrlBuilderTestImpl (integr.org.summerb.minicms.impl.UrlBuilderTestImpl)1 NotSerializableException (java.io.NotSerializableException)1 Date (java.util.Date)1 LinkedList (java.util.LinkedList)1 FileItem (org.apache.commons.fileupload.FileItem)1 InputStreamResource (org.springframework.core.io.InputStreamResource)1 HttpHeaders (org.springframework.http.HttpHeaders)1 ResponseEntity (org.springframework.http.ResponseEntity)1 ResponseBody (org.springframework.web.bind.annotation.ResponseBody)1 PagerParams (org.summerb.easycrud.api.dto.PagerParams)1 Query (org.summerb.easycrud.api.query.Query)1 ArticleAbsoluteUrlBuilder (org.summerb.minicms.api.ArticleAbsoluteUrlBuilder)1