swad-core/swad_role.h

67 lines
2.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.
Copyright (C) 1999-2014 Antonio Ca<EFBFBD>as Vargas
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
*/
#define Rol_NUM_ROLES 9
typedef enum
{
Rol_ROLE_UNKNOWN = 0, // User not logged in
Rol_ROLE_GUEST = 1, // User not belonging to any course
Rol_ROLE_VISITOR = 2, // Student or teacher in other courses...
// ...but not belonging to the current course
Rol_ROLE_STUDENT = 3, // Student in current course
Rol_ROLE_TEACHER = 4, // Teacher in current course
Rol_ROLE_DEG_ADMIN = 5, // Degree administrator
Rol_ROLE_CTR_ADMIN = 6, // Centre administrator
Rol_ROLE_INS_ADMIN = 7, // Institution administrator
Rol_ROLE_SUPERUSER = 8, // Superuser
} Rol_Role_t;
/*****************************************************************************/
/****************************** Public prototypes ****************************/
/*****************************************************************************/
#endif