swad-core/swad_scope.c

297 lines
9.7 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.
2015-01-01 14:34:06 +01:00
Copyright (C) 1999-2015 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 *********************************/
/*****************************************************************************/
#include "swad_config.h"
#include "swad_global.h"
#include "swad_parameter.h"
#include "swad_scope.h"
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
2015-02-01 16:08:58 +01:00
const char *Sco_ScopeAdminDB[Sco_NUM_SCOPES] =
{
2015-02-01 20:17:24 +01:00
NULL, // Sco_SCOPE_UNK
NULL, // Sco_SCOPE_SYS,
NULL, // Sco_SCOPE_CTY,
"Ins", // Sco_SCOPE_INS,
"Ctr", // Sco_SCOPE_CTR,
"Deg", // Sco_SCOPE_DEG,
NULL, // 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 ***/
/*****************************************************************************/
void Sco_PutSelectorScope (bool SendOnChange)
{
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;
fprintf (Gbl.F.Out,"<select name=\"Scope\"");
if (SendOnChange)
2015-10-22 14:49:48 +02:00
fprintf (Gbl.F.Out," onchange=\"document.getElementById('%s').submit();\"",
2014-12-01 23:55:08 +01:00
Gbl.FormId);
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,
Gbl.CurrentIns.Ins.ShortName);
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,
Gbl.CurrentCtr.Ctr.ShortName);
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,
Gbl.CurrentDeg.Deg.ShortName);
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,
Gbl.CurrentCrs.Crs.ShortName);
break;
default:
Lay_ShowErrorAndExit ("Wrong scope.");
break;
}
fprintf (Gbl.F.Out,"</option>");
}
}
fprintf (Gbl.F.Out,"</select>");
}
/*****************************************************************************/
/************* Put hidden parameter with location range *********************/
/*****************************************************************************/
void Sco_PutParamScope (Sco_Scope_t Scope)
{
Par_PutHiddenParamUnsigned ("Scope",(unsigned) Scope);
}
/*****************************************************************************/
/************************* Get users range for listing ***********************/
/*****************************************************************************/
void Sco_GetScope (void)
{
char UnsignedStr[10+1];
unsigned UnsignedNum;
Gbl.Scope.Current = Gbl.Scope.Default;
/***** Get parameter location range if exists *****/
Par_GetParToText ("Scope",UnsignedStr,10);
if (sscanf (UnsignedStr,"%u",&UnsignedNum) == 1)
if (UnsignedNum < Sco_NUM_SCOPES)
Gbl.Scope.Current = (Sco_Scope_t) UnsignedNum;
/***** Avoid impossible scopes *****/
2015-02-01 20:17:24 +01:00
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
2015-02-01 20:17:24 +01: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
2015-02-01 20:17:24 +01: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
2015-02-01 20:17:24 +01: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
2015-02-01 20:17:24 +01: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
/***** Avoid forbidden scopes *****/
if ((Gbl.Scope.Allowed & (1 << Gbl.Scope.Current)) == 0)
2015-02-01 20:17:24 +01:00
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:
2015-02-01 20:17:24 +01:00
Gbl.Scope.Allowed = 1 << Sco_SCOPE_SYS |
1 << Sco_SCOPE_CTY |
1 << Sco_SCOPE_INS |
1 << Sco_SCOPE_CTR;
Gbl.Scope.Default = Sco_SCOPE_INS;
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;
}
}