swad-core/swad_user.h

359 lines
13 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.
2016-01-01 20:19:43 +01:00
Copyright (C) 1999-2016 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"
2015-03-06 22:12:10 +01:00
#include "swad_privacy.h"
2014-12-01 23:55:08 +01:00
#include "swad_role.h"
#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
2015-04-14 19:38:00 +02:00
#define Usr_MAX_BYTES_USR_EMAIL 127
2014-12-01 23:55:08 +01:00
#define Usr_MAX_LENGTH_USR_LOGIN 127 // @nick, e-mail or ID
#define Usr_MAX_BYTES_USR_LOGIN 127
#define Usr_MAX_LENGTH_USR_NAME_OR_SURNAME 32
#define Usr_MAX_BYTES_NAME 32
#define Usr_MAX_BYTES_NAME_SPEC_CHAR (Usr_MAX_BYTES_NAME*Str_MAX_LENGTH_SPEC_CHAR_HTML)
2016-05-01 01:52:35 +02:00
#define Usr_BIRTHDAY_STR_DB_LENGTH (1+4+1+2+1+2+1) // "'%04u-%02u-%02u'"
2014-12-01 23:55:08 +01:00
#define Usr_MAX_LENGTH_PHONE 16
#define Usr_MAX_BYTES_PHONE 16
#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
#define Usr_MAX_BYTES_LIST_ENCRYPTED_USR_CODS (Cry_LENGTH_ENCRYPTED_STR_SHA256_BASE64*Cfg_MAX_USRS_IN_LIST)
2016-06-15 20:35:49 +02:00
#define Usr_NUM_MAIN_FIELDS_DATA_USR 9
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
#define Usr_NUM_USR_LIST_TYPES 2
typedef enum
{
Usr_CLASS_PHOTO,
Usr_LIST,
} Usr_ShowUsrsType_t;
#define Usr_SHOW_USRS_TYPE_DEFAULT Usr_CLASS_PHOTO
// Related with user's data
struct UsrData
{
long UsrCod;
char EncryptedUsrCod [Cry_LENGTH_ENCRYPTED_STR_SHA256_BASE64+1];
char UsrIDNickOrEmail[Usr_MAX_BYTES_USR_LOGIN+1]; // String to store the ID, nickname or e-mail
struct
{
struct ListIDs *List;
unsigned Num;
} IDs;
char Nickname [Nck_MAX_LENGTH_NICKNAME_WITHOUT_ARROBA+1];
char Password [Cry_LENGTH_ENCRYPTED_STR_SHA512_BASE64+1];
Rol_Role_t RoleInCurrentCrsDB;
unsigned Roles;
bool Accepted; // User has accepted joining to current course?
char Surname1 [Usr_MAX_BYTES_NAME+1];
char Surname2 [Usr_MAX_BYTES_NAME+1];
char FirstName [Usr_MAX_BYTES_NAME+1];
char FullName [(Usr_MAX_BYTES_NAME+1)*3];
Usr_Sex_t Sex;
2015-04-14 19:38:00 +02:00
char Email [Usr_MAX_BYTES_USR_EMAIL+1];
2014-12-01 23:55:08 +01:00
bool EmailConfirmed;
char Photo [Cry_LENGTH_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
char OriginPlace [Cns_MAX_BYTES_STRING+1];
struct Date Birthday;
char StrBirthday [Cns_MAX_LENGTH_DATE +1];
char LocalAddress [Cns_MAX_BYTES_STRING+1];
char LocalPhone [Usr_MAX_BYTES_PHONE +1];
char FamilyAddress [Cns_MAX_BYTES_STRING+1];
char FamilyPhone [Usr_MAX_BYTES_PHONE +1];
char *Comments;
long InsCtyCod; // Country of the institution
long InsCod; // Institution
struct
{
long CtrCod; // Centre
long DptCod; // Department
char Office [Cns_MAX_BYTES_STRING+1];
char OfficePhone [Usr_MAX_BYTES_PHONE +1];
} Tch;
struct
{
Txt_Language_t Language;
2015-11-21 20:23:28 +01:00
unsigned FirstDayOfWeek;
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;
Act_Tab_t LastTab;
long LastAccNotif;
};
struct UsrInList
{
long UsrCod;
Usr_Sex_t Sex;
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
};
struct ListUsers
{
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-01-20 21:18:38 +01:00
void Usr_GetEncryptedUsrCodFromUsrCod (struct UsrData *UsrDat);
2014-12-01 23:55:08 +01:00
void Usr_GetUsrDataFromUsrCod (struct UsrData *UsrDat);
void Usr_BuildFullName (struct UsrData *UsrDat);
2015-03-17 14:51:58 +01:00
void Usr_RestrictLengthAndWriteName (const struct UsrData *UsrDat,unsigned MaxChars);
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);
2015-03-14 17:39:04 +01:00
unsigned Usr_GetNumCrssOfUsrWithARole (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);
2014-12-01 23:55:08 +01:00
bool Usr_CheckIfUsrSharesAnyOfMyCrs (long UsrCod);
2015-03-06 14:11:11 +01:00
bool Usr_CheckIfUsrSharesAnyOfMyCrsWithDifferentRole (long UsrCod);
2014-12-01 23:55:08 +01:00
void Usr_GetMyInstitutions (void);
void Usr_GetMyCentres (void);
void Usr_GetMyDegrees (void);
void Usr_GetMyCourses (void);
2015-09-17 11:21:49 +02:00
bool Usr_CheckIfUsrBelongsToIns (long UsrCod,
long InsCod,
bool CountOnlyAcceptedCourses);
bool Usr_CheckIfUsrBelongsToCtr (long UsrCod,
long CtrCod,
bool CountOnlyAcceptedCourses);
bool Usr_CheckIfUsrBelongsToDeg (long UsrCod,
long DegCod,
bool CountOnlyAcceptedCourses);
bool Usr_CheckIfUsrBelongsToCrs (long UsrCod,
long CrsCod,
bool CountOnlyAcceptedCourses);
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);
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);
2014-12-12 18:50:36 +01:00
bool Usr_ChkIfEncryptedUsrCodExists (const char *EncryptedUsrCod);
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);
2014-12-01 23:55:08 +01:00
void Usr_WriteFormLogin (void);
void Usr_WelcomeUsr (void);
2016-05-01 01:52:35 +02:00
void Usr_CreateBirthdayStrDB (const struct UsrData *UsrDat,
char BirthdayStrDB[Usr_BIRTHDAY_STR_DB_LENGTH+1]);
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
void Usr_PutParamOtherUsrCodEncrypted (void);
void Usr_PutParamUsrCodEncrypted (const char EncryptedUsrCod[Cry_LENGTH_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);
void Usr_GetUsrsLst (Rol_Role_t Role,Sco_Scope_t ListUsrsRange,const char *TchQuery,bool Search);
void Usr_GetUnorderedStdsCodesInDeg (long DegCod);
void Usr_FreeUsrsList (struct ListUsers *LstUsrs);
bool Usr_GetIfShowBigList (unsigned NumUsrs);
void Usr_PutHiddenParUsrCodAll (Act_Action_t NextAction,const char *ListUsrCods);
2015-09-30 23:10:15 +02:00
void Usr_GetListsSelectedUsrs (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);
void Usr_FreeListsSelectedUsrCods (void);
2014-12-01 23:55:08 +01:00
void Usr_FreeListOtherRecipients (void);
void Usr_ShowFormsToSelectUsrListType (Act_Action_t NextAction);
void Usr_PutCheckboxToSelectAllTheUsers (Rol_Role_t Role);
unsigned Usr_GetColumnsForSelectUsrs (void);
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);
unsigned Usr_ListUsrsFound (Rol_Role_t Role,const char *UsrQuery);
void Usr_ListDataAdms (void);
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-06-15 00:34:00 +02:00
void Usr_ReportUsrAsPossibleDuplicate (void);
2016-06-15 13:20:07 +02:00
void Usr_PutLinkToListDupUsrs (void);
void Usr_ListDuplicateUsrs (void);
2016-06-15 14:52:43 +02:00
void Usr_RemoveUsrFromDuplicated (long UsrCod);
2016-06-15 00:34:00 +02:00
2014-12-01 23:55:08 +01:00
#endif