swad-core/swad_role.h

92 lines
3.8 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_role.h: user's roles
#ifndef _SWAD_ROL
#define _SWAD_ROL
/*
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 **********************************/
/*****************************************************************************/
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************** Public types *******************************/
/*****************************************************************************/
// Related with user's roles
/*
Don't change these numbers!
They are used for users' permissions and for user's types in database
Only Rol_ROLE_STUDENT and Rol_ROLE_TEACHER are allowed
as user permanent roles in courses,
but a user may be logged temporarily as other roles
*/
2016-10-24 20:09:00 +02:00
// TODO: Teachers/students should be teachers/students only inside their courses
// Outside their courses a user (not logged as admin) should be Rol_VISITOR
// (with similar permissions as Rol_VISITOR but labeled as "User")
2014-12-01 23:55:08 +01:00
#define Rol_NUM_ROLES 9
typedef enum
{
2015-04-07 21:44:24 +02:00
Rol_UNKNOWN = 0, // User not logged in
Rol__GUEST_ = 1, // User not belonging to any course
Rol_VISITOR = 2, // Student or teacher in other courses...
// ...but not belonging to the current course
Rol_STUDENT = 3, // Student in current course
Rol_TEACHER = 4, // Teacher in current course
Rol_DEG_ADM = 5, // Degree administrator
Rol_CTR_ADM = 6, // Centre administrator
Rol_INS_ADM = 7, // Institution administrator
Rol_SYS_ADM = 8, // System administrator (superuser)
2014-12-01 23:55:08 +01:00
} Rol_Role_t;
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
2014-12-12 20:25:00 +01:00
unsigned Rol_GetNumAvailableRoles (void);
Rol_Role_t Rol_GetMaxRole (unsigned Roles);
Rol_Role_t Rol_GetMyMaxRoleInIns (long InsCod);
Rol_Role_t Rol_GetMyMaxRoleInCtr (long CtrCod);
Rol_Role_t Rol_GetMyMaxRoleInDeg (long DegCod);
Rol_Role_t Rol_GetMyRoleInCrs (long CrsCod);
Rol_Role_t Rol_GetRoleInCrs (long CrsCod,long UsrCod);
unsigned Rol_GetRolesInAllCrss (long UsrCod);
Rol_Role_t Rol_ConvertUnsignedStrToRole (const char *UnsignedStr);
unsigned Rol_ConvertUnsignedStrToRoles (const char *UnsignedStr);
2016-12-10 18:32:35 +01:00
void Rol_PutFormToChangeMyRole (void);
2014-12-12 20:25:00 +01:00
void Rol_ChangeMyRole (void);
2016-03-24 15:09:52 +01:00
void Rol_WriteSelectorRoles (unsigned RolesAllowed,unsigned RolesSelected,
2016-03-24 16:49:36 +01:00
bool Disabled,bool SendOnChange);
2016-03-24 15:09:52 +01:00
void Rol_PutHiddenParamRoles (unsigned Role);
2016-03-24 16:49:36 +01:00
unsigned Rol_GetSelectedRoles (void);
2014-12-12 20:25:00 +01:00
2014-12-12 22:39:55 +01:00
Rol_Role_t Rol_GetRequestedRole (long UsrCod);
2014-12-01 23:55:08 +01:00
#endif