swad-core/swad_user.h

409 lines
16 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_user.h: users
#ifndef _SWAD_USR
#define _SWAD_USR
/*
SWAD (Shared Workspace At a Distance in Spanish),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2017-01-13 01:51:23 +01:00
Copyright (C) 1999-2017 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 <mysql/mysql.h> // To access MySQL databases
#include "swad_action.h"
#include "swad_constant.h"
#include "swad_cryptography.h"
#include "swad_date.h"
#include "swad_degree.h"
#include "swad_icon.h"
#include "swad_layout.h"
2015-01-02 01:19:27 +01:00
#include "swad_menu.h"
2014-12-01 23:55:08 +01:00
#include "swad_nickname.h"
2017-03-13 13:33:45 +01:00
#include "swad_password.h"
2016-12-09 13:59:33 +01:00
#include "swad_privacy_visibility_type.h"
2016-12-13 13:32:19 +01:00
#include "swad_role_type.h"
2014-12-01 23:55:08 +01:00
#include "swad_scope.h"
#include "swad_search.h"
#include "swad_string.h"
#include "swad_theme.h"
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Usr_MIN_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 6
#define Usr_DEF_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 12
#define Usr_MAX_MONTHS_WITHOUT_ACCESS_TO_REMOVE_OLD_USRS 60
2017-03-08 14:12:33 +01:00
#define Usr_MAX_CHARS_FIRSTNAME_OR_SURNAME (32 - 1) // 31
#define Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME ((Usr_MAX_CHARS_FIRSTNAME_OR_SURNAME + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 511
2017-01-13 01:51:23 +01:00
2017-03-07 19:55:29 +01:00
#define Usr_MAX_BYTES_SURNAMES (Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME)
// Surname1 +' '+ Surname2
#define Usr_MAX_BYTES_FULL_NAME (Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 6 + Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME)
// Surname1 +' '+ Surname2 + ','+' ' + FirstName
// Surname1 +' '+ Surname2 + '<br />' + FirstName
2014-12-01 23:55:08 +01:00
2017-01-28 15:58:46 +01:00
#define Usr_BIRTHDAY_STR_DB_LENGTH (4 + 1 + 2 + 1 + 2) // "'%04u-%02u-%02u'"
2016-05-01 01:52:35 +02:00
2017-03-08 14:12:33 +01:00
#define Usr_MAX_CHARS_ADDRESS (128 - 1) // 127
#define Usr_MAX_BYTES_ADDRESS ((Usr_MAX_CHARS_ADDRESS + 1) * Str_MAX_BYTES_PER_CHAR - 1) // 2047
2017-03-08 01:21:21 +01:00
#define Usr_MAX_CHARS_PHONE 16
#define Usr_MAX_BYTES_PHONE Usr_MAX_CHARS_PHONE
2014-12-01 23:55:08 +01:00
#define Usr_CLASS_PHOTO_COLS_DEF 10 // Default number of columns in a class photo
#define Usr_CLASS_PHOTO_COLS_MAX 50 // Maximum number of columns in a class photo
#define Usr_LIST_WITH_PHOTOS_DEF false
2017-03-07 01:56:41 +01:00
#define Usr_MAX_BYTES_LIST_ENCRYPTED_USR_CODS (Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 * Cfg_MAX_USRS_IN_LIST)
2014-12-01 23:55:08 +01:00
2016-07-25 16:08:25 +02:00
#define Usr_NUM_MAIN_FIELDS_DATA_USR 8
2016-06-15 20:35:49 +02:00
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******************************** Public types *******************************/
/*****************************************************************************/
// Related with user's sexs
#define Usr_NUM_SEXS 4 // Unknown, female, male, all
typedef enum
{
Usr_SEX_UNKNOWN = 0,
Usr_SEX_FEMALE = 1,
Usr_SEX_MALE = 2,
Usr_SEX_ALL = 3, // Usr_SEX_ALL is intended for "all sexs"
} Usr_Sex_t;
// Don't change these numbers! They are used for user's sex in database
// Related with class photograph
typedef enum
{
Usr_CLASS_PHOTO_SEL, // Only for selection of users
Usr_CLASS_PHOTO_SEL_SEE, // Selection and seeing of users
Usr_CLASS_PHOTO_SEE, // Only seeing users
Usr_CLASS_PHOTO_PRN, // Only print users
} Usr_ClassPhotoType_t;
// Related with type of list of users
2017-01-29 21:41:08 +01:00
#define Usr_NUM_USR_LIST_TYPES 3
2014-12-01 23:55:08 +01:00
typedef enum
{
2017-01-29 21:41:08 +01:00
Usr_LIST_UNKNOWN = 0,
Usr_LIST_AS_CLASS_PHOTO = 1,
Usr_LIST_AS_LISTING = 2,
2014-12-01 23:55:08 +01:00
} Usr_ShowUsrsType_t;
2017-01-29 21:41:08 +01:00
#define Usr_SHOW_USRS_TYPE_DEFAULT Usr_LIST_AS_CLASS_PHOTO
2014-12-01 23:55:08 +01:00
// Related with user's data
struct UsrData
{
long UsrCod;
2017-03-07 01:56:41 +01:00
char EncryptedUsrCod [Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1];
2017-03-13 13:17:53 +01:00
char UsrIDNickOrEmail[Cns_MAX_BYTES_EMAIL_ADDRESS + 1]; // String to store the ID, nickname or email
2014-12-01 23:55:08 +01:00
struct
{
struct ListIDs *List;
unsigned Num;
} IDs;
2017-03-07 01:56:41 +01:00
char Nickname [Nck_MAX_BYTES_NICKNAME_WITHOUT_ARROBA + 1];
2017-03-13 14:22:36 +01:00
char Password [Pwd_BYTES_ENCRYPTED_PASSWORD + 1];
2014-12-01 23:55:08 +01:00
Rol_Role_t RoleInCurrentCrsDB;
2016-12-13 13:32:19 +01:00
int Roles; // Check always if filled/calculated
// >=0 ==> filled/calculated
// <0 ==> not yet filled/calculated
2014-12-01 23:55:08 +01:00
bool Accepted; // User has accepted joining to current course?
2017-03-07 19:55:29 +01:00
char Surname1 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
char Surname2 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
char FirstName [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
2017-01-15 18:02:52 +01:00
char FullName [Usr_MAX_BYTES_FULL_NAME + 1];
2014-12-01 23:55:08 +01:00
Usr_Sex_t Sex;
2017-03-13 13:17:53 +01:00
char Email [Cns_MAX_BYTES_EMAIL_ADDRESS + 1];
2014-12-01 23:55:08 +01:00
bool EmailConfirmed;
2017-03-07 01:56:41 +01:00
char Photo [Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]; // Name of public link to photo
2015-03-06 22:36:29 +01:00
Pri_Visibility_t PhotoVisibility; // Who can see user's photo
2015-03-06 23:20:33 +01:00
Pri_Visibility_t ProfileVisibility; // Who can see user's public profile
2014-12-01 23:55:08 +01:00
long CtyCod; // Country
2017-03-08 14:12:33 +01:00
char OriginPlace [Usr_MAX_BYTES_ADDRESS + 1];
2014-12-01 23:55:08 +01:00
struct Date Birthday;
2017-03-07 11:03:05 +01:00
char StrBirthday [Cns_MAX_BYTES_DATE + 1];
2017-03-08 14:12:33 +01:00
char LocalAddress [Usr_MAX_BYTES_ADDRESS + 1];
2017-03-07 11:03:05 +01:00
char LocalPhone [Usr_MAX_BYTES_PHONE + 1];
2017-03-08 14:12:33 +01:00
char FamilyAddress [Usr_MAX_BYTES_ADDRESS + 1];
2017-03-07 11:03:05 +01:00
char FamilyPhone [Usr_MAX_BYTES_PHONE + 1];
2014-12-01 23:55:08 +01:00
char *Comments;
long InsCtyCod; // Country of the institution
long InsCod; // Institution
struct
{
long CtrCod; // Centre
long DptCod; // Department
2017-03-08 14:12:33 +01:00
char Office [Usr_MAX_BYTES_ADDRESS + 1];
2017-01-13 10:49:56 +01:00
char OfficePhone [Usr_MAX_BYTES_PHONE + 1];
2014-12-01 23:55:08 +01:00
} Tch;
struct
{
Txt_Language_t Language;
2015-11-21 20:23:28 +01:00
unsigned FirstDayOfWeek;
2017-05-04 02:19:23 +02:00
Dat_Format_t DateFormat;
2014-12-01 23:55:08 +01:00
The_Theme_t Theme;
Ico_IconSet_t IconSet;
2015-01-02 01:19:27 +01:00
Mnu_Menu_t Menu;
unsigned SideCols;
2014-12-01 23:55:08 +01:00
unsigned NotifNtfEvents; // One bit activated for each type of event
unsigned EmailNtfEvents; // One bit activated for each type of event
} Prefs;
};
struct UsrLast
{
Sch_WhatToSearch_t WhatToSearch; // Search courses, teachers, documents...?
long LastCrs;
2016-10-12 14:02:56 +02:00
Tab_Tab_t LastTab;
2014-12-01 23:55:08 +01:00
long LastAccNotif;
};
struct UsrInList
{
long UsrCod;
2017-03-07 01:56:41 +01:00
char EncryptedUsrCod[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1];
2017-03-13 14:22:36 +01:00
char Password[Pwd_BYTES_ENCRYPTED_PASSWORD + 1];
2017-03-07 19:55:29 +01:00
char Surname1 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
char Surname2 [Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
char FirstName[Usr_MAX_BYTES_FIRSTNAME_OR_SURNAME + 1];
2014-12-01 23:55:08 +01:00
Usr_Sex_t Sex;
2017-03-07 01:56:41 +01:00
char Photo[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]; // Name of public link to photo
2016-07-25 20:24:07 +02:00
Pri_Visibility_t PhotoVisibility; // Who can see user's photo
2017-03-01 14:53:18 +01:00
long CtyCod; // Country
2016-07-25 20:24:07 +02:00
long InsCod; // Institution
2016-07-26 01:03:41 +02:00
Rol_Role_t RoleInCurrentCrsDB; // Role in current course in database
2014-12-01 23:55:08 +01:00
bool Accepted; // User has accepted joining to one/all courses?
bool Remove; // A boolean associated with each user that indicates if it must be removed
};
2016-06-23 13:10:43 +02:00
struct ListUsrs
2014-12-01 23:55:08 +01:00
{
struct UsrInList *Lst; // List of users
unsigned NumUsrs; // Number of users in the list
};
struct ListUsrCods
{
long *Lst; // List of users' codes
unsigned NumUsrs; // Number of users in the list
};
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
void Usr_InformAboutNumClicksBeforePhoto (void);
void Usr_UsrDataConstructor (struct UsrData *UsrDat);
void Usr_ResetUsrDataExceptUsrCodAndIDs (struct UsrData *UsrDat);
void Usr_ResetMyLastData (void);
void Usr_UsrDataDestructor (struct UsrData *UsrDat);
void Usr_GetAllUsrDataFromUsrCod (struct UsrData *UsrDat);
void Usr_AllocateListUsrCods (struct ListUsrCods *ListUsrCods);
void Usr_FreeListUsrCods (struct ListUsrCods *ListUsrCods);
void Usr_GetUsrCodFromEncryptedUsrCod (struct UsrData *UsrDat);
2016-12-04 03:50:25 +01:00
void Usr_GetEncryptedUsrCodFromUsrCod (struct UsrData *UsrDat); // TODO: Remove this funcion, it's not used
2014-12-01 23:55:08 +01:00
void Usr_GetUsrDataFromUsrCod (struct UsrData *UsrDat);
void Usr_BuildFullName (struct UsrData *UsrDat);
2017-03-05 15:12:48 +01:00
void Usr_WriteFirstNameBRSurnames (const struct UsrData *UsrDat);
2014-12-01 23:55:08 +01:00
2015-02-01 16:08:58 +01:00
bool Usr_CheckIfUsrIsAdm (long UsrCod,Sco_Scope_t Scope,long Cod);
2014-12-01 23:55:08 +01:00
bool Usr_CheckIfUsrIsSuperuser (long UsrCod);
2016-06-16 18:05:23 +02:00
2017-01-27 10:42:20 +01:00
bool Usr_ICanChangeOtherUsrData (const struct UsrData *UsrDat);
2017-01-28 18:08:06 +01:00
bool Usr_ICanEditOtherUsr (const struct UsrData *UsrDat);
2017-01-27 01:02:52 +01:00
2016-06-16 18:05:23 +02:00
unsigned Usr_GetNumCrssOfUsr (long UsrCod);
unsigned Usr_GetNumCrssOfUsrNotAccepted (long UsrCod);
2015-03-14 17:39:04 +01:00
unsigned Usr_GetNumCrssOfUsrWithARole (long UsrCod,Rol_Role_t Role);
2016-06-20 09:43:27 +02:00
unsigned Usr_GetNumCrssOfUsrWithARoleNotAccepted (long UsrCod,Rol_Role_t Role);
2015-03-19 19:10:43 +01:00
unsigned Usr_GetNumUsrsInCrssOfAUsr (long UsrCod,Rol_Role_t UsrRole,
Rol_Role_t OthersRole);
2016-12-09 13:59:33 +01:00
bool Usr_CheckIfICanViewRecordStd (const struct UsrData *UsrDat);
2016-12-13 13:32:19 +01:00
bool Usr_CheckIfICanViewRecordTch (struct UsrData *UsrDat);
bool Usr_CheckIfICanViewUsrAgenda (struct UsrData *UsrDat);
bool Usr_CheckIfUsrSharesAnyOfMyCrs (struct UsrData *UsrDat);
2015-03-06 14:11:11 +01:00
bool Usr_CheckIfUsrSharesAnyOfMyCrsWithDifferentRole (long UsrCod);
2016-10-27 01:30:14 +02:00
2016-10-28 10:03:37 +02:00
void Usr_GetMyCountrs (void);
void Usr_GetMyInstits (void);
2014-12-01 23:55:08 +01:00
void Usr_GetMyCentres (void);
void Usr_GetMyDegrees (void);
void Usr_GetMyCourses (void);
2016-10-28 10:03:37 +02:00
void Usr_FreeMyCountrs (void);
void Usr_FreeMyInstits (void);
void Usr_FreeMyCentres (void);
void Usr_FreeMyDegrees (void);
2016-09-22 01:28:31 +02:00
void Usr_FreeMyCourses (void);
2016-10-27 01:30:14 +02:00
2017-01-27 01:02:52 +01:00
bool Usr_CheckIfUsrBelongsToIns (long UsrCod,long InsCod);
bool Usr_CheckIfUsrBelongsToCtr (long UsrCod,long CtrCod);
bool Usr_CheckIfUsrBelongsToDeg (long UsrCod,long DegCod);
bool Usr_CheckIfUsrBelongsToCrs (long UsrCod,long CrsCod,
2015-09-17 11:21:49 +02:00
bool CountOnlyAcceptedCourses);
2016-10-27 01:30:14 +02:00
bool Usr_CheckIfIBelongToCty (long CtyCod);
2014-12-01 23:55:08 +01:00
bool Usr_CheckIfIBelongToIns (long InsCod);
bool Usr_CheckIfIBelongToCtr (long CtrCod);
bool Usr_CheckIfIBelongToDeg (long DegCod);
bool Usr_CheckIfIBelongToCrs (long CrsCod);
2017-05-18 20:40:57 +02:00
bool Usr_CheckIfIBelongToCurrentCrs (void);
2016-06-16 18:05:23 +02:00
2014-12-29 00:54:56 +01:00
unsigned Usr_GetCtysFromUsr (long UsrCod,MYSQL_RES **mysql_res);
unsigned long Usr_GetInssFromUsr (long UsrCod,long CtyCod,MYSQL_RES **mysql_res);
2014-12-01 23:55:08 +01:00
unsigned long Usr_GetCtrsFromUsr (long UsrCod,long InsCod,MYSQL_RES **mysql_res);
unsigned long Usr_GetDegsFromUsr (long UsrCod,long CtrCod,MYSQL_RES **mysql_res);
unsigned long Usr_GetCrssFromUsr (long UsrCod,long DegCod,MYSQL_RES **mysql_res);
2017-03-13 20:32:03 +01:00
bool Usr_ChkIfEncryptedUsrCodExists (const char EncryptedUsrCod[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64]);
2014-12-01 23:55:08 +01:00
2016-03-01 03:16:29 +01:00
void Usr_WriteLandingPage (void);
void Usr_WriteFormLogout (void);
2014-12-01 23:55:08 +01:00
void Usr_Logout (void);
2016-02-29 16:22:11 +01:00
void Usr_PutLinkToLogin (void);
2016-12-04 03:50:25 +01:00
void Usr_WriteFormLogin (Act_Action_t NextAction,void (*FuncParams) ());
2014-12-01 23:55:08 +01:00
void Usr_WelcomeUsr (void);
2016-05-01 01:52:35 +02:00
void Usr_CreateBirthdayStrDB (const struct UsrData *UsrDat,
2017-01-15 22:58:26 +01:00
char BirthdayStrDB[Usr_BIRTHDAY_STR_DB_LENGTH + 1]);
2016-05-01 01:52:35 +02:00
2014-12-01 23:55:08 +01:00
void Usr_PutFormLogIn (void);
void Usr_WriteLoggedUsrHead (void);
void Usr_PutFormLogOut (void);
void Usr_GetParamUsrIdLogin (void);
2014-12-12 18:50:36 +01:00
unsigned Usr_GetParamOtherUsrIDNickOrEMailAndGetUsrCods (struct ListUsrCods *ListUsrCods);
2015-04-02 18:39:49 +02:00
2017-02-17 06:32:57 +01:00
void Usr_PutParamMyUsrCodEncrypted (void);
2015-04-02 18:39:49 +02:00
void Usr_PutParamOtherUsrCodEncrypted (void);
2017-03-07 01:56:41 +01:00
void Usr_PutParamUsrCodEncrypted (const char EncryptedUsrCod[Cry_BYTES_ENCRYPTED_STR_SHA256_BASE64 + 1]);
2016-01-25 14:40:57 +01:00
void Usr_GetParamOtherUsrCodEncrypted (struct UsrData *UsrDat);
void Usr_GetParamOtherUsrCodEncryptedAndGetListIDs (void);
2014-12-01 23:55:08 +01:00
bool Usr_GetParamOtherUsrCodEncryptedAndGetUsrData (void);
void Usr_ChkUsrAndGetUsrData (void);
2015-04-02 13:38:05 +02:00
void Usr_ShowFormsLogoutAndRole (void);
2014-12-01 23:55:08 +01:00
bool Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (struct UsrData *UsrDat);
void Usr_UpdateMyLastData (void);
void Usr_InsertMyLastCrsTabAndTime (void);
2016-06-15 20:04:15 +02:00
void Usr_WriteRowUsrMainData (unsigned NumUsr,struct UsrData *UsrDat,
2016-04-23 13:23:09 +02:00
bool PutCheckboxToSelectUsr);
2014-12-01 23:55:08 +01:00
unsigned Usr_GetNumUsrsInCrs (Rol_Role_t Role,long CrsCod);
unsigned Usr_GetNumUsrsInCrssOfDeg (Rol_Role_t Role,long DegCod);
unsigned Usr_GetNumUsrsInCrssOfCtr (Rol_Role_t Role,long CtrCod);
unsigned Usr_GetNumUsrsInCrssOfIns (Rol_Role_t Role,long InsCod);
unsigned Usr_GetNumUsrsInCrssOfCty (Rol_Role_t Role,long CtyCod);
long Usr_GetRamdomStdFromCrs (long CrsCod);
long Usr_GetRamdomStdFromGrp (long GrpCod);
unsigned Usr_GetNumTchsCurrentInsInDepartment (long DptCod);
2015-12-09 22:05:21 +01:00
unsigned Usr_GetNumUsrsWhoClaimToBelongToCty (long CtyCod);
2015-12-09 19:51:17 +01:00
unsigned Usr_GetNumUsrsWhoClaimToBelongToIns (long InsCod);
2015-12-09 22:05:21 +01:00
unsigned Usr_GetNumUsrsWhoClaimToBelongToCtr (long CtrCod);
2014-12-01 23:55:08 +01:00
unsigned Usr_GetNumberOfTeachersInCentre (long CtrCod);
2016-06-23 13:10:43 +02:00
void Usr_GetListUsrs (Rol_Role_t Role,Sco_Scope_t Scope);
2016-06-23 11:31:51 +02:00
2016-06-29 18:27:49 +02:00
void Usr_SearchListUsrs (Rol_Role_t Role);
2017-03-13 20:32:03 +01:00
void Usr_CreateTmpTableAndSearchCandidateUsrs (const char SearchQuery[Sch_MAX_BYTES_SEARCH_QUERY + 1]);
2016-06-29 18:27:49 +02:00
void Usr_DropTmpTableWithCandidateUsrs (void);
2014-12-01 23:55:08 +01:00
void Usr_GetUnorderedStdsCodesInDeg (long DegCod);
2016-07-25 20:55:25 +02:00
void Usr_CopyBasicUsrDataFromList (struct UsrData *UsrDat,const struct UsrInList *UsrInList);
2016-06-23 13:10:43 +02:00
void Usr_FreeUsrsList (Rol_Role_t Role);
2016-07-25 20:55:25 +02:00
2016-07-04 14:03:04 +02:00
bool Usr_GetIfShowBigList (unsigned NumUsrs,const char *OnSubmit);
2016-12-27 22:48:49 +01:00
2014-12-01 23:55:08 +01:00
void Usr_PutHiddenParUsrCodAll (Act_Action_t NextAction,const char *ListUsrCods);
2016-07-04 14:03:04 +02:00
void Usr_GetListsSelectedUsrsCods (void);
2014-12-01 23:55:08 +01:00
bool Usr_GetListMsgRecipientsWrittenExplicitelyBySender (bool WriteErrorMsgs);
2015-09-30 23:10:15 +02:00
bool Usr_FindUsrCodInListOfSelectedUsrs (const char *EncryptedUsrCodToFind);
unsigned Usr_CountNumUsrsInListOfSelectedUsrs (void);
void Usr_AllocateListSelectedUsrCodAll (void);
void Usr_AllocateListSelectedUsrCodStd (void);
void Usr_AllocateListSelectedUsrCodTch (void);
2016-07-04 14:03:04 +02:00
void Usr_FreeListsSelectedUsrsCods (void);
2014-12-01 23:55:08 +01:00
void Usr_FreeListOtherRecipients (void);
void Usr_ShowFormsToSelectUsrListType (Act_Action_t NextAction);
2016-12-26 16:58:49 +01:00
void Usr_PutCheckboxToSelectAllUsers (Rol_Role_t Role);
2014-12-01 23:55:08 +01:00
unsigned Usr_GetColumnsForSelectUsrs (void);
2016-06-16 14:34:17 +02:00
void Usr_SetUsrDatMainFieldNames (void);
2016-06-16 18:32:12 +02:00
void Usr_WriteHeaderFieldsUsrDat (bool PutCheckBoxToSelectUsr);
2016-06-16 14:34:17 +02:00
2014-12-01 23:55:08 +01:00
void Usr_PutExtraParamsUsrList (Act_Action_t NextAction);
void Usr_ListUsersToSelect (Rol_Role_t Role);
void Usr_ListAllDataGsts (void);
void Usr_ListAllDataStds (void);
void Usr_ListUsrsForSelection (Rol_Role_t Role);
void Usr_ListAllDataTchs (void);
2017-03-13 20:32:03 +01:00
unsigned Usr_ListUsrsFound (Rol_Role_t Role,const char SearchQuery[Sch_MAX_BYTES_SEARCH_QUERY]);
2014-12-01 23:55:08 +01:00
void Usr_ListDataAdms (void);
2017-02-01 11:23:48 +01:00
void Usr_PutParamsPrefsAboutUsrList (void);
2014-12-01 23:55:08 +01:00
void Usr_GetAndUpdatePrefsAboutUsrList (void);
void Usr_PutParamUsrListType (Usr_ShowUsrsType_t ListType);
void Usr_GetAndUpdateColsClassPhoto (void);
void Usr_PutParamColsClassPhoto (void);
void Usr_PutParamListWithPhotos (void);
void Usr_GetMyPrefAboutListWithPhotosFromDB (void);
void Usr_SeeGuests (void);
void Usr_SeeStudents (void);
void Usr_SeeTeachers (void);
void Usr_SeeGstClassPhotoPrn (void);
void Usr_SeeStdClassPhotoPrn (void);
void Usr_SeeTchClassPhotoPrn (void);
void Usr_PutSelectorNumColsClassPhoto (void);
2014-12-12 18:50:36 +01:00
void Usr_ConstructPathUsr (long UsrCod,char *PathUsr);
2014-12-01 23:55:08 +01:00
bool Usr_ChkIfUsrCodExists (long UsrCod);
void Usr_ShowWarningNoUsersFound (Rol_Role_t Role);
void Usr_GetAndShowNumUsrsInPlatform (Rol_Role_t Role);
2015-03-29 01:06:00 +01:00
bool Usr_CheckIfUsrBanned (long UsrCod);
void Usr_RemoveUsrFromUsrBanned (long UsrCod);
2016-12-07 00:41:36 +01:00
void Usr_PrintUsrQRCode (void);
2017-03-04 01:59:27 +01:00
void Usr_WriteAuthor1Line (long UsrCod,bool Hidden);
2014-12-01 23:55:08 +01:00
#endif