swad-core/swad_notice.c

854 lines
29 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_notice.c: notices (yellow notes)
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2023 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2019-03-25 19:05:10 +01:00
#define _GNU_SOURCE // For asprintf
2014-12-01 23:55:08 +01:00
#include <linux/limits.h> // For PATH_MAX
2019-12-29 12:39:00 +01:00
#include <stddef.h> // For NULL
2019-03-25 19:05:10 +01:00
#include <stdio.h> // For sscanf, asprintf, etc.
#include <stdlib.h> // For free
2014-12-01 23:55:08 +01:00
#include <string.h>
#include "swad_action_list.h"
#include "swad_alert.h"
#include "swad_autolink.h"
2017-06-10 21:38:10 +02:00
#include "swad_box.h"
2014-12-01 23:55:08 +01:00
#include "swad_database.h"
#include "swad_error.h"
2020-04-14 17:15:17 +02:00
#include "swad_figure.h"
2018-11-09 20:47:39 +01:00
#include "swad_form.h"
2014-12-01 23:55:08 +01:00
#include "swad_global.h"
#include "swad_hidden_visible.h"
#include "swad_hierarchy_level.h"
2019-10-23 20:07:56 +02:00
#include "swad_HTML.h"
2014-12-01 23:55:08 +01:00
#include "swad_notice.h"
#include "swad_notice_database.h"
2014-12-01 23:55:08 +01:00
#include "swad_notification.h"
#include "swad_notification_database.h"
2014-12-01 23:55:08 +01:00
#include "swad_parameter.h"
#include "swad_parameter_code.h"
2014-12-01 23:55:08 +01:00
#include "swad_RSS.h"
2019-03-12 21:25:55 +01:00
#include "swad_timeline.h"
#include "swad_timeline_database.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
#define Not_MAX_CHARS_ON_NOTICE 40 // Maximum number of characters in notices (when not expanded)
2019-11-22 01:04:03 +01:00
static const unsigned Not_ContainerWidth[Not_NUM_TYPES_LISTING] =
2014-12-01 23:55:08 +01:00
{
2019-11-22 01:04:03 +01:00
[Not_LIST_BRIEF_NOTICES] = 148 + 50,
[Not_LIST_FULL_NOTICES ] = 500 + 50,
2014-12-01 23:55:08 +01:00
};
2019-11-22 01:04:03 +01:00
static const unsigned Not_MaxCharsURLOnScreen[Not_NUM_TYPES_LISTING] =
2014-12-01 23:55:08 +01:00
{
2019-11-22 01:04:03 +01:00
[Not_LIST_BRIEF_NOTICES] = 15,
[Not_LIST_FULL_NOTICES ] = 50,
2014-12-01 23:55:08 +01:00
};
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
2016-11-06 22:37:12 +01:00
static bool Not_CheckIfICanEditNotices (void);
2020-04-08 19:42:03 +02:00
static void Not_PutIconsListNotices (__attribute__((unused)) void *Args);
2016-03-21 15:10:00 +01:00
static void Not_PutIconToAddNewNotice (void);
2016-11-06 22:37:12 +01:00
static void Not_GetDataAndShowNotice (long NotCod);
static void Not_GetNoticeDataFromRow (MYSQL_RES *mysql_res,
struct Not_Notice *Notice,
Not_Listing_t TypeNoticesListing);
2014-12-01 23:55:08 +01:00
static void Not_DrawANotice (Not_Listing_t TypeNoticesListing,
struct Not_Notice *Notice,
bool Highlight);
static void Not_PutParNotCod (void *NotCod);
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Write a new notice ****************************/
/*****************************************************************************/
void Not_ShowFormNotice (void)
{
2020-09-26 17:20:01 +02:00
extern const char *Hlp_COMMUNICATION_Notices;
2016-12-27 13:56:44 +01:00
extern const char *Txt_The_notice_will_appear_as_a_yellow_note_;
extern const char *Txt_Notice;
extern const char *Txt_Create;
2014-12-01 23:55:08 +01:00
2015-11-03 21:58:51 +01:00
/***** Help message *****/
2019-02-16 18:11:52 +01:00
Ale_ShowAlert (Ale_INFO,Txt_The_notice_will_appear_as_a_yellow_note_,
2019-04-04 10:45:15 +02:00
Gbl.Hierarchy.Crs.FullName);
2014-12-01 23:55:08 +01:00
2019-10-20 22:00:28 +02:00
/***** Begin form *****/
Frm_BeginForm (ActNewNot);
2015-03-24 17:47:26 +01:00
/***** Begin box *****/
Box_BoxBegin (NULL,Txt_Notice,
NULL,NULL,
Hlp_COMMUNICATION_Notices,Box_NOT_CLOSABLE);
2015-03-24 17:47:26 +01:00
/***** Message body *****/
HTM_TEXTAREA_Begin ("name=\"Content\" cols=\"30\" rows=\"10\""
" class=\"INPUT_%s\""
" autofocus=\"autofocus\" required=\"required\"",
The_GetSuffix ());
HTM_TEXTAREA_End ();
2015-03-24 17:47:26 +01:00
/***** Send button and end box *****/
Box_BoxWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create);
2015-03-24 17:47:26 +01:00
2015-04-11 17:33:14 +02:00
/***** End form *****/
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2015-11-03 21:58:51 +01:00
/***** Show all notices *****/
2019-03-24 23:17:32 +01:00
Not_ShowNotices (Not_LIST_FULL_NOTICES,
-1L); // No notice highlighted
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******* Receive a new notice from a form and store it in database ***********/
/*****************************************************************************/
void Not_ReceiveNotice (void)
{
extern const char *Txt_Notice_created;
long NotCod;
unsigned NumUsrsToBeNotifiedByEMail;
2017-01-28 15:58:46 +01:00
char Content[Cns_MAX_BYTES_TEXT + 1];
2014-12-01 23:55:08 +01:00
/***** Get the text of the notice *****/
Par_GetParAndChangeFormat ("Content",Content,Cns_MAX_BYTES_TEXT,
Str_TO_RIGOROUS_HTML,Str_REMOVE_SPACES);
2014-12-01 23:55:08 +01:00
/***** Create a new notice in database *****/
NotCod = Not_DB_InsertNotice (Content);
2014-12-01 23:55:08 +01:00
/***** Update RSS of current course *****/
2019-04-04 10:45:15 +02:00
RSS_UpdateRSSFileForACrs (&Gbl.Hierarchy.Crs);
2014-12-01 23:55:08 +01:00
/***** Write message of success *****/
2019-02-16 18:11:52 +01:00
Ale_ShowAlert (Ale_SUCCESS,Txt_Notice_created);
2014-12-01 23:55:08 +01:00
2016-11-16 23:19:52 +01:00
/***** Notify by email about the new notice *****/
2014-12-01 23:55:08 +01:00
if ((NumUsrsToBeNotifiedByEMail = Ntf_StoreNotifyEventsToAllUsrs (Ntf_EVENT_NOTICE,NotCod)))
Not_DB_UpdateNumUsrsNotifiedByEMailAboutNotice (NotCod,NumUsrsToBeNotifiedByEMail);
2015-12-29 01:28:17 +01:00
2015-12-31 14:25:28 +01:00
/***** Create a new social note about the new notice *****/
TmlNot_StoreAndPublishNote (TmlNot_NOTICE,NotCod);
2019-03-24 23:17:32 +01:00
/***** Set notice to be highlighted *****/
2019-04-04 10:45:15 +02:00
Gbl.Crs.Notices.HighlightNotCod = NotCod;
2014-12-01 23:55:08 +01:00
}
2015-11-03 22:13:01 +01:00
/*****************************************************************************/
/******************* List notices after removing one of them *****************/
/*****************************************************************************/
void Not_ListNoticesAfterRemoval (void)
{
extern const char *Txt_Notice_removed;
/***** Message of success *****/
2019-02-16 18:11:52 +01:00
Ale_ShowAlert (Ale_SUCCESS,Txt_Notice_removed);
2015-11-03 22:13:01 +01:00
/***** List remaining notices *****/
Not_ListFullNotices ();
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******************************* List notices ********************************/
/*****************************************************************************/
2015-11-03 22:13:01 +01:00
void Not_ListFullNotices (void)
2014-12-01 23:55:08 +01:00
{
2015-11-03 21:58:51 +01:00
/***** Show all notices *****/
2019-03-24 23:17:32 +01:00
Not_ShowNotices (Not_LIST_FULL_NOTICES,
2019-04-04 10:45:15 +02:00
Gbl.Crs.Notices.HighlightNotCod); // Highlight notice
2019-03-24 23:17:32 +01:00
}
/*****************************************************************************/
/************************* Get highlighted notice code ***********************/
/*****************************************************************************/
void Not_GetHighLightedNotCod (void)
{
Gbl.Crs.Notices.HighlightNotCod = ParCod_GetPar (ParCod_Not);
2016-11-06 22:37:12 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************** Mark as hidden a notice that was active *******************/
/*****************************************************************************/
void Not_HideActiveNotice (void)
{
long NotCod;
/***** Get the code of the notice to hide *****/
NotCod = ParCod_GetAndCheckPar (ParCod_Not);
2014-12-01 23:55:08 +01:00
/***** Set notice as hidden *****/
Not_DB_ChangeNoticeStatus (NotCod,Not_OBSOLETE_NOTICE);
2014-12-01 23:55:08 +01:00
/***** Update RSS of current course *****/
2019-04-04 10:45:15 +02:00
RSS_UpdateRSSFileForACrs (&Gbl.Hierarchy.Crs);
2019-03-24 23:17:32 +01:00
/***** Set notice to be highlighted *****/
2019-04-04 10:45:15 +02:00
Gbl.Crs.Notices.HighlightNotCod = NotCod;
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Mark as active a notice that was hidden ******************/
/*****************************************************************************/
void Not_RevealHiddenNotice (void)
{
long NotCod;
2015-11-01 20:21:59 +01:00
/***** Get the code of the notice to reveal *****/
NotCod = ParCod_GetAndCheckPar (ParCod_Not);
2014-12-01 23:55:08 +01:00
2015-11-01 20:21:59 +01:00
/***** Set notice as active *****/
Not_DB_ChangeNoticeStatus (NotCod,Not_ACTIVE_NOTICE);
2014-12-01 23:55:08 +01:00
/***** Update RSS of current course *****/
2019-04-04 10:45:15 +02:00
RSS_UpdateRSSFileForACrs (&Gbl.Hierarchy.Crs);
2019-03-24 23:17:32 +01:00
/***** Set notice to be highlighted *****/
2019-04-04 10:45:15 +02:00
Gbl.Crs.Notices.HighlightNotCod = NotCod;
2014-12-01 23:55:08 +01:00
}
2015-11-03 21:58:51 +01:00
/*****************************************************************************/
/********************* Request the removal of a notice ***********************/
/*****************************************************************************/
void Not_ReqRemNotice (void)
2015-11-03 21:58:51 +01:00
{
extern const char *Txt_Do_you_really_want_to_remove_the_following_notice;
2019-03-24 23:17:32 +01:00
long NotCod;
2015-11-03 21:58:51 +01:00
/***** Get the code of the notice to remove *****/
NotCod = ParCod_GetAndCheckPar (ParCod_Not);
2015-11-03 21:58:51 +01:00
2017-04-28 12:17:22 +02:00
/***** Show question and button to remove this notice *****/
/* Begin alert */
2017-05-11 23:45:46 +02:00
Ale_ShowAlertAndButton1 (Ale_QUESTION,Txt_Do_you_really_want_to_remove_the_following_notice);
2016-11-14 10:30:33 +01:00
2017-04-28 12:17:22 +02:00
/* Show notice */
2019-03-24 23:17:32 +01:00
Not_GetDataAndShowNotice (NotCod);
2017-04-28 12:17:22 +02:00
/* End alert */
2020-03-26 02:54:30 +01:00
Ale_ShowAlertAndButton2 (ActRemNot,NULL,NULL,
Not_PutParNotCod,&NotCod,
Btn_REMOVE_BUTTON,Act_GetActionText (ActRemNot));
2015-11-03 21:58:51 +01:00
/***** Show all notices *****/
2019-03-24 23:17:32 +01:00
Not_ShowNotices (Not_LIST_FULL_NOTICES,
NotCod); // Highlight notice to be removed
2015-11-03 21:58:51 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
2015-11-01 20:21:59 +01:00
/******************************* Remove a notice *****************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
2015-11-03 21:58:51 +01:00
void Not_RemoveNotice (void)
2014-12-01 23:55:08 +01:00
{
long NotCod;
2015-11-03 21:58:51 +01:00
/***** Get the code of the notice to remove *****/
NotCod = ParCod_GetAndCheckPar (ParCod_Not);
2014-12-01 23:55:08 +01:00
/***** Remove notice *****/
/* Copy notice to table of deleted notices */
Not_DB_CopyNoticeToDeleted (NotCod);
2014-12-01 23:55:08 +01:00
/* Remove notice */
Not_DB_RemoveNotice (NotCod);
2014-12-01 23:55:08 +01:00
/***** Mark possible notifications as removed *****/
Ntf_DB_MarkNotifAsRemoved (Ntf_EVENT_NOTICE,NotCod);
2014-12-01 23:55:08 +01:00
2016-01-03 19:30:59 +01:00
/***** Mark possible social note as unavailable *****/
Tml_DB_MarkNoteAsUnavailable (TmlNot_NOTICE,NotCod);
2016-01-03 19:30:59 +01:00
2014-12-01 23:55:08 +01:00
/***** Update RSS of current course *****/
2019-04-04 10:45:15 +02:00
RSS_UpdateRSSFileForACrs (&Gbl.Hierarchy.Crs);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/***************************** Show the notices ******************************/
/*****************************************************************************/
2019-03-24 23:17:32 +01:00
void Not_ShowNotices (Not_Listing_t TypeNoticesListing,long HighlightNotCod)
2014-12-01 23:55:08 +01:00
{
2020-09-26 17:20:01 +02:00
extern const char *Hlp_COMMUNICATION_Notices;
2016-03-21 15:10:00 +01:00
extern const char *Txt_Notices;
2015-11-01 18:54:10 +01:00
extern const char *Txt_No_notices;
2014-12-01 23:55:08 +01:00
MYSQL_RES *mysql_res;
2019-11-08 01:10:32 +01:00
char StrWidth[Cns_MAX_DECIMAL_DIGITS_UINT + 2 + 1];
2017-01-17 03:10:43 +01:00
char PathRelRSSFile[PATH_MAX + 1];
struct Not_Notice Notice;
unsigned NumNot;
unsigned NumNotices = 0; // Initialized to avoid warning
2019-10-28 20:38:29 +01:00
char RSSLink[Cns_MAX_BYTES_WWW + 1];
2014-12-01 23:55:08 +01:00
2019-04-03 20:57:04 +02:00
/***** Trivial check *****/
if (Gbl.Hierarchy.Level != HieLvl_CRS) // No course selected
2019-04-03 20:57:04 +02:00
return;
/***** Get notices from database *****/
switch (TypeNoticesListing)
2014-12-01 23:55:08 +01:00
{
2019-04-03 20:57:04 +02:00
case Not_LIST_BRIEF_NOTICES:
NumNotices = Not_DB_GetActiveNotices (&mysql_res,Gbl.Hierarchy.Crs.CrsCod);
2019-04-03 20:57:04 +02:00
break;
case Not_LIST_FULL_NOTICES:
NumNotices = Not_DB_GetAllNotices (&mysql_res);
2019-04-03 20:57:04 +02:00
break;
}
2014-12-01 23:55:08 +01:00
2019-04-03 20:57:04 +02:00
if (TypeNoticesListing == Not_LIST_FULL_NOTICES)
{
2019-10-26 02:19:42 +02:00
/***** Begin box *****/
snprintf (StrWidth,sizeof (StrWidth),"%upx",
2019-04-03 20:57:04 +02:00
Not_ContainerWidth[Not_LIST_FULL_NOTICES] + 50);
2020-03-26 02:54:30 +01:00
Box_BoxBegin (StrWidth,Txt_Notices,
2020-04-08 19:42:03 +02:00
Not_PutIconsListNotices,NULL,
2020-09-26 17:20:01 +02:00
Hlp_COMMUNICATION_Notices,Box_NOT_CLOSABLE);
if (!NumNotices)
Ale_ShowAlert (Ale_INFO,Txt_No_notices);
2019-04-03 20:57:04 +02:00
}
2014-12-01 23:55:08 +01:00
2019-04-03 20:57:04 +02:00
/***** Show the notices *****/
for (NumNot = 0;
NumNot < NumNotices;
NumNot++)
{
Not_GetNoticeDataFromRow (mysql_res,&Notice,TypeNoticesListing);
2019-04-03 20:57:04 +02:00
/* Draw the notice */
Not_DrawANotice (TypeNoticesListing,&Notice,
(Notice.NotCod == HighlightNotCod)); // Highlighted?
2014-12-01 23:55:08 +01:00
}
2019-04-03 20:57:04 +02:00
switch (TypeNoticesListing)
{
case Not_LIST_BRIEF_NOTICES:
/***** Link to RSS file *****/
/* Create RSS file if not exists */
snprintf (PathRelRSSFile,sizeof (PathRelRSSFile),"%s/%ld/%s/%s",
2019-04-03 20:57:04 +02:00
Cfg_PATH_CRS_PUBLIC,
2019-04-04 10:45:15 +02:00
Gbl.Hierarchy.Crs.CrsCod,Cfg_RSS_FOLDER,Cfg_RSS_FILE);
2019-04-03 20:57:04 +02:00
if (!Fil_CheckIfPathExists (PathRelRSSFile))
2019-04-04 10:45:15 +02:00
RSS_UpdateRSSFileForACrs (&Gbl.Hierarchy.Crs);
2019-04-03 20:57:04 +02:00
/* Put a link to the RSS file */
2019-10-24 00:04:40 +02:00
HTM_DIV_Begin ("class=\"CM\"");
RSS_BuildRSSLink (RSSLink,Gbl.Hierarchy.Crs.CrsCod);
HTM_A_Begin ("href=\"%s\" target=\"_blank\"",RSSLink);
Ico_PutIcon ("rss-square.svg",Ico_BLACK,"RSS","ICO16x16");
HTM_A_End ();
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2019-04-03 20:57:04 +02:00
break;
case Not_LIST_FULL_NOTICES:
/***** End box *****/
2019-10-25 22:48:34 +02:00
Box_BoxEnd ();
2019-04-03 20:57:04 +02:00
break;
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
/***** Mark possible notification as seen *****/
Ntf_DB_MarkNotifsInCrsAsSeen (Ntf_EVENT_NOTICE);
2014-12-01 23:55:08 +01:00
}
2016-11-06 23:46:29 +01:00
/*****************************************************************************/
/*********************** Check if I can edit notices *************************/
/*****************************************************************************/
static bool Not_CheckIfICanEditNotices (void)
{
return Gbl.Usrs.Me.Role.Logged == Rol_TCH ||
Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM;
2016-11-06 23:46:29 +01:00
}
2016-11-06 15:47:37 +01:00
/*****************************************************************************/
2016-11-06 21:19:25 +01:00
/****************** Put contextual icons in list of notices ******************/
2016-11-06 15:47:37 +01:00
/*****************************************************************************/
2020-04-08 19:42:03 +02:00
static void Not_PutIconsListNotices (__attribute__((unused)) void *Args)
2016-11-06 15:47:37 +01:00
{
2020-04-08 19:42:03 +02:00
/***** Put icon to add a new notice *****/
if (Not_CheckIfICanEditNotices ())
Not_PutIconToAddNewNotice ();
2016-11-06 15:47:37 +01:00
2020-04-08 19:42:03 +02:00
/***** Put icon to show a figure *****/
Fig_PutIconToShowFigure (Fig_NOTICES);
2016-11-06 15:47:37 +01:00
}
2016-03-21 15:10:00 +01:00
/*****************************************************************************/
/*********************** Put icon to add a new notice ************************/
/*****************************************************************************/
static void Not_PutIconToAddNewNotice (void)
{
Ico_PutContextualIconToAdd (ActWriNot,NULL,NULL,NULL);
2016-03-21 15:10:00 +01:00
}
2016-03-21 16:49:44 +01:00
/*****************************************************************************/
2015-11-03 21:58:51 +01:00
/******************** Get data of a notice and show it ***********************/
/*****************************************************************************/
2016-11-06 22:37:12 +01:00
static void Not_GetDataAndShowNotice (long NotCod)
2015-11-03 21:58:51 +01:00
{
MYSQL_RES *mysql_res;
struct Not_Notice Notice;
2015-11-03 21:58:51 +01:00
/***** Get notice data from database *****/
if (Not_DB_GetNoticeData (&mysql_res,NotCod))
2015-11-03 21:58:51 +01:00
{
Not_GetNoticeDataFromRow (mysql_res,&Notice,Not_LIST_FULL_NOTICES);
2015-11-03 21:58:51 +01:00
/***** Draw the notice *****/
Not_DrawANotice (Not_LIST_FULL_NOTICES,&Notice,
false); // Not highlighted
}
2015-11-03 21:58:51 +01:00
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
2015-11-03 21:58:51 +01:00
/*****************************************************************************/
/******************* Get notice data from database row ***********************/
/*****************************************************************************/
2015-11-03 21:58:51 +01:00
static void Not_GetNoticeDataFromRow (MYSQL_RES *mysql_res,
struct Not_Notice *Notice,
Not_Listing_t TypeNoticesListing)
{
MYSQL_ROW row;
unsigned UnsignedNum;
2015-11-03 21:58:51 +01:00
/***** Get next row from result *****/
row = mysql_fetch_row (mysql_res);
/***** Get notice code (row[0]) *****/
if (sscanf (row[0],"%ld",&Notice->NotCod) != 1)
Err_WrongNoticeExit ();
/***** Get creation time (row[1] holds the UTC date-time) *****/
Notice->CreatTime = Dat_GetUNIXTimeFromStr (row[1]);
/***** Get user code (row[2]) *****/
Notice->UsrCod = Str_ConvertStrCodToLongCod (row[2]);
/***** Get the content (row[3]) and insert links *****/
Str_Copy (Notice->Content,row[3],sizeof (Notice->Content) - 1);
/* Inserting links is incompatible with limiting the length
==> don't insert links when limiting length */
switch (TypeNoticesListing)
{
case Not_LIST_BRIEF_NOTICES:
Str_LimitLengthHTMLStr (Notice->Content,Not_MAX_CHARS_ON_NOTICE);
break;
case Not_LIST_FULL_NOTICES:
ALn_InsertLinks (Notice->Content,Cns_MAX_BYTES_TEXT,
Not_MaxCharsURLOnScreen[Not_LIST_FULL_NOTICES]);
break;
2015-11-03 21:58:51 +01:00
}
/***** Get status of the notice (row[4]) *****/
Notice->Status = Not_OBSOLETE_NOTICE;
if (sscanf (row[4],"%u",&UnsignedNum) == 1)
if (UnsignedNum < Not_NUM_STATUS)
Notice->Status = (Not_Status_t) UnsignedNum;
2015-11-03 21:58:51 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/********************* Draw a notice as a yellow note ************************/
/*****************************************************************************/
static void Not_DrawANotice (Not_Listing_t TypeNoticesListing,
struct Not_Notice *Notice,
bool Highlight)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_See_full_notice;
static Act_Action_t ActionHideUnhide[HidVis_NUM_HIDDEN_VISIBLE] =
{
[HidVis_HIDDEN ] = ActUnhNot, // Hidden ==> action to unhide
[HidVis_VISIBLE] = ActHidNot, // Visible ==> action to hide
};
2015-11-01 14:11:46 +01:00
static const char *ContainerClass[Not_NUM_STATUS] =
{
[Not_ACTIVE_NOTICE ] = "NOTICE_BOX",
[Not_OBSOLETE_NOTICE] = "NOTICE_BOX LIGHT",
2015-11-01 14:11:46 +01:00
};
2019-11-18 17:59:02 +01:00
static const char *ContainerWidthClass[Not_NUM_TYPES_LISTING] =
2019-10-15 15:23:38 +02:00
{
[Not_LIST_BRIEF_NOTICES] = "NOTICE_BOX_NARROW",
[Not_LIST_FULL_NOTICES ] = "NOTICE_BOX_WIDE",
2015-11-01 14:11:46 +01:00
};
2015-10-26 14:49:42 +01:00
static unsigned UniqueId = 0;
2019-11-01 22:53:39 +01:00
char *Id;
struct Usr_Data UsrDat;
2019-03-25 19:05:10 +01:00
char *Anchor = NULL;
2014-12-01 23:55:08 +01:00
2019-03-24 23:17:32 +01:00
/***** Build anchor string *****/
Frm_SetAnchorStr (Notice->NotCod,&Anchor);
2019-03-24 23:17:32 +01:00
2019-10-26 01:56:36 +02:00
/***** Begin article for this notice *****/
2019-03-24 23:17:32 +01:00
if (TypeNoticesListing == Not_LIST_FULL_NOTICES)
{
2019-10-26 01:56:36 +02:00
HTM_ARTICLE_Begin (Anchor);
HTM_DIV_Begin ("class=\"NOTICE_CONT%s\"",
Highlight ? " NOTICE_HIGHLIGHT" :
"");
2019-03-24 23:17:32 +01:00
}
2016-12-11 20:28:58 +01:00
/***** Begin yellow note *****/
2019-10-24 00:04:40 +02:00
HTM_DIV_Begin ("class=\"%s %s\"",
ContainerClass[Notice->Status],ContainerWidthClass[TypeNoticesListing]);
2014-12-01 23:55:08 +01:00
/***** Write the date in the top part of the yellow note *****/
/* Write symbol to indicate if notice is obsolete or active */
if (TypeNoticesListing == Not_LIST_FULL_NOTICES)
if (Not_CheckIfICanEditNotices ())
{
/***** Icon to remove announcement *****/
Ico_PutContextualIconToRemove (ActReqRemNot,NULL,
Not_PutParNotCod,&Notice->NotCod);
/***** Icon to change the status of the notice *****/
Ico_PutContextualIconToHideUnhide (ActionHideUnhide,NULL, // TODO: Put anchor
Not_PutParNotCod,&Notice->NotCod,
Notice->Status == Not_OBSOLETE_NOTICE);
}
/* Write the date */
UniqueId++;
HTM_DIV_Begin ("class=\"NOTICE_DATE NOTICE_DATE_%s RT\"",
The_GetSuffix ());
if (TypeNoticesListing == Not_LIST_BRIEF_NOTICES)
{
/* Form to view full notice */
Frm_BeginFormAnchor (ActSeeOneNot,Anchor);
ParCod_PutPar (ParCod_Not,Notice->NotCod);
HTM_BUTTON_Submit_Begin (Txt_See_full_notice,
"class=\"RT BT_LINK\"");
}
if (asprintf (&Id,"not_date_%u",UniqueId) < 0)
Err_NotEnoughMemoryExit ();
HTM_SPAN_Begin ("id=\"%s\"",Id);
HTM_SPAN_End ();
if (TypeNoticesListing == Not_LIST_BRIEF_NOTICES)
{
HTM_BUTTON_End ();
Frm_EndForm ();
}
Dat_WriteLocalDateHMSFromUTC (Id,Notice->CreatTime,
Gbl.Prefs.DateFormat,Dat_SEPARATOR_BREAK,
true,true,false,0x6);
free (Id);
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2015-11-01 21:19:33 +01:00
/***** Write the content of the notice *****/
if (TypeNoticesListing == Not_LIST_BRIEF_NOTICES)
{
HTM_DIV_Begin ("class=\"NOTICE_TEXT_BRIEF NOTICE_TEXT_%s\"",
The_GetSuffix ());
HTM_Txt (Notice->Content);
HTM_DIV_End ();
2014-12-01 23:55:08 +01:00
/* Put form to view full notice */
HTM_DIV_Begin ("class=\"CM\"");
Lay_PutContextualLinkOnlyIcon (ActSeeOneNot,Anchor,
Not_PutParNotCod,&Notice->NotCod,
"ellipsis-h.svg",Ico_BLACK);
HTM_DIV_End ();
}
else
{
HTM_DIV_Begin ("class=\"NOTICE_TEXT NOTICE_TEXT_%s\"",
The_GetSuffix ());
HTM_Txt (Notice->Content);
HTM_DIV_End ();
}
/***** Write the author *****/
HTM_DIV_Begin ("class=\"NOTICE_AUTHOR NOTICE_AUTHOR_%s\"", // Limited width
The_GetSuffix ());
Usr_UsrDataConstructor (&UsrDat);
UsrDat.UsrCod = Notice->UsrCod;
if (Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&UsrDat, // Get author's data from database
Usr_DONT_GET_PREFS,
Usr_DONT_GET_ROLE_IN_CURRENT_CRS))
Usr_WriteFirstNameBRSurnames (&UsrDat);
Usr_UsrDataDestructor (&UsrDat);
HTM_DIV_End ();
2014-12-01 23:55:08 +01:00
2015-12-30 12:40:13 +01:00
/***** End yellow note *****/
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2019-03-24 23:17:32 +01:00
/***** End article for this notice *****/
if (TypeNoticesListing == Not_LIST_FULL_NOTICES)
{
HTM_DIV_End ();
2019-10-26 01:56:36 +02:00
HTM_ARTICLE_End ();
2019-03-24 23:17:32 +01:00
}
2019-03-25 19:05:10 +01:00
/***** Free anchor string *****/
Frm_FreeAnchorStr (&Anchor);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
2015-12-29 01:28:17 +01:00
/******************* Get summary and content for a notice ********************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
2017-03-08 14:12:33 +01:00
void Not_GetSummaryAndContentNotice (char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1],
2017-03-06 13:01:16 +01:00
char **ContentStr,
long NotCod,bool GetContent)
2014-12-01 23:55:08 +01:00
{
MYSQL_RES *mysql_res;
MYSQL_ROW row;
2017-01-15 22:58:26 +01:00
size_t Length;
2014-12-01 23:55:08 +01:00
SummaryStr[0] = '\0'; // Return nothing on error
/***** Get content of message from database *****/
if (Not_DB_ContentNotice (&mysql_res,NotCod) == 1) // Result should have a unique row
2018-10-24 00:18:36 +02:00
{
/***** Get sumary / content *****/
row = mysql_fetch_row (mysql_res);
/***** Copy summary *****/
// TODO: Do only direct copy when a Subject of type VARCHAR(255) is available
if (strlen (row[0]) > Ntf_MAX_BYTES_SUMMARY)
{
2020-05-25 17:53:13 +02:00
/* Inserting links is incompatible with limiting the length
==> don't insert links */
2018-10-24 00:18:36 +02:00
strncpy (SummaryStr,row[0],
Ntf_MAX_BYTES_SUMMARY);
SummaryStr[Ntf_MAX_BYTES_SUMMARY] = '\0';
}
else
Str_Copy (SummaryStr,row[0],Ntf_MAX_BYTES_SUMMARY);
2018-10-24 00:18:36 +02:00
/***** Copy content *****/
if (GetContent)
{
Length = strlen (row[0]);
if ((*ContentStr = malloc (Length + 1)) == NULL)
Err_NotEnoughMemoryExit ();
Str_Copy (*ContentStr,row[0],Length);
2018-10-24 00:18:36 +02:00
}
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/*************************** Get number of notices ***************************/
/*****************************************************************************/
// Returns the number of (active or obsolete) notices
// sent from this location (all the platform, current degree or current course)
unsigned Not_GetNumNotices (HieLvl_Level_t Scope,Not_Status_t Status,unsigned *NumNotif)
2014-12-01 23:55:08 +01:00
{
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned NumNotices;
/***** Get number of notices from database *****/
if (Not_DB_GetNumNotices (&mysql_res,Scope,Status) == 1)
2014-12-01 23:55:08 +01:00
{
/***** Get number of notices *****/
row = mysql_fetch_row (mysql_res);
if (sscanf (row[0],"%u",&NumNotices) != 1)
Err_ShowErrorAndExit ("Error when getting number of notices.");
2014-12-01 23:55:08 +01:00
/***** Get number of notifications by email *****/
if (row[1])
{
if (sscanf (row[1],"%u",NumNotif) != 1)
Err_ShowErrorAndExit ("Error when getting number of notifications of notices.");
}
else
*NumNotif = 0;
2014-12-01 23:55:08 +01:00
}
else
{
NumNotices = 0;
2014-12-01 23:55:08 +01:00
*NumNotif = 0;
}
2014-12-01 23:55:08 +01:00
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
return NumNotices;
}
/*****************************************************************************/
/************************ Get number of deleted notices **********************/
/*****************************************************************************/
// Returns the number of deleted notices
// sent from this location (all the platform, current degree or current course)
unsigned Not_GetNumNoticesDeleted (HieLvl_Level_t Scope,unsigned *NumNotif)
2014-12-01 23:55:08 +01:00
{
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned NumNotices;
/***** Get number of notices from database *****/
if (Not_DB_GetNumNoticesDeleted (&mysql_res,Scope) == 1)
2014-12-01 23:55:08 +01:00
{
/***** Get number of notices *****/
row = mysql_fetch_row (mysql_res);
if (sscanf (row[0],"%u",&NumNotices) != 1)
Err_ShowErrorAndExit ("Error when getting number of deleted notices.");
2014-12-01 23:55:08 +01:00
/***** Get number of notifications by email *****/
if (row[1])
{
if (sscanf (row[1],"%u",NumNotif) != 1)
Err_ShowErrorAndExit ("Error when getting number of notifications of deleted notices.");
}
else
*NumNotif = 0;
2014-12-01 23:55:08 +01:00
}
else
{
NumNotices = 0;
2014-12-01 23:55:08 +01:00
*NumNotif = 0;
}
2014-12-01 23:55:08 +01:00
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
return NumNotices;
}
/*****************************************************************************/
/*************** Put parameter with the code of a notice *********************/
/*****************************************************************************/
static void Not_PutParNotCod (void *NotCod)
2016-12-11 20:28:58 +01:00
{
2020-04-08 19:42:03 +02:00
if (NotCod)
ParCod_PutPar (ParCod_Not,*((long *) NotCod));
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/************************** Show figures about notices ***********************/
/*****************************************************************************/
void Not_GetAndShowNoticesStats (void)
{
extern const char *Hlp_ANALYTICS_Figures_notices;
extern const char *Txt_FIGURE_TYPES[Fig_NUM_FIGURES];
extern const char *Txt_NOTICE_Active_BR_notices;
extern const char *Txt_NOTICE_Obsolete_BR_notices;
extern const char *Txt_NOTICE_Deleted_BR_notices;
extern const char *Txt_Total;
extern const char *Txt_Number_of_BR_notifications;
Not_Status_t NoticeStatus;
unsigned NumNotices[Not_NUM_STATUS];
unsigned NumNoticesDeleted;
unsigned NumTotalNotices = 0;
unsigned NumNotif;
unsigned NumTotalNotifications = 0;
/***** Get the number of notices active and obsolete *****/
for (NoticeStatus = (Not_Status_t) 0;
NoticeStatus <= (Not_Status_t) (Not_NUM_STATUS - 1);
NoticeStatus++)
{
NumNotices[NoticeStatus] = Not_GetNumNotices (Gbl.Scope.Current,NoticeStatus,&NumNotif);
NumTotalNotices += NumNotices[NoticeStatus];
NumTotalNotifications += NumNotif;
}
NumNoticesDeleted = Not_GetNumNoticesDeleted (Gbl.Scope.Current,&NumNotif);
NumTotalNotices += NumNoticesDeleted;
NumTotalNotifications += NumNotif;
/***** Begin box and table *****/
Box_BoxTableBegin (NULL,Txt_FIGURE_TYPES[Fig_NOTICES],
NULL,NULL,
Hlp_ANALYTICS_Figures_notices,Box_NOT_CLOSABLE,2);
/***** Write table heading *****/
HTM_TR_Begin (NULL);
HTM_TH (Txt_NOTICE_Active_BR_notices ,HTM_HEAD_RIGHT);
HTM_TH (Txt_NOTICE_Obsolete_BR_notices,HTM_HEAD_RIGHT);
HTM_TH (Txt_NOTICE_Deleted_BR_notices ,HTM_HEAD_RIGHT);
HTM_TH (Txt_Total ,HTM_HEAD_RIGHT);
HTM_TH (Txt_Number_of_BR_notifications,HTM_HEAD_RIGHT);
HTM_TR_End ();
/***** Write number of notices *****/
HTM_TR_Begin (NULL);
HTM_TD_Begin ("class=\"RM DAT_%s\"",
The_GetSuffix ());
HTM_Unsigned (NumNotices[Not_ACTIVE_NOTICE]);
HTM_TD_End ();
HTM_TD_Begin ("class=\"RM DAT_%s\"",
The_GetSuffix ());
HTM_Unsigned (NumNotices[Not_OBSOLETE_NOTICE]);
HTM_TD_End ();
HTM_TD_Begin ("class=\"RM DAT_%s\"",
The_GetSuffix ());
HTM_Unsigned (NumNoticesDeleted);
HTM_TD_End ();
HTM_TD_Begin ("class=\"RM DAT_STRONG_%s\"",
The_GetSuffix ());
HTM_Unsigned ( NumTotalNotices);
HTM_TD_End ();
HTM_TD_Begin ("class=\"RM DAT_%s\"",
The_GetSuffix ());
HTM_Unsigned (NumTotalNotifications);
HTM_TD_End ();
HTM_TR_End ();
/***** End table and box *****/
Box_BoxTableEnd ();
}