BrightSide Workbench Full Report + Source Code
ForumContext.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2021 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
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 published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (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 package org.turro.forum;
20 
21 import org.turro.string.Strings;
22 import org.turro.elephant.context.ElephantProperties;
23 import org.turro.elephant.context.IConstructor;
24 
29 public class ForumContext {
30 
31  public String getAttribute(String attribute) {
32  return getAttribute(attribute, null);
33  }
34 
35  public String getAttribute(String attribute, String defaultValue) {
36  return getForumContextAttribute(attribute, defaultValue);
37  }
38 
39  /* Service's context */
40 
41  private static final String FORUM_CONTEXT = "forum-context";
42 
43  public static String getForumContextAttribute(String attribute, String defaultValue) {
44  return ElephantProperties.getContextProperty(FORUM_CONTEXT, attribute, defaultValue);
45  }
46 
47  public static boolean getAllowNew(IConstructor constructor) {
48  String topicRoles = getForumContextAttribute("topic-roles", "@admin:is|@partner:on|@patron:on|@collaborator:on");
49  return Strings.isBlank(topicRoles) ? false : constructor.isInRole(topicRoles);
50  }
51 
52  public static String getAllowedRoots(IConstructor constructor) {
53  return getForumContextAttribute("allowed-roots", null);
54  }
55 
56  public static String getDossierCategories(IConstructor constructor) {
57  return getForumContextAttribute("dossier-categories", null);
58  }
59 
60 }
static String getContextProperty(String context, String property)
static boolean getAllowNew(IConstructor constructor)
String getAttribute(String attribute)
static String getAllowedRoots(IConstructor constructor)
String getAttribute(String attribute, String defaultValue)
static String getForumContextAttribute(String attribute, String defaultValue)
static String getDossierCategories(IConstructor constructor)