Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
438678ec
Commit
438678ec
authored
14 years ago
by
mkurian
Browse files
Options
Downloads
Patches
Plain Diff
OLAT-6276
corrected email BB so that emails are sent to tutors/participants/all as configured.
parent
ce681168
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
olat3/webapp/WEB-INF/src/org/olat/course/nodes/co/CORunController.java
+50
-118
50 additions, 118 deletions
...WEB-INF/src/org/olat/course/nodes/co/CORunController.java
with
50 additions
and
118 deletions
olat3/webapp/WEB-INF/src/org/olat/course/nodes/co/CORunController.java
+
50
−
118
View file @
438678ec
...
@@ -28,8 +28,6 @@ import java.util.List;
...
@@ -28,8 +28,6 @@ import java.util.List;
import
java.util.Set
;
import
java.util.Set
;
import
java.util.Stack
;
import
java.util.Stack
;
import
org.olat.basesecurity.BaseSecurity
;
import
org.olat.basesecurity.BaseSecurityManager
;
import
org.olat.core.gui.UserRequest
;
import
org.olat.core.gui.UserRequest
;
import
org.olat.core.gui.components.Component
;
import
org.olat.core.gui.components.Component
;
import
org.olat.core.gui.components.panel.Panel
;
import
org.olat.core.gui.components.panel.Panel
;
...
@@ -48,7 +46,6 @@ import org.olat.course.groupsandrights.CourseGroupManager;
...
@@ -48,7 +46,6 @@ import org.olat.course.groupsandrights.CourseGroupManager;
import
org.olat.course.nodes.COCourseNode
;
import
org.olat.course.nodes.COCourseNode
;
import
org.olat.course.nodes.ObjectivesHelper
;
import
org.olat.course.nodes.ObjectivesHelper
;
import
org.olat.course.run.userview.UserCourseEnvironment
;
import
org.olat.course.run.userview.UserCourseEnvironment
;
import
org.olat.group.BusinessGroup
;
import
org.olat.modules.ModuleConfiguration
;
import
org.olat.modules.ModuleConfiguration
;
import
org.olat.modules.co.ContactFormController
;
import
org.olat.modules.co.ContactFormController
;
...
@@ -99,46 +96,38 @@ public class CORunController extends BasicController {
...
@@ -99,46 +96,38 @@ public class CORunController extends BasicController {
panel
.
setContent
(
learningObjectives
);
panel
.
setContent
(
learningObjectives
);
}
}
boolean
valid
=
false
;
// true if at least one email adress
Stack
<
ContactList
>
contactLists
=
new
Stack
<
ContactList
>();
Boolean
partipsConfigured
=
moduleConfiguration
.
getBooleanEntry
(
COEditController
.
CONFIG_KEY_EMAILTOPARTICIPANTS
);
Boolean
partipsConfigured
=
moduleConfiguration
.
getBooleanEntry
(
COEditController
.
CONFIG_KEY_EMAILTOPARTICIPANTS
);
if
(
partipsConfigured
!=
null
&&
partipsConfigured
.
booleanValue
())
{
ContactList
participantsEmailList
=
retrieveParticipants
();
if
(
participantsEmailList
!=
null
&&
participantsEmailList
.
getEmailsAsStrings
().
size
()>
0
)
{
contactLists
.
push
(
participantsEmailList
);
valid
=
true
;
}
}
Boolean
coachesConfigured
=
moduleConfiguration
.
getBooleanEntry
(
COEditController
.
CONFIG_KEY_EMAILTOCOACHES
);
Boolean
coachesConfigured
=
moduleConfiguration
.
getBooleanEntry
(
COEditController
.
CONFIG_KEY_EMAILTOCOACHES
);
if
(
coachesConfigured
!=
null
&&
coachesConfigured
.
booleanValue
())
{
ContactList
coachesEmailList
=
retrieveCoaches
();
Stack
<
ContactList
>
contactLists
=
new
Stack
<
ContactList
>();
if
(
coachesEmailList
!=
null
&&
coachesEmailList
.
getEmailsAsStrings
().
size
()>
0
){
contactLists
.
push
(
coachesEmailList
);
CourseGroupManager
cgm
=
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
valid
=
true
;
String
grpNames
=
(
String
)
moduleConfiguration
.
get
(
COEditController
.
CONFIG_KEY_EMAILTOGROUPS
);
List
<
String
>
grpList
=
splitNames
(
grpNames
);
for
(
int
i
=
0
;
i
<
grpList
.
size
();
i
++)
{
if
(
coachesConfigured
)
{
ContactList
cl
=
retrieveCoachesFromGroup
(
grpList
.
get
(
i
));
contactLists
.
push
(
cl
);
}
}
}
if
(
partipsConfigured
)
{
String
groups
=
(
String
)
moduleConfiguration
.
get
(
COEditController
.
CONFIG_KEY_EMAILTOGROUPS
);
ContactList
cl
=
retrieveParticipantsFromGroup
(
grpList
.
get
(
i
));
if
(
groups
!=
null
&&
!
groups
.
equals
(
""
))
{
contactLists
.
push
(
cl
);
ContactList
[]
groupsCL
=
retrieveGroups
(
groups
);
if
(
groupsCL
.
length
>
0
){
for
(
int
i
=
0
;
i
<
groupsCL
.
length
;
i
++)
{
if
(
groupsCL
[
i
].
getEmailsAsStrings
().
size
()
>
0
){
contactLists
.
push
(
groupsCL
[
i
]);
valid
=
true
;
}
}
}
}
}
}
String
areas
=
(
String
)
moduleConfiguration
.
get
(
COEditController
.
CONFIG_KEY_EMAILTOAREAS
);
String
areas
=
(
String
)
moduleConfiguration
.
get
(
COEditController
.
CONFIG_KEY_EMAILTOAREAS
);
if
(
areas
!=
null
&&
!
areas
.
equals
(
""
))
{
ContactList
[]
areasCL
=
retrieveAreas
(
areas
);
List
<
String
>
areaList
=
splitNames
(
areas
);
if
(
areasCL
.
length
>
0
){
for
(
int
i
=
0
;
i
<
areaList
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
areasCL
.
length
;
i
++)
{
if
(
coachesConfigured
)
{
if
(
areasCL
[
i
].
getEmailsAsStrings
().
size
()
>
0
){
ContactList
cl
=
retrieveCoachesFromArea
(
areaList
.
get
(
i
));
contactLists
.
push
(
areasCL
[
i
]);
contactLists
.
push
(
cl
);
valid
=
true
;
}
}
if
(
partipsConfigured
)
{
}
ContactList
cl
=
retrieveParticipantsFromArea
(
areaList
.
get
(
i
));
contactLists
.
push
(
cl
);
}
}
}
}
...
@@ -150,16 +139,16 @@ public class CORunController extends BasicController {
...
@@ -150,16 +139,16 @@ public class CORunController extends BasicController {
emailList
.
add
(
email
);
emailList
.
add
(
email
);
}
}
contactLists
.
push
(
emailList
);
contactLists
.
push
(
emailList
);
valid
=
true
;
}
}
if
(
valid
){
// at least one email adress
if
(
contactLists
.
size
()
>
0
)
{
ContactMessage
cmsg
=
new
ContactMessage
(
ureq
.
getIdentity
());
ContactMessage
cmsg
=
new
ContactMessage
(
ureq
.
getIdentity
());
while
(!
contactLists
.
empty
())
{
while
(!
contactLists
.
empty
())
{
ContactList
cl
=
contactLists
.
pop
();
ContactList
cl
=
contactLists
.
pop
();
cmsg
.
addEmailTo
(
cl
);
cmsg
.
addEmailTo
(
cl
);
}
}
cmsg
.
setBodyText
(
mBody
);
cmsg
.
setBodyText
(
mBody
);
cmsg
.
setSubject
(
mSubject
);
cmsg
.
setSubject
(
mSubject
);
coFoCtr
=
new
ContactFormController
(
ureq
,
getWindowControl
(),
true
,
false
,
false
,
false
,
cmsg
);
coFoCtr
=
new
ContactFormController
(
ureq
,
getWindowControl
(),
true
,
false
,
false
,
false
,
cmsg
);
...
@@ -174,97 +163,40 @@ public class CORunController extends BasicController {
...
@@ -174,97 +163,40 @@ public class CORunController extends BasicController {
}
}
}
}
private
ContactList
retrieveCoaches
(
)
{
private
ContactList
retrieveCoaches
FromGroup
(
String
grpName
)
{
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
List
<
Identity
>
coaches
=
cgm
.
getCoachesFromLearningGroup
(
null
);
List
<
Identity
>
coaches
=
cgm
.
getCoachesFromLearningGroup
(
grpName
);
Set
<
Identity
>
coachesWithoutDuplicates
=
new
HashSet
<
Identity
>(
coaches
);
Set
<
Identity
>
coachesWithoutDuplicates
=
new
HashSet
<
Identity
>(
coaches
);
coaches
=
new
ArrayList
<
Identity
>(
coachesWithoutDuplicates
);
coaches
=
new
ArrayList
<
Identity
>(
coachesWithoutDuplicates
);
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.coaches"
));
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.coaches"
));
cl
.
addAllIdentites
(
coaches
);
cl
.
addAllIdentites
(
coaches
);
return
cl
;
return
cl
;
}
}
private
ContactList
retrieve
Participants
(
)
{
private
ContactList
retrieve
CoachesFromArea
(
String
areaName
)
{
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
List
<
Identity
>
participiants
=
cgm
.
getParticipantsFromLearningGroup
(
null
);
List
<
Identity
>
coaches
=
cgm
.
getCoachesFromArea
(
areaName
);
//FIXME:pb:c docu getParticipantsFromLearningGroup: really duplicates?
Set
<
Identity
>
coachesWithoutDuplicates
=
new
HashSet
<
Identity
>(
coaches
);
Set
<
Identity
>
participantsWithoutDuplicates
=
new
HashSet
<
Identity
>(
participiants
);
coaches
=
new
ArrayList
<
Identity
>(
coachesWithoutDuplicates
);
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.coaches"
));
participiants
=
new
ArrayList
<
Identity
>(
participantsWithoutDuplicates
);
cl
.
addAllIdentites
(
coaches
);
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.partips"
));
cl
.
addAllIdentites
(
participiants
);
return
cl
;
return
cl
;
}
}
private
ContactList
[]
retrieveGroup
s
(
String
csvGroups
)
{
private
ContactList
retrieve
ParticipantsFrom
Group
(
String
grpName
)
{
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
BaseSecurity
secManager
=
BaseSecurityManager
.
getInstance
();
List
<
Identity
>
participiants
=
cgm
.
getParticipantsFromLearningGroup
(
grpName
);
List
<
String
>
groupNames
=
splitNames
(
csvGroups
);
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.partips"
));
List
<
ContactList
>
groupsCL
=
new
ArrayList
<
ContactList
>();
cl
.
addAllIdentites
(
participiants
);
/*
return
cl
;
* for each group name in all the course's group contexts get the
* participants groups. From the resulting groups take all participants and
* add the identities to the ContactList named like the group.
*/
Iterator
<
String
>
iterator
=
groupNames
.
iterator
();
while
(
iterator
.
hasNext
())
{
// fetch all participants and owners by getting all participants and
// owners of all groups
String
groupName
=
iterator
.
next
();
List
<
BusinessGroup
>
mygroups
=
cgm
.
getLearningGroupsFromAllContexts
(
groupName
);
// create a ContactList with the name of the group
ContactList
tmp
=
new
ContactList
(
groupName
);
for
(
int
i
=
0
;
i
<
mygroups
.
size
();
i
++)
{
BusinessGroup
bg
=
mygroups
.
get
(
i
);
List
<
Identity
>
ids
=
secManager
.
getIdentitiesOfSecurityGroup
(
bg
.
getPartipiciantGroup
());
ids
.
addAll
(
secManager
.
getIdentitiesOfSecurityGroup
(
bg
.
getOwnerGroup
()));
// add all identities to the ContactList
tmp
.
addAllIdentites
(
ids
);
}
// add the ContactList
groupsCL
.
add
(
tmp
);
}
// remove duplicates and convert List -> to Array.
Set
<
ContactList
>
groupsCLWithouthDups
=
new
HashSet
<
ContactList
>(
groupsCL
);
ContactList
[]
retVal
=
new
ContactList
[
groupsCLWithouthDups
.
size
()];
retVal
=
groupsCLWithouthDups
.
toArray
(
retVal
);
return
retVal
;
}
}
private
ContactList
[]
retrieveArea
s
(
String
csvAreas
)
{
private
ContactList
retrieve
ParticipantsFrom
Area
(
String
areaName
)
{
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
CourseGroupManager
cgm
=
this
.
userCourseEnv
.
getCourseEnvironment
().
getCourseGroupManager
();
BaseSecurity
secManager
=
BaseSecurityManager
.
getInstance
();
List
<
Identity
>
participiants
=
cgm
.
getParticipantsFromArea
(
areaName
);
List
<
String
>
areaNames
=
splitNames
(
csvAreas
);
ContactList
cl
=
new
ContactList
(
translate
(
"form.message.chckbx.partips"
));
List
<
ContactList
>
groupsCL
=
new
ArrayList
<
ContactList
>();
cl
.
addAllIdentites
(
participiants
);
/*
return
cl
;
* for each area name in all the course's group contexts get the
* participants groups. From the resulting groups take all participants and
* add the identities to the ContactList named like the group.
*/
Iterator
<
String
>
iterator
=
areaNames
.
iterator
();
while
(
iterator
.
hasNext
())
{
// fetch all participants and owners by getting all participants and
// owners of all groups
String
areaName
=
iterator
.
next
();
List
<
BusinessGroup
>
mygroups
=
cgm
.
getLearningGroupsInAreaFromAllContexts
(
areaName
);
// create a ContactList with the name of the group
ContactList
tmp
=
new
ContactList
(
areaName
);
for
(
int
i
=
0
;
i
<
mygroups
.
size
();
i
++)
{
BusinessGroup
bg
=
mygroups
.
get
(
i
);
List
<
Identity
>
ids
=
secManager
.
getIdentitiesOfSecurityGroup
(
bg
.
getPartipiciantGroup
());
ids
.
addAll
(
secManager
.
getIdentitiesOfSecurityGroup
(
bg
.
getOwnerGroup
()));
// add all identities to the ContactList
tmp
.
addAllIdentites
(
ids
);
}
// add the ContactList
groupsCL
.
add
(
tmp
);
}
// remove duplicates and convert List -> to Array.
Set
<
ContactList
>
groupsCLWithouthDups
=
new
HashSet
<
ContactList
>(
groupsCL
);
ContactList
[]
retVal
=
new
ContactList
[
groupsCLWithouthDups
.
size
()];
retVal
=
groupsCLWithouthDups
.
toArray
(
retVal
);
return
retVal
;
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment