Annotation of loncom/interface/lonbulletin.pm, revision 1.56
1.1 www 1: # The LearningOnline Network
1.5 www 2: # Bulletin Board Handler
1.1 www 3: #
1.56 ! wenzelju 4: # $Id: lonbulletin.pm,v 1.55 2009/12/08 13:33:12 wenzelju Exp $
1.1 www 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28:
29: package Apache::lonbulletin;
30:
31: use strict;
32: use Apache::Constants qw(:common);
33: use Apache::loncommon;
34: use Apache::lonnet;
35: use Apache::lontexconvert;
1.6 www 36: use Apache::lonfeedback;
1.15 www 37: use Apache::lonlocal;
1.36 raeburn 38: use Apache::lonhtmlcommon;
1.39 albertel 39: use HTML::Entities();
1.36 raeburn 40: use LONCAPA;
1.1 www 41:
42: sub handler {
43: my $r = shift;
1.16 www 44: &Apache::loncommon::content_type($r,'text/html');
1.1 www 45: $r->send_http_header;
46: return OK if $r->header_only;
1.29 albertel 47: my $target=$env{'form.grade_target'};
1.23 sakharuk 48:
1.1 www 49: # ------------------------------------------------------------ Print the screen
1.32 albertel 50: if ($target eq 'tex') {
1.49 bisitz 51: $r->print(&Apache::lonprintout::print_latex_header($env{'form.latex_type'}));
1.23 sakharuk 52: }
1.2 www 53: my (undef,undef,undef,undef,$marker)=split(/\//,$r->uri);
1.1 www 54: # Is this even in a course?
1.32 albertel 55: if (!$env{'request.course.id'}) {
1.49 bisitz 56: &Apache::loncommon::simple_error_page($r,'Not in a course',
57: 'Not in a course');
1.1 www 58: return OK;
59: }
60:
61: $marker=~s/\D//g;
62:
1.32 albertel 63: if (!$marker) {
1.49 bisitz 64: &Apache::loncommon::simple_error_page($r,'Invalid Call',
65: 'Invalid Call');
1.1 www 66: return OK;
67: }
68:
1.29 albertel 69: my $dom = $env{'course.'.$env{'request.course.id'}.'.domain'};
70: my $crs = $env{'course.'.$env{'request.course.id'}.'.num'};
1.36 raeburn 71: my ($group,$grp_desc);
1.1 www 72:
73: # --------------------------------------------------------- The syllabus fields
1.17 www 74: my %syllabusfields=&Apache::lonlocal::texthash(
1.2 www 75: 'aaa_title' => 'Topic',
76: 'bbb_content' => 'Task',
1.1 www 77: 'ccc_webreferences' => 'Web References');
78:
1.7 www 79: # ------------------------------------------------------------ Get Query String
80: &Apache::loncommon::get_unprocessed_cgi
1.36 raeburn 81: ($ENV{'QUERY_STRING'},['forcestudent','forceedit','register',
1.37 raeburn 82: 'origpage','group','ref']);
1.7 www 83: # ----------------------------------------------------- Force menu registration
1.35 albertel 84: my %addentries;
85: if ($env{'form.origpage'}) {
1.49 bisitz 86: $addentries{'onload'} = "document.location='#newpost';";
1.7 www 87: }
1.1 www 88: # --------------------------------------------------------------- Force Student
89: my $forcestudent='';
1.29 albertel 90: if ($env{'form.forcestudent'}) { $forcestudent='student'; }
1.19 www 91:
92: my $forceedit='';
1.29 albertel 93: if ($env{'form.forceedit'}) { $forceedit='edit'; }
1.37 raeburn 94: my $refarg = '';
95: if (exists($env{'form.ref'})) { $refarg = 'ref='.$env{'form.ref'}; }
1.1 www 96:
97: my %syllabus=&Apache::lonnet::dump('bulletinpage_'.$marker,$dom,$crs);
1.36 raeburn 98:
99: my $boardurl = $r->uri;
100: if ($boardurl =~ m|/adm/\Q$dom\E/\Q$crs\E/\d+/bulletinboard|) {
101: if (!exists($syllabus{'group'})) {
102: &Apache::loncommon::simple_error_page($r,'Group information missing',
103: 'Group information missing');
104:
105: return OK;
106: } else {
107: $group = $syllabus{'group'};
108: if ($group eq '') {
109: &Apache::loncommon::simple_error_page($r,'Invalid group',
110: 'Invalid group');
111: return OK;
112: }
113: my %curr_groups = &Apache::longroup::coursegroups($dom,$crs,$group);
114: if (!defined($curr_groups{$group})) {
115: &Apache::loncommon::simple_error_page($r,'Invalid group',
116: 'Invalid group');
117: return OK;
118: } else {
119: my %content = &Apache::longroup::get_group_settings(
120: $curr_groups{$group});
121: $grp_desc = &unescape($content{'description'});
122: }
123: }
124: }
1.49 bisitz 125:
1.1 www 126: # --------------------------------------- There is such a user, get environment
1.49 bisitz 127: if ($target ne 'tex') {
128: my $course_or_group;
129: if($group eq '') {
130: $course_or_group="Course";
131: } else {
132: $course_or_group="Group";
133: }
134: my $start_page =
135: &Apache::loncommon::start_page("$course_or_group Discussion Board",undef,
136: {'function' => $forcestudent,
137: 'add_entries' => \%addentries,
138: 'domain' => $dom,
139: 'force_register' =>
140: $env{'form.register'}});
141: $r->print($start_page);
1.36 raeburn 142: if ($group ne '' && $env{'form.group'} eq $group) {
143: my $gpterm = &Apache::loncommon::group_term();
144: my $ucgpterm = $gpterm;
145: $ucgpterm =~ s/^(\w)/uc($1)/e;
1.37 raeburn 146: my ($groupboards,$boards) =
147: &Apache::longroup::get_group_bbinfo($dom,$crs,$group,$boardurl);
148: my $boardtitle;
149: if ((ref($groupboards) eq 'ARRAY') && (@{$groupboards} > 0)) {
150: $boardtitle = $$boards{$$groupboards[0]}{'title'};
151: }
1.36 raeburn 152: $boardurl .= '?register=1&group='.$group;
1.37 raeburn 153: $r->print(&groupboard_breadcrumbs($dom,$crs,$group,$refarg,$gpterm,
1.36 raeburn 154: $ucgpterm,$grp_desc,$boardurl,$boardtitle));
155: }
156: }
157: my ($allowed);
158: if ($group ne '') {
1.37 raeburn 159: $allowed=&Apache::lonnet::allowed('mdg',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''));
1.36 raeburn 160: if (!$allowed) {
161: $allowed = &Apache::lonnet::allowed('cgb',$env{'request.course.id'}.
162: '/'.$group);
163: }
164: if (!$allowed) {
1.37 raeburn 165: if ((!&Apache::lonnet::allowed('vcg',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) &&
1.36 raeburn 166: (!&Apache::lonnet::allowed('vgb',$env{'request.course.id'}.
1.49 bisitz 167: '/'.$group))) {
1.36 raeburn 168: &print_end_page($r,$target);
1.49 bisitz 169: return OK;
1.36 raeburn 170: }
171: }
172: } else {
173: $allowed=&Apache::lonnet::allowed('mdc',$env{'request.course.id'});
1.23 sakharuk 174: }
1.1 www 175:
1.19 www 176: my $privileged=$allowed;
177: if (($syllabus{'uploaded.lastmodified'}) && (!$forceedit)) {
1.49 bisitz 178: $forcestudent='student';
1.19 www 179: }
1.49 bisitz 180: if ($forcestudent or $target eq 'tex') { $allowed=0; }
181:
182: if ($allowed) {
183: my $query_str = 'forcestudent=1';
184: if (($group ne '') && ($env{'form.group'} eq $group)) {
185: $query_str.='&group='.$group.'&'.$refarg;
186: }
1.53 wenzelju 187: #Function Box for Edit Mode.
188: my $functionbox = &Apache::lonhtmlcommon::start_funclist();
189: $functionbox .= &Apache::lonhtmlcommon::add_item_funclist(
190: '<a href="'.$r->uri.'?'.$query_str.'">'.&mt('Show Student View').'</a>'.
191: &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'));
192: $functionbox.=&Apache::lonhtmlcommon::end_funclist();
193: $r->print(&Apache::loncommon::head_subbox($functionbox).&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')));
194: } elsif ($privileged and $target ne 'tex') {
1.49 bisitz 195: my $query_str = 'forceedit=edit';
196: if (($group ne '') && ($env{'form.group'} eq $group)) {
197: $query_str.='&group='.$group.'&'.$refarg;
198: }
1.53 wenzelju 199: #Functionbox for Student view.
200: my $functionbox = &Apache::lonhtmlcommon::start_funclist();
201: $functionbox .= &Apache::lonhtmlcommon::add_item_funclist(
202: "<a href='".$r->uri.'?'.$query_str."'>".&mt('Edit')."</a>");
203: $functionbox.=&Apache::lonhtmlcommon::end_funclist();
204: $r->print(&Apache::loncommon::head_subbox($functionbox));
1.49 bisitz 205: }
206:
207: if (($env{'form.uploaddoc.filename'}) &&
208: ($env{'form.storeupl'}) && ($allowed)) {
209: if ($env{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
210: if ($syllabus{'uploaded.photourl'}) {
211: &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
212: }
213: if ($group ne '') {
214: $syllabus{'uploaded.photourl'}=
215: &Apache::lonnet::userfileupload('uploaddoc',1,
216: 'bulletin/'.$group.'/'.$marker);
217: } else {
218: $syllabus{'uploaded.photourl'}=
219: &Apache::lonnet::userfileupload('uploaddoc',1,
1.38 raeburn 220: 'bulletin/'.$marker);
1.49 bisitz 221: }
222: }
223: $syllabus{'uploaded.lastmodified'}=time;
224: &Apache::lonnet::put('bulletinpage_'.$marker,\%syllabus,$dom,$crs);
225: }
226: if (($allowed) && ($env{'form.storesyl'})) {
227: foreach my $syl_field (keys(%syllabusfields)) {
228: my $field=$env{'form.'.$syl_field};
229: $field=~s/\s+$//s;
230: $field=&Apache::lonfeedback::clear_out_html($field,1);
231: $syllabus{$syl_field}=$field;
232: }
233: $syllabus{'uploaded.lastmodified'}=time;
234: &Apache::lonnet::put('bulletinpage_'.$marker,\%syllabus,$dom,$crs);
235: }
1.1 www 236:
1.54 wenzelju 237: # ---------------------------------------------------------------- Get discussion board
1.1 www 238: if (($syllabus{'uploaded.lastmodified'}) || ($allowed)) {
1.56 ! wenzelju 239: #Print Topic as Heading
! 240: my $titletext=$syllabus{'aaa_title'};
! 241: if ($target ne 'tex') {
! 242: $r->print('<h2>'.$titletext.'</h2>');
! 243: } else {
! 244: $r->print('\\\\\textbf{'.&Apache::lonxml::xmlparse($r,'tex',$titletext).'}\\\\');
! 245: }
! 246: #Outputbox and Inputbox for Topic
! 247: if ($allowed) {
! 248: $r->print('<form method="post" action="" enctype="multipart/form-data">');
! 249: &Apache::lontemplate::print_template($r, &mt('Title'), $titletext,$allowed,'LC_Box');
! 250: &Apache::lontemplate::print_editbox_template($r, $syllabus{'aaa_title'},'aaa_title');
! 251: }
1.49 bisitz 252: if ($syllabus{'uploaded.photourl'}) {
253: &Apache::lonnet::allowuploaded('/adm/syllabus',
254: $syllabus{'uploaded.photourl'});
255: }
1.53 wenzelju 256: #Outputbox and Inputbox for Image upload
1.49 bisitz 257: if ($allowed) {
1.54 wenzelju 258: &Apache::lontemplate::print_template($r, &mt('Upload a Photo'), '<img src="'.$syllabus{'uploaded.photourl'}.'" alt="'.&mt('Image').'"/>',$allowed,'LC_Box');
1.49 bisitz 259: $r->print(
260: '<input type="hidden" name="forceedit" value="edit" />'.
261: '<input type="file" name="uploaddoc" size="50" />'.
262: '<input type="submit" name="storeupl" value="'.&mt('Upload').'" />'.
263: '<input type="hidden" name="forceedit" value="edit" />');
264: }
1.53 wenzelju 265: #Image in Student view.
266: elsif($syllabus{'uploaded.photourl'} && $target ne 'tex'){
1.55 wenzelju 267: $r->print('<img src="'.$syllabus{'uploaded.photourl'}.'" alt="'.&mt('Image').'"/>');
1.53 wenzelju 268: }
1.49 bisitz 269: foreach my $field (sort(keys(%syllabusfields))) {
270: if (($syllabus{$field}) || ($allowed)) {
271: my $message=$syllabus{$field};
1.51 wenzelju 272: if (!&Apache::lonfeedback::contains_block_html($message)) {
1.50 faziophi 273: &Apache::lonfeedback::newline_to_br(\$message);
274: }
1.52 www 275: $message=&Apache::lonhtmlcommon::raw_href_to_link($message);
1.2 www 276: if ($allowed) {
1.49 bisitz 277: $message=&Apache::lonspeller::markeduptext($message);
278: }
279: $message=&Apache::lontexconvert::msgtexconverted($message);
280: unless ($field eq 'aaa_title') {
1.53 wenzelju 281: #Outputbox
1.49 bisitz 282: if ($target ne 'tex') {
1.53 wenzelju 283: &Apache::lontemplate::print_template($r, $syllabusfields{$field}, $message,$allowed,'LC_Box');
1.49 bisitz 284: } else {
1.53 wenzelju 285: $r->print('\\\\\textbf{'.$syllabusfields{$field}.'}\\\\'.&Apache::lonxml::xmlparse($r,'tex',$message));
1.49 bisitz 286: }
1.53 wenzelju 287: #Inputbox
1.49 bisitz 288: if ($allowed) {
1.53 wenzelju 289: &Apache::lontemplate::print_editbox_template($r, $syllabus{$field}, $field);
1.49 bisitz 290: }
1.56 ! wenzelju 291: }
1.2 www 292: }
1.49 bisitz 293: }
294: if ($allowed) {
295: $r->print('</form>');
296: }
1.54 wenzelju 297: if ($target ne 'tex'){
298: $r->print('<br/><br/><hr/><br/>');
299: }
300: else {
301: $r->print(&Apache::lonxml::xmlparse($r,'tex','<br/><br/><hr/><br/>'));
302: }
1.1 www 303: } else {
1.49 bisitz 304: $r->print('<p>'.&mt('No page information provided.').'</p>');
1.1 www 305: }
1.53 wenzelju 306: #Lists discussion posts and box for a new discussion post.
1.23 sakharuk 307: if ($target ne 'tex') {
1.49 bisitz 308: $r->print(&Apache::lonfeedback::list_discussion
309: ('board','OPEN','bulletin___'.$marker.'___'.
310: $r->uri,undef,$group));
1.23 sakharuk 311: } else {
1.49 bisitz 312: $r->print('\\\\'.&Apache::lonxml::xmlparse($r,'tex',&Apache::lonfeedback::list_discussion
313: ('board','OPEN','bulletin___'.$marker.'___'.
314: $r->uri,undef,$group)));
1.23 sakharuk 315: }
1.36 raeburn 316: &print_end_page($r,$target);
317: return OK;
318: }
319:
320: sub print_end_page {
321: my ($r,$target) = @_;
1.32 albertel 322: if ($target ne 'tex') {
1.36 raeburn 323: $r->print(&Apache::loncommon::end_page());
1.32 albertel 324: } else {
1.36 raeburn 325: $r->print('\end{document}');
1.32 albertel 326: }
1.36 raeburn 327: }
328:
329: sub groupboard_breadcrumbs {
1.37 raeburn 330: my ($cdom,$cnum,$group,$refarg,$gpterm,$ucgpterm,$description,$boardurl,
331: $boardtitle)= @_;
1.36 raeburn 332: &Apache::lonhtmlcommon::clear_breadcrumbs();
1.37 raeburn 333: if ($refarg ne '') {
334: &Apache::lonhtmlcommon::add_breadcrumb
335: ({href=>"/adm/coursegroups",
336: text=>"Groups",
337: title=>"View course groups"});
338: }
1.36 raeburn 339: &Apache::lonhtmlcommon::add_breadcrumb
1.37 raeburn 340: ({href=>"/adm/$cdom/$cnum/$group/smppg?$refarg",
1.36 raeburn 341: text=>"$ucgpterm: $description",
342: title=>"Go to group's home page"},
1.37 raeburn 343: {href=>"/adm/groupboards?group=$group&$refarg",
1.36 raeburn 344: text=>"Discussion Boards",
345: title=>"Display group discussion boards"},
346: {href=>"$boardurl",
347: text=>"$boardtitle",
348: title=>"$boardtitle"},
349: );
350: my $output .= &Apache::lonhtmlcommon::breadcrumbs(&mt('[_1] discussion boards - [_2]',$gpterm,$description));
351: return $output;
352: }
1.1 www 353:
354: 1;
355: __END__
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>