swad-core/swad_attendance.h

122 lines
4.1 KiB
C
Raw Permalink Normal View History

2014-12-01 23:55:08 +01:00
// swad_attendance.h: control of attendance
#ifndef _SWAD_ATT
#define _SWAD_ATT
/*
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-2024 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 ***********************************/
/*****************************************************************************/
#include "swad_date.h"
#include "swad_user.h"
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2017-03-08 14:12:33 +01:00
#define Att_MAX_CHARS_ATTENDANCE_EVENT_TITLE (128 - 1) // 127
#define Att_MAX_BYTES_ATTENDANCE_EVENT_TITLE ((Att_MAX_CHARS_ATTENDANCE_EVENT_TITLE + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2014-12-01 23:55:08 +01:00
2020-04-10 19:14:08 +02:00
#define Att_NUM_ORDERS_NEWEST_OLDEST 2
typedef enum
{
Att_NEWEST_FIRST,
Att_OLDEST_FIRST,
} Att_OrderNewestOldest_t;
#define Att_ORDER_DEFAULT Dat_STR_TIME
2020-04-10 19:14:08 +02:00
2020-04-06 16:00:06 +02:00
struct Att_Event
2014-12-01 23:55:08 +01:00
{
2017-01-17 14:52:13 +01:00
/* Fields stored in database */
2014-12-01 23:55:08 +01:00
long AttCod;
long CrsCod;
HidVis_HiddenOrVisible_t HiddenOrVisible;
2014-12-01 23:55:08 +01:00
long UsrCod;
time_t TimeUTC[Dat_NUM_START_END_TIME];
CloOpe_ClosedOrOpen_t ClosedOrOpen;
2014-12-01 23:55:08 +01:00
bool CommentTchVisible;
char Title[Att_MAX_BYTES_ATTENDANCE_EVENT_TITLE + 1];
2017-01-17 14:52:13 +01:00
/* Field computed, not associated to the event in database */
2014-12-01 23:55:08 +01:00
unsigned NumStdsTotal; // Number total of students who have assisted to the event
};
2020-04-10 19:14:08 +02:00
struct Att_Events
2014-12-01 23:55:08 +01:00
{
bool LstIsRead; // Is the list already read from database, or it needs to be read?
unsigned Num; // Number of attendance events
struct
{
long AttCod; // Attendance event code
unsigned NumStdsFromList; // Number of students (taken from a list) who has assisted to the event
bool Selected; // I have selected this attendance event
} *Lst; // List of attendance events
2020-04-10 19:14:08 +02:00
Dat_StartEndTime_t SelectedOrder;
struct Att_Event Event; // Selected/current event
2020-04-10 19:14:08 +02:00
bool ShowDetails;
char *StrAttCodsSelected;
unsigned CurrentPage;
};
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void Att_SeeEvents (void);
Usr_ICan_t Att_CheckIfICanEditEvents (void);
void Att_ReqCreatOrEditEvent (void);
bool Att_GetEventDataByCod (struct Att_Event *Event);
void Att_GetEventDataFromRow (MYSQL_ROW row,struct Att_Event *Event);
2016-09-06 18:29:13 +02:00
void Att_AskRemEvent (void);
void Att_GetAndRemEvent (void);
void Att_RemoveEventFromDB (long AttCod);
2016-09-06 18:29:13 +02:00
void Att_HideEvent (void);
void Att_UnhideEvent (void);
void Att_ReceiveEvent (void);
void Att_CreateEvent (struct Att_Event *Event,const char *Description);
void Att_UpdateEvent (struct Att_Event *Event,const char *Description);
2016-09-06 18:29:13 +02:00
void Att_RemoveCrsEvents (long HieCod);
2016-09-06 18:29:13 +02:00
unsigned Att_GetNumEvents (Hie_Level_t Level,unsigned *NumNotif);
2014-12-01 23:55:08 +01:00
void Att_SeeOneEvent (void);
2014-12-01 23:55:08 +01:00
void Att_PutParsCodGrps (long AttCod);
void Att_RegisterMeAsStdInEvent (void);
void Att_RegisterStudentsInEvent (void);
2014-12-01 23:55:08 +01:00
2020-04-13 16:39:15 +02:00
void Att_ReqListUsrsAttendanceCrs (void);
2019-11-14 17:53:50 +01:00
void Att_ListMyAttendanceCrs (void);
void Att_PrintMyAttendanceCrs (void);
void Att_ListUsrsAttendanceCrs (void);
void Att_PrintUsrsAttendanceCrs (void);
2014-12-01 23:55:08 +01:00
#endif