20
20
import com .agiletec .apsadmin .system .ApsAdminSystemConstants ;
21
21
import com .agiletec .plugins .jacms .aps .system .services .content .model .Content ;
22
22
import java .util .Arrays ;
23
+ import javax .servlet .http .HttpSession ;
23
24
import org .apache .commons .lang .StringUtils ;
24
25
import org .entando .entando .aps .system .services .userpreferences .IUserPreferencesManager ;
25
26
import org .entando .entando .aps .system .services .userpreferences .UserPreferences ;
@@ -80,6 +81,7 @@ public String createNew() {
80
81
_logger .debug ("Invalid content type" );
81
82
return INPUT ;
82
83
}
84
+ this .getRequest ().getSession ().removeAttribute (ContentActionConstants .SESSION_PARAM_NAME_CURRENT_CONTENT_GROUP );
83
85
prototype .setFirstEditor (username );
84
86
UserPreferences pref = this .getUserPreferencesManager ().getUserPreferences (username );
85
87
if (pref != null ) {
@@ -94,7 +96,7 @@ public String createNew() {
94
96
});
95
97
}
96
98
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 );
98
100
_logger .info ("setting ownerGroup to {}" , defaultContentOwnerGroup );
99
101
}
100
102
}
@@ -107,12 +109,14 @@ public String createNew() {
107
109
}
108
110
109
111
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 );
112
116
}
113
117
String marker = buildContentOnSessionMarker (prototype , ApsAdminSystemConstants .ADD );
114
118
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 );
116
120
_logger .debug ("Created ed inserted on session content prototype of type {}" , prototype .getTypeCode ());
117
121
}
118
122
0 commit comments