swad-core/swad_assignment.h

104 lines
3.6 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_assignment.h: assignments
#ifndef _SWAD_ASG
#define _SWAD_ASG
/*
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.
2021-02-09 12:43:45 +01:00
Copyright (C) 1999-2021 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"
2017-03-08 22:23:52 +01:00
#include "swad_file_browser.h"
2017-03-08 14:12:33 +01:00
#include "swad_notification.h"
2014-12-01 23:55:08 +01:00
#include "swad_user.h"
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2017-03-08 14:12:33 +01:00
#define Asg_MAX_CHARS_ASSIGNMENT_TITLE (128 - 1) // 127
#define Asg_MAX_BYTES_ASSIGNMENT_TITLE ((Asg_MAX_CHARS_ASSIGNMENT_TITLE + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2014-12-01 23:55:08 +01:00
#define Asg_NUM_TYPES_SEND_WORK 2
typedef enum
{
Asg_DO_NOT_SEND_WORK = 0,
Asg_SEND_WORK = 1,
} Asg_SendWork_t;
2020-04-10 19:14:08 +02:00
struct Asg_Assignments
{
bool LstIsRead; // Is the list already read from database...
// ...or it needs to be read?
unsigned Num; // Number of assignments
long *LstAsgCods; // List of assigment codes
Dat_StartEndTime_t SelectedOrder;
long AsgCodToEdit; // Used as parameter in contextual links
unsigned CurrentPage;
};
2020-04-08 03:06:45 +02:00
struct Asg_Assignment
2014-12-01 23:55:08 +01:00
{
long AsgCod;
bool Hidden;
long UsrCod;
2016-12-15 00:39:52 +01:00
time_t TimeUTC[Dat_NUM_START_END_TIME];
2014-12-01 23:55:08 +01:00
bool Open;
2017-03-07 01:56:41 +01:00
char Title[Asg_MAX_BYTES_ASSIGNMENT_TITLE + 1];
2014-12-01 23:55:08 +01:00
Asg_SendWork_t SendWork;
2017-03-08 22:23:52 +01:00
char Folder[Brw_MAX_BYTES_FOLDER + 1];
2015-11-10 02:23:55 +01:00
bool IBelongToCrsOrGrps; // I can do this assignment
// (it is associated to no groups
// or, if associated to groups,
// I belong to any of the groups)
2014-12-01 23:55:08 +01:00
};
2017-01-29 12:42:19 +01:00
#define Asg_ORDER_DEFAULT Dat_START_TIME
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
void Asg_SeeAssignments (void);
2017-05-02 10:24:47 +02:00
void Asg_PrintOneAssignment (void);
2014-12-01 23:55:08 +01:00
void Asg_RequestCreatOrEditAsg (void);
2020-04-08 03:06:45 +02:00
void Asg_GetDataOfAssignmentByCod (struct Asg_Assignment *Asg);
void Asg_GetDataOfAssignmentByFolder (struct Asg_Assignment *Asg);
2014-12-01 23:55:08 +01:00
2017-03-08 14:12:33 +01:00
void Asg_GetNotifAssignment (char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1],
2017-03-06 13:01:16 +01:00
char **ContentStr,
long AsgCod,bool GetContent);
2014-12-01 23:55:08 +01:00
long Asg_GetParamAsgCod (void);
2016-12-11 21:02:22 +01:00
void Asg_ReqRemAssignment (void);
2014-12-01 23:55:08 +01:00
void Asg_RemoveAssignment (void);
void Asg_HideAssignment (void);
void Asg_UnhideAssignment (void);
2020-05-05 21:49:00 +02:00
void Asg_ReceiveFormAssignment (void);
2014-12-01 23:55:08 +01:00
void Asg_RemoveCrsAssignments (long CrsCod);
unsigned Asg_GetNumAssignments (HieLvl_Level_t Scope,unsigned *NumNotif);
2014-12-01 23:55:08 +01:00
#endif