Skip to content

Commit ce3182d

Browse files
committed
ENG-5491: Prefill owner group by user preferences
1 parent 6a57af2 commit ce3182d

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

cms-plugin/src/main/java/com/agiletec/plugins/jacms/apsadmin/content/ContentAction.java

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ public void validate() {
8282
* @return Il codice del risultato dell'azione.
8383
*/
8484
public String edit() {
85+
this.getRequest().getSession().removeAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP);
8586
try {
8687
Content content = this.getContentManager().loadContent(this.getContentId(), false);
8788
if (null == content) {
@@ -107,6 +108,7 @@ public String edit() {
107108
* @return Il codice del risultato dell'azione.
108109
*/
109110
public String copyPaste() {
111+
this.getRequest().getSession().removeAttribute("contentGroupOnSession");
110112
try {
111113
Content content = this.getContentManager().loadContent(this.getContentId(), this.isCopyPublicVersion());
112114
if (null == content) {

cms-plugin/src/main/java/com/agiletec/plugins/jacms/apsadmin/content/IntroNewContentAction.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import com.agiletec.apsadmin.system.ApsAdminSystemConstants;
2121
import com.agiletec.plugins.jacms.aps.system.services.content.model.Content;
2222
import java.util.Arrays;
23+
import javax.servlet.http.HttpSession;
2324
import org.apache.commons.lang.StringUtils;
2425
import org.entando.entando.aps.system.services.userpreferences.IUserPreferencesManager;
2526
import org.entando.entando.aps.system.services.userpreferences.UserPreferences;
@@ -80,6 +81,7 @@ public String createNew() {
8081
_logger.debug("Invalid content type");
8182
return INPUT;
8283
}
84+
this.getRequest().getSession().removeAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP);
8385
prototype.setFirstEditor(username);
8486
UserPreferences pref = this.getUserPreferencesManager().getUserPreferences(username);
8587
if (pref != null) {
@@ -94,7 +96,7 @@ public String createNew() {
9496
});
9597
}
9698
if (StringUtils.isNotBlank(defaultContentOwnerGroup) && null != this.getGroup(defaultContentOwnerGroup)) {
97-
prototype.setMainGroup(defaultContentOwnerGroup);
99+
this.getRequest().getSession().setAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP, defaultContentOwnerGroup);
98100
_logger.info("setting ownerGroup to {}", defaultContentOwnerGroup);
99101
}
100102
}
@@ -107,12 +109,14 @@ public String createNew() {
107109
}
108110

109111
protected void fillSessionAttribute(Content prototype) {
110-
if (this.getAuthorizationManager().isAuthOnGroup(this.getCurrentUser(), Group.FREE_GROUP_NAME)) {
111-
this.getRequest().getSession().setAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP, Group.FREE_GROUP_NAME);
112+
HttpSession session = this.getRequest().getSession();
113+
if (null == session.getAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP)
114+
&& this.getAuthorizationManager().isAuthOnGroup(this.getCurrentUser(), Group.FREE_GROUP_NAME)) {
115+
session.setAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP, Group.FREE_GROUP_NAME);
112116
}
113117
String marker = buildContentOnSessionMarker(prototype, ApsAdminSystemConstants.ADD);
114118
super.setContentOnSessionMarker(marker);
115-
this.getRequest().getSession().setAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_PREXIX + marker, prototype);
119+
session.setAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_PREXIX + marker, prototype);
116120
_logger.debug("Created ed inserted on session content prototype of type {}", prototype.getTypeCode());
117121
}
118122

cms-plugin/src/main/webapp/WEB-INF/plugins/jacms/apsadmin/jsp/content/entryContent.jsp

+3-1
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@
100100
</s:if>
101101
<s:else>
102102
<div class="input-group">
103+
<s:set var="contentGroupOnSessionVar">${session.contentGroupOnSession}</s:set>
104+
<s:property value="#contentGroupOnSessionVar" />
103105
<wpsf:select name="mainGroup" id="contentMainGroup" list="allowedGroups"
104-
value="#session.contentGroupOnSession"
106+
value="#contentGroupOnSessionVar"
105107
listKey="name" listValue="descr" cssClass="form-control" />
106108
<span class="input-group-btn">
107109
<wpsf:submit action="configureMainGroup"

0 commit comments

Comments
 (0)