BrightSide Workbench Full Report + Source Code
ActivityReport.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.user.activity;
20 
21 import java.util.EnumSet;
22 import java.util.Map;
23 import org.turro.collections.AggregateMap;
24 import org.turro.collections.AggregateMixMap;
25 import org.turro.entities.IElephantEntity;
26 import org.turro.i18n.I_;
27 import org.turro.util.Chars;
28 
33 public class ActivityReport {
34 
35  private final ActivitySet activities;
36 
37  public ActivityReport(ActivitySet activities) {
38  this.activities = activities;
39  }
40 
41  public Map<String, Double[]> getByCategory() {
42  return new AggregateMixMap(getProjectsByCategory(), getChallengesByCategory(), getSeenByCategory());
43  }
44 
45  public Map<String, Double> getProjectsByCategory() {
46  AggregateMap map = new AggregateMap();
47  for(Activity activity : activities) {
48  if(EnumSet.of(ActivityType.ACTIVITY_PARTICIPATE, ActivityType.ACTIVITY_FOLLOW).contains(activity.getType())) {
49  if(activity.getEntityPath().startsWith("/dossier/")) {
50  IElephantEntity parent = activity.getEntity().getParent();
51  if(parent != null && !parent.isEmpty()) map.inc(parent.getName());
52  }
53  }
54  }
55  return map;
56  }
57 
58  public Map<String, Double> getChallengesByCategory() {
59  AggregateMap map = new AggregateMap();
60  for(Activity activity : activities) {
61  if(EnumSet.of(ActivityType.ACTIVITY_CHANGE).contains(activity.getType())) {
62  if(activity.getEntityPath().startsWith("/challenge/")) {
63  IElephantEntity parent = activity.getEntity().getParent().getParent();
64  if(parent != null && !parent.isEmpty()) map.inc(parent.getName());
65  }
66  }
67  }
68  return map;
69  }
70 
71  public Map<String, Double> getSeenByCategory() {
72  AggregateMap map = new AggregateMap();
73  for(Activity activity : activities) {
74  if(EnumSet.of(ActivityType.ACTIVITY_SEEN).contains(activity.getType())) {
75  if(activity.getEntityPath().startsWith("/dossier/")) {
76  IElephantEntity parent = activity.getEntity().getParent();
77  if(parent != null && !parent.isEmpty()) map.inc(parent.getName());
78  } else {
79  map.inc(Chars.backward() + " " + I_.get("Others"));
80  }
81  }
82  }
83  return map;
84  }
85 
86 }
static String get(String msg)
Definition: I_.java:41
Map< String, Double[]> getByCategory()
Map< String, Double > getSeenByCategory()
Map< String, Double > getChallengesByCategory()
ActivityReport(ActivitySet activities)
Map< String, Double > getProjectsByCategory()