swad-core/swad_scope.c

326 lines
10 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-2023 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_System;
extern const char *Txt_Country;
extern const char *Txt_Institution;
extern const char *Txt_Center;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Degree;
extern const char *Txt_Course;
HieLvl_Level_t Level;
2019-11-06 08:59:15 +01:00
unsigned ScopeUnsigned;
2014-12-01 23:55:08 +01:00
bool WriteScope;
static const char **TxtScope[HieLvl_NUM_LEVELS] =
{
[HieLvl_SYS] = &Txt_System,
[HieLvl_CTY] = &Txt_Country,
[HieLvl_INS] = &Txt_Institution,
[HieLvl_CTR] = &Txt_Center,
[HieLvl_DEG] = &Txt_Degree,
[HieLvl_CRS] = &Txt_Course,
};
2014-12-01 23:55:08 +01:00
HTM_SELECT_Begin (SubmitOnChange,NULL,
"id=\"%s\" name=\"%s\" class=\"INPUT_%s\"",
ParName,ParName,The_GetSuffix ());
2014-12-01 23:55:08 +01:00
for (Level = (HieLvl_Level_t) 1;
Level <= (HieLvl_Level_t) (HieLvl_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 HieLvl_SYS:
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case HieLvl_CTY:
if (Gbl.Hierarchy.Node[HieLvl_CTY].Cod > 0)
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case HieLvl_INS:
if (Gbl.Hierarchy.Node[HieLvl_INS].Cod > 0)
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case HieLvl_CTR:
if (Gbl.Hierarchy.Node[HieLvl_CTR].Cod > 0)
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case HieLvl_DEG:
if (Gbl.Hierarchy.Node[HieLvl_DEG].Cod > 0)
WriteScope = true;
2014-12-01 23:55:08 +01:00
break;
case HieLvl_CRS:
if (Gbl.Hierarchy.Level == HieLvl_CRS)
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",
*TxtScope[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",*((HieLvl_Level_t *) Level));
2019-04-11 09:55:35 +02:00
}
void Sco_PutParScope (const char *ParName,HieLvl_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)
2014-12-01 23:55:08 +01:00
{
2017-01-29 12:42:19 +01:00
/***** Get parameter with scope *****/
Gbl.Scope.Current = (HieLvl_Level_t)
Par_GetParUnsignedLong (ParName,
0,
HieLvl_NUM_LEVELS - 1,
(unsigned long) HieLvl_UNK);
2016-11-27 14:10:31 +01:00
/***** Adjust scope avoiding impossible or forbidden scopes *****/
Sco_AdjustScope ();
}
/*****************************************************************************/
/*********** Adjust scope avoiding impossible or forbidden scopes ************/
/*****************************************************************************/
void Sco_AdjustScope (void)
{
/***** Is scope is unknow, use default scope *****/
if (Gbl.Scope.Current == HieLvl_UNK)
2016-06-24 20:34:58 +02:00
Gbl.Scope.Current = Gbl.Scope.Default;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
/***** Avoid impossible scopes *****/
if (Gbl.Scope.Current == HieLvl_CRS && Gbl.Hierarchy.Node[HieLvl_CRS].Cod <= 0)
Gbl.Scope.Current = HieLvl_DEG;
2014-12-01 23:55:08 +01:00
if (Gbl.Scope.Current == HieLvl_DEG && Gbl.Hierarchy.Node[HieLvl_DEG].Cod <= 0)
Gbl.Scope.Current = HieLvl_CTR;
2014-12-01 23:55:08 +01:00
if (Gbl.Scope.Current == HieLvl_CTR && Gbl.Hierarchy.Node[HieLvl_CTR].Cod <= 0)
Gbl.Scope.Current = HieLvl_INS;
2014-12-01 23:55:08 +01:00
if (Gbl.Scope.Current == HieLvl_INS && Gbl.Hierarchy.Node[HieLvl_INS].Cod <= 0)
Gbl.Scope.Current = HieLvl_CTY;
2014-12-01 23:55:08 +01:00
if (Gbl.Scope.Current == HieLvl_CTY && Gbl.Hierarchy.Node[HieLvl_CTY].Cod <= 0)
Gbl.Scope.Current = HieLvl_SYS;
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 = HieLvl_UNK;
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Set allowed scopes when listing guests *******************/
/*****************************************************************************/
void Sco_SetScopesForListingGuests (void)
{
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 << HieLvl_SYS;
Gbl.Scope.Default = HieLvl_SYS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
Gbl.Scope.Default = HieLvl_UNK;
2014-12-01 23:55:08 +01:00
break;
}
}
/*****************************************************************************/
/**************** Set allowed scopes when listing students *******************/
/*****************************************************************************/
void Sco_SetScopesForListingStudents (void)
{
Gbl.Scope.Default = HieLvl_CRS;
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 << HieLvl_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 << HieLvl_DEG |
1 << HieLvl_CRS;
2015-09-20 19:20:05 +02:00
break;
case Rol_CTR_ADM:
Gbl.Scope.Allowed = 1 << HieLvl_CTR |
1 << HieLvl_DEG |
1 << HieLvl_CRS;
2015-09-20 19:20:05 +02:00
break;
case Rol_INS_ADM:
Gbl.Scope.Allowed = 1 << HieLvl_INS |
1 << HieLvl_CTR |
1 << HieLvl_DEG |
1 << HieLvl_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 << HieLvl_SYS |
1 << HieLvl_CTY |
1 << HieLvl_INS |
1 << HieLvl_CTR |
1 << HieLvl_DEG |
1 << HieLvl_CRS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
Gbl.Scope.Default = HieLvl_UNK;
2014-12-01 23:55:08 +01:00
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
/*****************************************************************************/
HieLvl_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 < HieLvl_NUM_LEVELS)
return (HieLvl_Level_t) UnsignedNum;
2015-11-23 00:44:39 +01:00
return HieLvl_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
/*****************************************************************************/
HieLvl_Level_t Hie_GetLevelFromDBStr (const char *LevelDBStr)
2016-10-27 15:06:11 +02:00
{
HieLvl_Level_t Level;
2016-10-27 15:06:11 +02:00
for (Level = (HieLvl_Level_t) 0;
Level <= (HieLvl_Level_t) (HieLvl_NUM_LEVELS - 1);
Level++)
if (!strcmp (Hie_GetDBStrFromLevel (Level),LevelDBStr))
return Level;
2016-10-27 15:06:11 +02:00
return HieLvl_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 (HieLvl_Level_t Level)
2019-04-01 23:15:17 +02:00
{
static const char *Sco_ScopeDB[HieLvl_NUM_LEVELS] =
2019-04-01 23:15:17 +02:00
{
[HieLvl_UNK] = "Unk",
[HieLvl_SYS] = "Sys",
[HieLvl_CTY] = "Cty",
[HieLvl_INS] = "Ins",
[HieLvl_CTR] = "Ctr",
[HieLvl_DEG] = "Deg",
[HieLvl_CRS] = "Crs",
2019-04-01 23:15:17 +02:00
};
if (Level >= HieLvl_NUM_LEVELS)
Level = HieLvl_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 HieLvl_SYS:
case HieLvl_CTY:
case HieLvl_INS:
case HieLvl_CTR:
case HieLvl_DEG:
case HieLvl_CRS:
return Gbl.Hierarchy.Node[Gbl.Scope.Current].Cod;
default:
Err_WrongHierarchyLevelExit ();
return -1L; // Not reached
}
}