source: contrib/MailArchiver/sources/src/serpro/mailarchiver/service/web/DefaultDeleteMessagesOperation.java @ 6785

Revision 6785, 3.4 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
1/**
2 * MailArchiver is an application that provides services for storing and managing e-mail messages through a Web Services SOAP interface.
3 * Copyright (C) 2012  Marcio Andre Scholl Levien and Fernando Alberto Reuter Wendt and Jose Ronaldo Nogueira Fonseca Junior
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/******************************************************************************\
20*
21*  This product was developed by
22*
23*        SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO),
24*
25*  a government company established under Brazilian law (5.615/70),
26*  at Department of Development of Porto Alegre.
27*
28\******************************************************************************/
29
30package serpro.mailarchiver.service.web;
31
32import java.io.IOException;
33import java.nio.file.Files;
34
35import javax.jdo.annotations.PersistenceAware;
36
37import org.springframework.beans.factory.annotation.Autowired;
38
39import serpro.mailarchiver.domain.metaarchive.Message;
40import serpro.mailarchiver.service.BaseService;
41import serpro.mailarchiver.service.find.FMessage;
42import serpro.mailarchiver.session.Session;
43import serpro.mailarchiver.util.Logger;
44import serpro.mailarchiver.util.jdo.PersistenceManager;
45import serpro.mailarchiver.util.transaction.WithReadWriteTx;
46
47import static com.google.common.base.Strings.isNullOrEmpty;
48
49@PersistenceAware
50public class DefaultDeleteMessagesOperation
51    extends BaseService
52    implements DeleteMessagesOperation
53{
54    private static final Logger log = Logger.getLocalLogger();
55
56    @Autowired
57    private FMessage findMessage;
58
59    @Override
60    public Integer apply(String... messagesId) throws ServiceFault {
61        for(String messageId : messagesId) {
62            if(isNullOrEmpty(messageId)) {
63                continue;
64            }
65            delete(messageId);
66        }
67        return 0;
68    }
69
70    @WithReadWriteTx
71    private void delete(String messageId) throws ServiceFault {
72
73        PersistenceManager pm = getPersistenceManager();
74
75        Message message = findMessage.byId(messageId);
76
77        if(message == null) {
78            ServiceFault.messageNotFound()
79                    .setActor("deleteMessages")
80                    .setMessage("Message not found.")
81                    .addValue("messageId", messageId)
82                    .raise();
83        }
84
85        try {
86            Files.deleteIfExists(message.getAbsolutePath());
87            Session.getLuceneIndex().deleteMessage(messageId);
88            pm.deletePersistent(message);
89        }
90        catch(IOException e) {
91            ServiceFault.fileSystemFailure()
92                    .setActor("deleteMessages")
93                    .setMessage("Filesystem delete message failure.")
94                    .addValue("messagePath", message.getRelativePath())
95                    .setCause(e)
96                    .raise();
97        }
98    }
99}
Note: See TracBrowser for help on using the repository browser.