01: /**
02: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
03: *
04: * Permission is hereby granted, free of charge, to any person obtaining a copy
05: * of this software and associated documentation files (the "Software"), to deal
06: * in the Software without restriction, including without limitation the rights
07: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
08: * copies of the Software, and to permit persons to whom the Software is
09: * furnished to do so, subject to the following conditions:
10: *
11: * The above copyright notice and this permission notice shall be included in
12: * all copies or substantial portions of the Software.
13: *
14: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20: * SOFTWARE.
21: */package com.liferay.portlet.wiki.service.impl;
22:
23: import com.liferay.portal.PortalException;
24: import com.liferay.portal.SystemException;
25: import com.liferay.portal.kernel.security.permission.ActionKeys;
26: import com.liferay.portlet.wiki.model.WikiPage;
27: import com.liferay.portlet.wiki.service.base.WikiPageServiceBaseImpl;
28: import com.liferay.portlet.wiki.service.permission.WikiNodePermission;
29: import com.liferay.portlet.wiki.service.permission.WikiPagePermission;
30:
31: /**
32: * <a href="WikiPageServiceImpl.java.html"><b><i>View Source</i></b></a>
33: *
34: * @author Brian Wing Shun Chan
35: *
36: */
37: public class WikiPageServiceImpl extends WikiPageServiceBaseImpl {
38:
39: public WikiPage addPage(long nodeId, String title)
40: throws PortalException, SystemException {
41:
42: WikiNodePermission.check(getPermissionChecker(), nodeId,
43: ActionKeys.ADD_PAGE);
44:
45: return wikiPageLocalService.addPage(getUserId(), nodeId, title);
46: }
47:
48: public void deletePage(long nodeId, String title)
49: throws PortalException, SystemException {
50:
51: WikiPagePermission.check(getPermissionChecker(), nodeId, title,
52: ActionKeys.DELETE);
53:
54: wikiPageLocalService.deletePage(nodeId, title);
55: }
56:
57: public WikiPage getPage(long nodeId, String title)
58: throws PortalException, SystemException {
59:
60: WikiPagePermission.check(getPermissionChecker(), nodeId, title,
61: ActionKeys.VIEW);
62:
63: return wikiPageLocalService.getPage(nodeId, title);
64: }
65:
66: public WikiPage getPage(long nodeId, String title, double version)
67: throws PortalException, SystemException {
68:
69: WikiPagePermission.check(getPermissionChecker(), nodeId, title,
70: ActionKeys.VIEW);
71:
72: return wikiPageLocalService.getPage(nodeId, title, version);
73: }
74:
75: public WikiPage revertPage(long nodeId, String title, double version)
76: throws PortalException, SystemException {
77:
78: WikiPagePermission.check(getPermissionChecker(), nodeId, title,
79: ActionKeys.UPDATE);
80:
81: return wikiPageLocalService.revertPage(getUserId(), nodeId,
82: title, version);
83: }
84:
85: public WikiPage updatePage(long nodeId, String title,
86: String content, String format, String[] tagsEntries)
87: throws PortalException, SystemException {
88:
89: WikiPagePermission.check(getPermissionChecker(), nodeId, title,
90: ActionKeys.UPDATE);
91:
92: return wikiPageLocalService.updatePage(getUserId(), nodeId,
93: title, content, format, tagsEntries);
94: }
95:
96: }
|