swad-core/swad_scope.c

290 lines
8.9 KiB
C
Raw Normal View History

// swad_scope.c: scope (platform, center, degree, course...)
2014-12-01 23:55:08 +01:00
/*
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.
Copyright (C) 1999-2024 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 3 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 *********************************/
/*****************************************************************************/
2015-11-23 00:44:39 +01:00
#include <string.h> // For string functions
2014-12-01 23:55:08 +01:00
#include "swad_config.h"
#include "swad_error.h"
2014-12-01 23:55:08 +01:00
#include "swad_global.h"
2019-11-05 08:46:38 +01:00
#include "swad_HTML.h"
2014-12-01 23:55:08 +01:00
#include "swad_parameter.h"
#include "swad_scope.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/** Put a selector to choice between ranges when getting users for listing ***/
/*****************************************************************************/
void Sco_PutSelectorScope (const char *ParName,HTM_SubmitOnChange_t SubmitOnChange)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_HIERARCHY_SINGUL_Abc[Hie_NUM_LEVELS];
Hie_Level_t Level;
2019-11-06 08:59:15 +01:00
unsigned ScopeUnsigned;
2014-12-01 23:55:08 +01:00
bool WriteScope;
HTM_SELECT_Begin (SubmitOnChange,NULL,
"id=\"%s\" name=\"%s\""
" class=\"Frm_C2_INPUT INPUT_%s\"",
ParName,ParName,The_GetSuffix ());
2014-12-01 23:55:08 +01:00
for (Level = (Hie_Level_t) 1;
Level <= (Hie_Level_t) (Hie_NUM_LEVELS - 1);
Level++)
if ((Gbl.Scope.Allowed & (1 << Level)))
2014-12-01 23:55:08 +01:00
{
/* Don't put forbidden options in selectable list */
WriteScope = false;
switch (Level)
2014-12-01 23:55:08 +01:00
{
case Hie_SYS:
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case Hie_CTY:
case Hie_INS:
case Hie_CTR:
case Hie_DEG:
case Hie_CRS:
if (Gbl.Hierarchy.Node[Level].HieCod > 0)
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
default:
break;
}
if (WriteScope)
{
/***** Write allowed option *****/
ScopeUnsigned = (unsigned) Level;
HTM_OPTION (HTM_Type_UNSIGNED,&ScopeUnsigned,
Level == Gbl.Scope.Current ? HTM_OPTION_SELECTED :
HTM_OPTION_UNSELECTED,
HTM_OPTION_ENABLED,
"%s: %s",
Txt_HIERARCHY_SINGUL_Abc[Level],
Gbl.Hierarchy.Node[Level].ShrtName);
}
2014-12-01 23:55:08 +01:00
}
2019-11-05 08:46:38 +01:00
HTM_SELECT_End ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
2016-11-27 14:10:31 +01:00
/********************** Put hidden parameter scope ***************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
void Sco_PutParCurrentScope (void *Level)
2019-04-11 09:55:35 +02:00
{
if (Level)
Sco_PutParScope ("ScopeUsr",*((Hie_Level_t *) Level));
2019-04-11 09:55:35 +02:00
}
void Sco_PutParScope (const char *ParName,Hie_Level_t Level)
2014-12-01 23:55:08 +01:00
{
Par_PutParUnsigned (NULL,ParName,(unsigned) Level);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
2016-11-27 14:10:31 +01:00
/*************************** Get parameter scope *****************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
void Sco_GetScope (const char *ParName,Hie_Level_t DefaultScope)
2014-12-01 23:55:08 +01:00
{
2017-01-29 12:42:19 +01:00
/***** Get parameter with scope *****/
Gbl.Scope.Current = (Hie_Level_t)
Par_GetParUnsignedLong (ParName,
0,
Hie_NUM_LEVELS - 1,
(unsigned long) Hie_UNK);
2016-11-27 14:10:31 +01:00
/***** Adjust scope avoiding impossible or forbidden scopes *****/
Sco_AdjustScope (DefaultScope);
2016-11-27 14:10:31 +01:00
}
/*****************************************************************************/
/*********** Adjust scope avoiding impossible or forbidden scopes ************/
/*****************************************************************************/
void Sco_AdjustScope (Hie_Level_t DefaultScope)
2016-11-27 14:10:31 +01:00
{
Hie_Level_t Level;
2016-11-27 14:10:31 +01:00
/***** Is scope is unknow, use default scope *****/
if (Gbl.Scope.Current == Hie_UNK)
Gbl.Scope.Current = DefaultScope;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
/***** Avoid impossible scopes *****/
for (Level = Hie_CRS;
Level >= Hie_CTY;
Level--)
if (Gbl.Scope.Current == Level && Gbl.Hierarchy.Node[Level].HieCod <= 0)
Gbl.Scope.Current = Level - 1; // Go up to parent level
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
/***** Avoid forbidden scopes *****/
if ((Gbl.Scope.Allowed & (1 << Gbl.Scope.Current)) == 0)
Gbl.Scope.Current = Hie_UNK;
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Set allowed scopes when listing guests *******************/
/*****************************************************************************/
void Sco_SetAllowedScopesForListingGuests (void)
2014-12-01 23:55:08 +01:00
{
2017-06-04 18:18:54 +02:00
switch (Gbl.Usrs.Me.Role.Logged)
2014-12-01 23:55:08 +01:00
{
2015-04-07 21:44:24 +02:00
case Rol_SYS_ADM:
Gbl.Scope.Allowed = 1 << Hie_SYS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
break;
}
}
/*****************************************************************************/
/**************** Set allowed scopes when listing students *******************/
/*****************************************************************************/
void Sco_SetAllowedScopesForListingStudents (void)
2014-12-01 23:55:08 +01:00
{
2017-06-04 18:18:54 +02:00
switch (Gbl.Usrs.Me.Role.Logged)
2014-12-01 23:55:08 +01:00
{
2017-05-18 19:13:41 +02:00
case Rol_STD:
2017-05-22 20:37:46 +02:00
case Rol_NET:
2017-05-18 19:13:41 +02:00
case Rol_TCH:
Gbl.Scope.Allowed = 1 << Hie_CRS;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_DEG_ADM:
Gbl.Scope.Allowed = 1 << Hie_DEG |
1 << Hie_CRS;
2015-09-20 19:20:05 +02:00
break;
case Rol_CTR_ADM:
Gbl.Scope.Allowed = 1 << Hie_CTR |
1 << Hie_DEG |
1 << Hie_CRS;
2015-09-20 19:20:05 +02:00
break;
case Rol_INS_ADM:
Gbl.Scope.Allowed = 1 << Hie_INS |
1 << Hie_CTR |
1 << Hie_DEG |
1 << Hie_CRS;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_SYS_ADM:
Gbl.Scope.Allowed = 1 << Hie_SYS |
1 << Hie_CTY |
1 << Hie_INS |
1 << Hie_CTR |
1 << Hie_DEG |
1 << Hie_CRS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
break;
}
}
2015-11-23 00:44:39 +01:00
/*****************************************************************************/
2016-10-27 15:06:11 +02:00
/*********************** Get scope from unsigned string **********************/
2015-11-23 00:44:39 +01:00
/*****************************************************************************/
Hie_Level_t Sco_GetScopeFromUnsignedStr (const char *UnsignedStr)
2015-11-23 00:44:39 +01:00
{
unsigned UnsignedNum;
if (sscanf (UnsignedStr,"%u",&UnsignedNum) == 1)
if (UnsignedNum < Hie_NUM_LEVELS)
return (Hie_Level_t) UnsignedNum;
2015-11-23 00:44:39 +01:00
return Hie_UNK;
2015-11-23 00:44:39 +01:00
}
2016-10-27 15:06:11 +02:00
/*****************************************************************************/
/***************** Get hierarchy level from database string ******************/
2016-10-27 15:06:11 +02:00
/*****************************************************************************/
Hie_Level_t Hie_GetLevelFromDBStr (const char *LevelDBStr)
2016-10-27 15:06:11 +02:00
{
Hie_Level_t Level;
2016-10-27 15:06:11 +02:00
for (Level = (Hie_Level_t) 0;
Level <= (Hie_Level_t) (Hie_NUM_LEVELS - 1);
Level++)
if (!strcmp (Hie_GetDBStrFromLevel (Level),LevelDBStr))
return Level;
2016-10-27 15:06:11 +02:00
return Hie_UNK;
2016-10-27 15:06:11 +02:00
}
2019-04-01 23:15:17 +02:00
/*****************************************************************************/
/****************** Get database string from hierarchy level *****************/
2019-04-01 23:15:17 +02:00
/*****************************************************************************/
const char *Hie_GetDBStrFromLevel (Hie_Level_t Level)
2019-04-01 23:15:17 +02:00
{
static const char *Sco_ScopeDB[Hie_NUM_LEVELS] =
2019-04-01 23:15:17 +02:00
{
[Hie_UNK] = "Unk",
[Hie_SYS] = "Sys",
[Hie_CTY] = "Cty",
[Hie_INS] = "Ins",
[Hie_CTR] = "Ctr",
[Hie_DEG] = "Deg",
[Hie_CRS] = "Crs",
2019-04-01 23:15:17 +02:00
};
if (Level >= Hie_NUM_LEVELS)
Level = Hie_UNK;
2019-04-01 23:15:17 +02:00
return Sco_ScopeDB[Level];
2019-04-01 23:15:17 +02:00
}
/*****************************************************************************/
/************************** Get current hierarchy code ***********************/
/*****************************************************************************/
long Hie_GetCurrentCod (void)
{
switch (Gbl.Scope.Current)
{
case Hie_SYS:
case Hie_CTY:
case Hie_INS:
case Hie_CTR:
case Hie_DEG:
case Hie_CRS:
return Gbl.Hierarchy.Node[Gbl.Scope.Current].HieCod;
default:
Err_WrongHierarchyLevelExit ();
return -1L; // Not reached
}
}