swad-core/swad_scope.c

341 lines
11 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_scope.c: scope (platform, centre, degree, course...)
/*
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.
2017-01-13 01:51:23 +01:00
Copyright (C) 1999-2017 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_global.h"
#include "swad_parameter.h"
#include "swad_scope.h"
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
2016-10-27 15:06:11 +02:00
const char *Sco_ScopeDB[Sco_NUM_SCOPES] =
2015-02-01 16:08:58 +01:00
{
2016-10-27 15:06:11 +02:00
"Unk", // Sco_SCOPE_UNK
"Sys", // Sco_SCOPE_SYS
"Cty", // Sco_SCOPE_CTY
"Ins", // Sco_SCOPE_INS
"Ctr", // Sco_SCOPE_CTR
"Deg", // Sco_SCOPE_DEG
"Crs", // Sco_SCOPE_CRS
2015-02-01 16:08:58 +01:00
};
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Internal constants ****************************/
/*****************************************************************************/
/*****************************************************************************/
/****************************** Internal types *******************************/
/*****************************************************************************/
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/************************* Internal global variables *************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Internal prototypes ***************************/
/*****************************************************************************/
/*****************************************************************************/
/** Put a selector to choice between ranges when getting users for listing ***/
/*****************************************************************************/
2016-06-24 20:34:58 +02:00
void Sco_PutSelectorScope (const char *ParamName,bool SendOnChange)
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_Centre;
extern const char *Txt_Degree;
extern const char *Txt_Course;
Sco_Scope_t Scope;
bool WriteScope;
2016-12-20 02:18:50 +01:00
fprintf (Gbl.F.Out,"<select id=\"%s\" name=\"%s\"",ParamName,ParamName);
2014-12-01 23:55:08 +01:00
if (SendOnChange)
2015-10-22 14:49:48 +02:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();\"",
2016-01-14 10:31:09 +01:00
Gbl.Form.Id);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,">");
for (Scope = (Sco_Scope_t) 0;
Scope < Sco_NUM_SCOPES;
Scope++)
if ((Gbl.Scope.Allowed & (1 << Scope)))
{
/* Don't put forbidden options in selectable list */
WriteScope = false;
switch (Scope)
{
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_SYS:
2014-12-01 23:55:08 +01:00
WriteScope = true;
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CTY:
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentCty.Cty.CtyCod > 0)
WriteScope = true;
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_INS:
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentIns.Ins.InsCod > 0)
WriteScope = true;
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CTR:
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentCtr.Ctr.CtrCod > 0)
WriteScope = true;
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_DEG:
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentDeg.Deg.DegCod > 0)
WriteScope = true;
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CRS:
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentCrs.Crs.CrsCod > 0)
WriteScope = true;
break;
default:
Lay_ShowErrorAndExit ("Wrong scope.");
break;
}
if (WriteScope)
{
/***** Write allowed option *****/
fprintf (Gbl.F.Out,"<option value=\"%u\"",(unsigned) Scope);
if (Gbl.Scope.Current == Scope)
fprintf (Gbl.F.Out," selected=\"selected\"");
fprintf (Gbl.F.Out,">");
switch (Scope)
{
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_SYS:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
2015-07-24 11:34:39 +02:00
Txt_System,Cfg_PLATFORM_SHORT_NAME);
2014-12-01 23:55:08 +01:00
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CTY:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
Txt_Country,
Gbl.CurrentCty.Cty.Name[Gbl.Prefs.Language]);
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_INS:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
Txt_Institution,
2016-10-28 10:03:37 +02:00
Gbl.CurrentIns.Ins.ShrtName);
2014-12-01 23:55:08 +01:00
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CTR:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
Txt_Centre,
2016-10-28 10:03:37 +02:00
Gbl.CurrentCtr.Ctr.ShrtName);
2014-12-01 23:55:08 +01:00
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_DEG:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
Txt_Degree,
2016-10-28 10:03:37 +02:00
Gbl.CurrentDeg.Deg.ShrtName);
2014-12-01 23:55:08 +01:00
break;
2015-02-01 20:17:24 +01:00
case Sco_SCOPE_CRS:
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"%s: %s",
Txt_Course,
2016-10-28 10:03:37 +02:00
Gbl.CurrentCrs.Crs.ShrtName);
2014-12-01 23:55:08 +01:00
break;
default:
Lay_ShowErrorAndExit ("Wrong scope.");
break;
}
fprintf (Gbl.F.Out,"</option>");
}
}
fprintf (Gbl.F.Out,"</select>");
}
/*****************************************************************************/
2016-11-27 14:10:31 +01:00
/********************** Put hidden parameter scope ***************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
2016-06-24 20:34:58 +02:00
void Sco_PutParamScope (const char *ParamName,Sco_Scope_t Scope)
2014-12-01 23:55:08 +01:00
{
2016-06-24 20:34:58 +02:00
Par_PutHiddenParamUnsigned (ParamName,(unsigned) Scope);
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
/*****************************************************************************/
2016-06-24 20:34:58 +02:00
void Sco_GetScope (const char *ParamName)
2014-12-01 23:55:08 +01:00
{
2017-01-29 12:42:19 +01:00
/***** Get parameter with scope *****/
Gbl.Scope.Current = (Sco_Scope_t)
2017-01-29 21:41:08 +01:00
Par_GetParToUnsignedLong (ParamName,
0,
Sco_NUM_SCOPES - 1,
(unsigned long) Sco_SCOPE_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 == Sco_SCOPE_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 == Sco_SCOPE_CRS && Gbl.CurrentCrs.Crs.CrsCod <= 0)
Gbl.Scope.Current = Sco_SCOPE_DEG;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
if (Gbl.Scope.Current == Sco_SCOPE_DEG && Gbl.CurrentDeg.Deg.DegCod <= 0)
Gbl.Scope.Current = Sco_SCOPE_CTR;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
if (Gbl.Scope.Current == Sco_SCOPE_CTR && Gbl.CurrentCtr.Ctr.CtrCod <= 0)
Gbl.Scope.Current = Sco_SCOPE_INS;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
if (Gbl.Scope.Current == Sco_SCOPE_INS && Gbl.CurrentIns.Ins.InsCod <= 0)
Gbl.Scope.Current = Sco_SCOPE_CTY;
2014-12-01 23:55:08 +01:00
2016-06-24 20:34:58 +02:00
if (Gbl.Scope.Current == Sco_SCOPE_CTY && Gbl.CurrentCty.Cty.CtyCod <= 0)
Gbl.Scope.Current = Sco_SCOPE_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 = Sco_SCOPE_UNK;
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Set allowed scopes when listing guests *******************/
/*****************************************************************************/
void Sco_SetScopesForListingGuests (void)
{
switch (Gbl.Usrs.Me.LoggedRole)
{
2015-04-07 21:44:24 +02:00
case Rol_CTR_ADM:
2015-02-01 20:17:24 +01:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_CTR;
Gbl.Scope.Default = Sco_SCOPE_CTR;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_INS_ADM:
2015-02-01 20:17:24 +01:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_INS |
1 << Sco_SCOPE_CTR;
Gbl.Scope.Default = Sco_SCOPE_INS;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_SYS_ADM:
2016-11-27 14:10:31 +01:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_SYS |
1 << Sco_SCOPE_CTY |
2015-02-01 20:17:24 +01:00
1 << Sco_SCOPE_INS |
1 << Sco_SCOPE_CTR;
2016-11-27 14:10:31 +01:00
Gbl.Scope.Default = Sco_SCOPE_SYS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
2015-02-01 20:17:24 +01:00
Gbl.Scope.Default = Sco_SCOPE_UNK;
2014-12-01 23:55:08 +01:00
break;
}
}
/*****************************************************************************/
/**************** Set allowed scopes when listing students *******************/
/*****************************************************************************/
void Sco_SetScopesForListingStudents (void)
{
2015-09-20 19:20:05 +02:00
Gbl.Scope.Default = Sco_SCOPE_CRS;
2014-12-01 23:55:08 +01:00
switch (Gbl.Usrs.Me.LoggedRole)
{
2015-04-07 21:44:24 +02:00
case Rol_STUDENT:
case Rol_TEACHER:
2015-02-01 20:17:24 +01:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_CRS;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_DEG_ADM:
2015-09-20 19:20:05 +02:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_DEG |
1 << Sco_SCOPE_CRS;
break;
case Rol_CTR_ADM:
Gbl.Scope.Allowed = 1 << Sco_SCOPE_CTR |
1 << Sco_SCOPE_DEG |
1 << Sco_SCOPE_CRS;
break;
case Rol_INS_ADM:
Gbl.Scope.Allowed = 1 << Sco_SCOPE_INS |
1 << Sco_SCOPE_CTR |
1 << Sco_SCOPE_DEG |
1 << Sco_SCOPE_CRS;
2014-12-01 23:55:08 +01:00
break;
2015-04-07 21:44:24 +02:00
case Rol_SYS_ADM:
2015-09-20 19:20:05 +02:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_SYS |
1 << Sco_SCOPE_CTY |
2015-02-01 20:17:24 +01:00
1 << Sco_SCOPE_INS |
2015-09-20 19:20:05 +02:00
1 << Sco_SCOPE_CTR |
1 << Sco_SCOPE_DEG |
2015-02-01 20:17:24 +01:00
1 << Sco_SCOPE_CRS;
2014-12-01 23:55:08 +01:00
break;
default:
Gbl.Scope.Allowed = 0;
2015-02-01 20:17:24 +01:00
Gbl.Scope.Default = Sco_SCOPE_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
/*****************************************************************************/
Sco_Scope_t Sco_GetScopeFromUnsignedStr (const char *UnsignedStr)
{
unsigned UnsignedNum;
if (sscanf (UnsignedStr,"%u",&UnsignedNum) == 1)
if (UnsignedNum < Sco_NUM_SCOPES)
return (Sco_Scope_t) UnsignedNum;
return Sco_SCOPE_UNK;
}
2016-10-27 15:06:11 +02:00
/*****************************************************************************/
/*********************** Get scope from database string **********************/
/*****************************************************************************/
Sco_Scope_t Sco_GetScopeFromDBStr (const char *ScopeDBStr)
{
Sco_Scope_t Scope;
for (Scope = Sco_SCOPE_UNK;
Scope < Sco_NUM_SCOPES;
Scope++)
if (!strcmp (Sco_ScopeDB[Scope],ScopeDBStr))
return Scope;
return Sco_SCOPE_UNK;
}