swad-core/swad_centre.c

2663 lines
92 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_centre.c: centres
/*
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.
2016-01-01 20:19:43 +01:00
Copyright (C) 1999-2016 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 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 ***********************************/
/*****************************************************************************/
#include <linux/stddef.h> // For NULL
2015-10-16 02:24:29 +02:00
#include <stdbool.h> // For boolean type
2014-12-01 23:55:08 +01:00
#include <stdlib.h> // For calloc
#include <string.h> // For string functions
#include "swad_centre.h"
#include "swad_constant.h"
#include "swad_database.h"
#include "swad_global.h"
2015-10-06 20:34:49 +02:00
#include "swad_help.h"
2014-12-01 23:55:08 +01:00
#include "swad_institution.h"
2015-01-17 13:31:25 +01:00
#include "swad_logo.h"
2014-12-01 23:55:08 +01:00
#include "swad_parameter.h"
#include "swad_QR.h"
#include "swad_string.h"
#include "swad_text.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
// Centre photo must be stored in Ctr_PHOTO_REAL_WIDTH x Ctr_PHOTO_REAL_HEIGHT
// Aspect ratio: 3:2 (1.5)
#define Ctr_PHOTO_REAL_WIDTH 768
#define Ctr_PHOTO_REAL_HEIGHT 512
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private variables *****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
static void Ctr_Configuration (bool PrintView);
static void Ctr_ListCentres (void);
static void Ctr_ListCentresForSeeing (void);
static void Ctr_ListOneCentreForSeeing (struct Centre *Ctr,unsigned NumCtr);
static void Ctr_GetParamCtrOrderType (void);
static void Ctr_GetPhotoAttribution (long CtrCod,char **PhotoAttribution);
static void Ctr_FreePhotoAttribution (char **PhotoAttribution);
static void Ctr_ListCentresForEdition (void);
static bool Ctr_CheckIfICanEdit (struct Centre *Ctr);
static Ctr_StatusTxt_t Ctr_GetStatusTxtFromStatusBits (Ctr_Status_t Status);
static Ctr_Status_t Ctr_GetStatusBitsFromStatusTxt (Ctr_StatusTxt_t StatusTxt);
static void Ctr_PutParamOtherCtrCod (long CtrCod);
2016-03-01 19:23:02 +01:00
static bool Ctr_RenameCentre (struct Centre *Ctr,Cns_ShortOrFullName_t ShortOrFullName);
2015-01-13 14:56:14 +01:00
static bool Ctr_CheckIfCentreNameExistsInCurrentIns (const char *FieldName,const char *Name,long CtrCod);
2016-03-01 19:23:02 +01:00
static void Ctr_PutButtonToGoToCtr (struct Centre *Ctr);
2015-01-17 13:31:25 +01:00
2014-12-01 23:55:08 +01:00
static void Ctr_PutFormToChangeCtrPhoto (bool PhotoExists);
static void Ctr_PutFormToCreateCentre (void);
static void Ctr_PutHeadCentresForSeeing (bool OrderSelectable);
static void Ctr_PutHeadCentresForEdition (void);
static void Ctr_RecFormRequestOrCreateCtr (unsigned Status);
static void Ctr_CreateCentre (struct Centre *Ctr,unsigned Status);
/*****************************************************************************/
/******************* List centres with pending degrees ***********************/
/*****************************************************************************/
void Ctr_SeeCtrWithPendingDegs (void)
{
extern const char *Txt_Centres_with_pending_degrees;
extern const char *Txt_Centre;
extern const char *Txt_Degrees_ABBREVIATION;
extern const char *Txt_There_are_no_centres_with_requests_for_degrees_to_be_confirmed;
char Query[1024];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned NumCtrs;
unsigned NumCtr;
struct Centre Ctr;
2015-09-04 19:26:08 +02:00
const char *BgColor;
2014-12-01 23:55:08 +01:00
/***** Get centres with pending degrees *****/
switch (Gbl.Usrs.Me.LoggedRole)
{
2015-04-07 21:44:24 +02:00
case Rol_CTR_ADM:
2014-12-01 23:55:08 +01:00
sprintf (Query,"SELECT degrees.CtrCod,COUNT(*)"
" FROM degrees,ctr_admin,centres"
" WHERE (degrees.Status & %u)<>0"
" AND degrees.CtrCod=ctr_admin.CtrCod AND ctr_admin.UsrCod='%ld'"
" AND degrees.CtrCod=centres.CtrCod"
" GROUP BY degrees.CtrCod ORDER BY centres.ShortName",
(unsigned) Deg_STATUS_BIT_PENDING,Gbl.Usrs.Me.UsrDat.UsrCod);
break;
2015-04-07 21:44:24 +02:00
case Rol_SYS_ADM:
2014-12-01 23:55:08 +01:00
sprintf (Query,"SELECT degrees.CtrCod,COUNT(*)"
" FROM degrees,centres"
" WHERE (degrees.Status & %u)<>0"
" AND degrees.CtrCod=centres.CtrCod"
" GROUP BY degrees.CtrCod ORDER BY centres.ShortName",
(unsigned) Deg_STATUS_BIT_PENDING);
break;
default: // Forbidden for other users
return;
}
/***** Get centres *****/
if ((NumCtrs = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get centres with pending degrees")))
{
/***** Write heading *****/
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Txt_Centres_with_pending_degrees);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2014-12-01 23:55:08 +01:00
"</tr>",
Txt_Centre,
Txt_Degrees_ABBREVIATION);
/***** List the centres *****/
for (NumCtr = 0;
NumCtr < NumCtrs;
NumCtr++)
{
/* Get next centre */
row = mysql_fetch_row (mysql_res);
/* Get centre code (row[0]) */
Ctr.CtrCod = Str_ConvertStrCodToLongCod (row[0]);
2015-09-04 19:26:08 +02:00
BgColor = (Ctr.CtrCod == Gbl.CurrentCtr.Ctr.CtrCod) ? "LIGHT_BLUE" :
Gbl.ColorRows[Gbl.RowEvenOdd];
2014-12-01 23:55:08 +01:00
/* Get data of centre */
Ctr_GetDataOfCentreByCod (&Ctr);
2015-11-12 00:53:30 +01:00
/* Centre logo and full name */
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-11-12 00:53:30 +01:00
"<td class=\"LEFT_MIDDLE %s\">",
2014-12-01 23:55:08 +01:00
BgColor);
2015-11-19 19:37:44 +01:00
Ctr_DrawCentreLogoAndNameWithLink (&Ctr,ActSeeDeg,
"DAT_NOBR","CENTER_MIDDLE");
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
/* Number of pending degrees (row[1]) */
2015-09-04 17:10:27 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE %s\">"
2014-12-22 14:08:19 +01:00
"%s"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
BgColor,row[1]);
Gbl.RowEvenOdd = 1 - Gbl.RowEvenOdd;
}
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
}
else
Lay_ShowAlert (Lay_INFO,Txt_There_are_no_centres_with_requests_for_degrees_to_be_confirmed);
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
2015-11-19 19:37:44 +01:00
/*****************************************************************************/
2015-11-19 20:04:41 +01:00
/******************** Draw centre logo and name with link ********************/
2015-11-19 19:37:44 +01:00
/*****************************************************************************/
void Ctr_DrawCentreLogoAndNameWithLink (struct Centre *Ctr,Act_Action_t Action,
const char *ClassLink,const char *ClassLogo)
{
extern const char *Txt_Go_to_X;
/***** Start form *****/
Act_FormGoToStart (Action);
Ctr_PutParamCtrCod (Ctr->CtrCod);
/***** Link to action *****/
sprintf (Gbl.Title,Txt_Go_to_X,Ctr->FullName);
Act_LinkFormSubmit (Gbl.Title,ClassLink);
2015-11-19 20:04:41 +01:00
/***** Draw centre logo *****/
2015-12-13 13:53:00 +01:00
Log_DrawLogo (Sco_SCOPE_CTR,Ctr->CtrCod,Ctr->ShortName,20,ClassLogo,true);
2015-11-19 19:37:44 +01:00
/***** End link *****/
fprintf (Gbl.F.Out,"&nbsp;%s</a>",Ctr->FullName);
/***** End form *****/
Act_FormEnd ();
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************** Show information of the current centre *******************/
/*****************************************************************************/
void Ctr_ShowConfiguration (void)
{
Ctr_Configuration (false);
2015-10-06 01:19:21 +02:00
/***** Show help to enroll me *****/
2015-10-06 20:34:49 +02:00
Hlp_ShowHelpWhatWouldYouLikeToDo ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Print information of the current centre ******************/
/*****************************************************************************/
void Ctr_PrintConfiguration (void)
{
Ctr_Configuration (true);
}
/*****************************************************************************/
/******************* Information of the current centre ***********************/
/*****************************************************************************/
static void Ctr_Configuration (bool PrintView)
{
2015-07-27 21:25:45 +02:00
extern const char *The_ClassForm[The_NUM_THEMES];
2015-04-02 15:59:35 +02:00
extern const char *Txt_Print;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Centre;
2015-02-04 20:03:23 +01:00
extern const char *Txt_Short_name;
extern const char *Txt_Web;
2015-03-07 18:09:42 +01:00
extern const char *Txt_Shortcut;
2015-12-07 23:13:08 +01:00
extern const char *Txt_STR_LANG_ID[1+Txt_NUM_LANGUAGES];
2014-12-01 23:55:08 +01:00
extern const char *Txt_QR_code;
2015-12-09 22:05:21 +01:00
extern const char *Txt_Users_of_the_centre;
extern const char *Txt_Place;
extern const char *Txt_Degrees;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Courses;
extern const char *Txt_ROLES_PLURAL_Abc[Rol_NUM_ROLES][Usr_NUM_SEXS];
2015-12-09 22:05:21 +01:00
struct Place Plc;
2014-12-01 23:55:08 +01:00
char PathPhoto[PATH_MAX+1];
bool PhotoExists;
char *PhotoAttribution = NULL;
bool PutLink = !PrintView && Gbl.CurrentCtr.Ctr.WWW[0];
if (Gbl.CurrentCtr.Ctr.CtrCod > 0)
{
2015-01-14 00:32:23 +01:00
/***** Path to photo *****/
2014-12-01 23:55:08 +01:00
sprintf (PathPhoto,"%s/%s/%02u/%u/%u.jpg",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Gbl.CurrentCtr.Ctr.CtrCod % 100),
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod,
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod);
PhotoExists = Fil_CheckIfPathExists (PathPhoto);
2015-01-28 20:30:47 +01:00
/***** Links to show degrees, to print view
and to upload photo and logo *****/
2014-12-08 17:35:48 +01:00
if (!PrintView)
2014-12-01 23:55:08 +01:00
{
2015-04-02 14:22:21 +02:00
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
2015-02-04 20:03:23 +01:00
/* Link to print view */
2015-12-13 19:02:06 +01:00
Lay_PutContextualLink (ActPrnCtrInf,NULL,"print64x64.png",
Txt_Print,Txt_Print);
2014-12-01 23:55:08 +01:00
2015-01-17 13:31:25 +01:00
/* Links to upload logo and photo */
2015-04-07 21:44:24 +02:00
if (Gbl.Usrs.Me.LoggedRole >= Rol_CTR_ADM)
2015-01-14 00:32:23 +01:00
{
2015-02-01 20:17:24 +01:00
Log_PutFormToChangeLogo (Sco_SCOPE_CTR);
2014-12-01 23:55:08 +01:00
Ctr_PutFormToChangeCtrPhoto (PhotoExists);
2015-01-14 00:32:23 +01:00
}
2015-02-04 20:03:23 +01:00
fprintf (Gbl.F.Out,"</div>");
2014-12-01 23:55:08 +01:00
}
2014-12-08 17:35:48 +01:00
/***** Start frame *****/
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,NULL);
2014-12-08 17:35:48 +01:00
2014-12-01 23:55:08 +01:00
/***** Title *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td colspan=\"2\" class=\"TITLE_LOCATION\">");
2014-12-01 23:55:08 +01:00
if (PutLink)
fprintf (Gbl.F.Out,"<a href=\"%s\" target=\"_blank\""
" class=\"TITLE_LOCATION\" title=\"%s\">",
Gbl.CurrentCtr.Ctr.WWW,
Gbl.CurrentCtr.Ctr.FullName);
2015-02-01 20:17:24 +01:00
Log_DrawLogo (Sco_SCOPE_CTR,Gbl.CurrentCtr.Ctr.CtrCod,
2015-01-18 11:46:39 +01:00
Gbl.CurrentCtr.Ctr.ShortName,64,NULL,true);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<br />%s",Gbl.CurrentCtr.Ctr.FullName);
if (PutLink)
fprintf (Gbl.F.Out,"</a>");
fprintf (Gbl.F.Out,"</td>"
"</tr>");
/***** Centre photo *****/
if (PhotoExists)
{
/* Get photo attribution */
Ctr_GetPhotoAttribution (Gbl.CurrentCtr.Ctr.CtrCod,&PhotoAttribution);
/* Photo image */
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td colspan=\"2\" class=\"DAT_SMALL CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (PutLink)
fprintf (Gbl.F.Out,"<a href=\"%s\" target=\"_blank\" class=\"DAT_N\">",
Gbl.CurrentCtr.Ctr.WWW);
2015-07-21 17:24:52 +02:00
fprintf (Gbl.F.Out,"<img src=\"%s/%s/%02u/%u/%u.jpg\""
" alt=\"%s\" title=\"%s\""
" class=\"%s\" />",
2014-12-01 23:55:08 +01:00
Cfg_HTTPS_URL_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Gbl.CurrentCtr.Ctr.CtrCod % 100),
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod,
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod,
2015-07-21 17:24:52 +02:00
Gbl.CurrentCtr.Ctr.ShortName,
Gbl.CurrentCtr.Ctr.FullName,
2014-12-01 23:55:08 +01:00
PrintView ? "CENTRE_PHOTO_PRINT" :
"CENTRE_PHOTO_SHOW");
if (PutLink)
fprintf (Gbl.F.Out,"</a>");
fprintf (Gbl.F.Out,"</td>"
"</tr>");
/* Photo attribution */
2015-04-07 21:44:24 +02:00
if (Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM && !PrintView)
2014-12-01 23:55:08 +01:00
{
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td colspan=\"2\" class=\"CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
Act_FormStart (ActChgCtrPhoAtt);
fprintf (Gbl.F.Out,"<textarea name=\"Attribution\" cols=\"50\" rows=\"2\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\">",
2016-01-14 10:31:09 +01:00
Gbl.Form.Id);
2014-12-01 23:55:08 +01:00
if (PhotoAttribution)
fprintf (Gbl.F.Out,"%s",PhotoAttribution);
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</textarea>");
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>"
2014-12-01 23:55:08 +01:00
"</tr>");
}
else if (PhotoAttribution)
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td colspan=\"2\" class=\"ATTRIBUTION\">"
2014-12-22 14:08:19 +01:00
"%s"
2014-12-01 23:55:08 +01:00
"</td>"
"</tr>",
PhotoAttribution);
/* Free memory used for photo attribution */
Ctr_FreePhotoAttribution (&PhotoAttribution);
}
/***** Centre full name *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT_N LEFT_MIDDLE\">",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2014-12-01 23:55:08 +01:00
Txt_Centre);
if (PutLink)
fprintf (Gbl.F.Out,"<a href=\"%s\" target=\"_blank\" class=\"DAT_N\">",
Gbl.CurrentCtr.Ctr.WWW);
fprintf (Gbl.F.Out,"%s",Gbl.CurrentCtr.Ctr.FullName);
if (PutLink)
fprintf (Gbl.F.Out,"</a>");
fprintf (Gbl.F.Out,"</td>"
"</tr>");
/***** Centre short name *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2015-02-04 20:03:23 +01:00
Txt_Short_name,
2014-12-01 23:55:08 +01:00
Gbl.CurrentCtr.Ctr.ShortName);
2015-02-04 20:03:23 +01:00
/***** Centre WWW *****/
if (Gbl.CurrentCtr.Ctr.WWW[0])
{
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2015-02-04 20:03:23 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2015-02-04 20:03:23 +01:00
"<a href=\"%s\" target=\"_blank\" class=\"DAT\">",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2015-02-04 20:03:23 +01:00
Txt_Web,
Gbl.CurrentCtr.Ctr.WWW);
Str_LimitLengthHTMLStr (Gbl.CurrentCtr.Ctr.WWW,20);
fprintf (Gbl.F.Out,"%s"
"</a>"
"</td>"
"</tr>",
Gbl.CurrentCtr.Ctr.WWW);
}
/***** Shortcut to the centre *****/
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2015-03-07 21:08:44 +01:00
"<a href=\"%s/%s?ctr=%ld\" class=\"DAT\" target=\"_blank\">"
"%s/%s?ctr=%ld"
2014-12-22 14:08:19 +01:00
"</a>"
2014-12-01 23:55:08 +01:00
"</td>"
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2015-03-07 18:09:42 +01:00
Txt_Shortcut,
2015-12-07 23:13:08 +01:00
Cfg_HTTPS_URL_SWAD_CGI,
Txt_STR_LANG_ID[Gbl.Prefs.Language],
Gbl.CurrentCtr.Ctr.CtrCod,
Cfg_HTTPS_URL_SWAD_CGI,
Txt_STR_LANG_ID[Gbl.Prefs.Language],
Gbl.CurrentCtr.Ctr.CtrCod);
2014-12-01 23:55:08 +01:00
if (PrintView)
{
/***** QR code with link to the centre *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2014-12-01 23:55:08 +01:00
Txt_QR_code);
2015-09-28 18:28:29 +02:00
QR_LinkTo (250,"ctr",Gbl.CurrentCtr.Ctr.CtrCod);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</td>"
"</tr>");
}
else
{
2015-12-09 22:05:21 +01:00
/***** Place *****/
Plc.PlcCod = Gbl.CurrentCtr.Ctr.PlcCod;
Plc_GetDataOfPlaceByCod (&Plc);
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s RIGHT_MIDDLE\">"
"%s:"
"</td>"
"<td class=\"DAT LEFT_MIDDLE\">"
"%s"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
Txt_Place,
Plc.FullName);
/***** Number of users who claim to belong to this centre *****/
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s RIGHT_MIDDLE\">"
"%s:"
"</td>"
"<td class=\"DAT LEFT_MIDDLE\">"
"%u"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
Txt_Users_of_the_centre,
Usr_GetNumUsrsWhoClaimToBelongToCtr (Gbl.CurrentCtr.Ctr.CtrCod));
2014-12-01 23:55:08 +01:00
/***** Number of degrees *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2014-12-01 23:55:08 +01:00
Txt_Degrees,
Deg_GetNumDegsInCtr (Gbl.CurrentCtr.Ctr.CtrCod));
/***** Number of courses *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2014-12-01 23:55:08 +01:00
Txt_Courses,
Crs_GetNumCrssInCtr (Gbl.CurrentCtr.Ctr.CtrCod));
2015-12-09 22:05:21 +01:00
/***** Number of teachers in courses of this centre *****/
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2015-04-07 21:44:24 +02:00
Txt_ROLES_PLURAL_Abc[Rol_TEACHER][Usr_SEX_UNKNOWN],
Usr_GetNumUsrsInCrssOfCtr (Rol_TEACHER,Gbl.CurrentCtr.Ctr.CtrCod));
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/***** Number of students in courses of this centre *****/
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-07-27 21:25:45 +02:00
"<td class=\"%s RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%s:"
"</td>"
2015-07-28 10:15:44 +02:00
"<td class=\"DAT LEFT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2015-04-07 21:44:24 +02:00
Txt_ROLES_PLURAL_Abc[Rol_STUDENT][Usr_SEX_UNKNOWN],
Usr_GetNumUsrsInCrssOfCtr (Rol_STUDENT,Gbl.CurrentCtr.Ctr.CtrCod));
2015-12-09 22:05:21 +01:00
/***** Number of users in courses of this centre *****/
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s RIGHT_MIDDLE\">"
"%s + %s:"
"</td>"
"<td class=\"DAT LEFT_MIDDLE\">"
"%u"
"</td>"
"</tr>",
The_ClassForm[Gbl.Prefs.Theme],
Txt_ROLES_PLURAL_Abc[Rol_TEACHER][Usr_SEX_UNKNOWN],
Txt_ROLES_PLURAL_Abc[Rol_STUDENT][Usr_SEX_UNKNOWN],
Usr_GetNumUsrsInCrssOfCtr (Rol_UNKNOWN,Gbl.CurrentCtr.Ctr.CtrCod));
2014-12-01 23:55:08 +01:00
}
2014-12-08 17:35:48 +01:00
/***** End frame *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
}
}
/*****************************************************************************/
/*************** Show the centres of the current institution *****************/
/*****************************************************************************/
void Ctr_ShowCtrsOfCurrentIns (void)
{
if (Gbl.CurrentIns.Ins.InsCod > 0)
{
/***** Get parameter with the type of order in the list of centres *****/
Ctr_GetParamCtrOrderType ();
/***** Get list of centres *****/
Ctr_GetListCentres (Gbl.CurrentIns.Ins.InsCod);
/***** Write menu to select country and institution *****/
2015-07-25 20:07:38 +02:00
Deg_WriteMenuAllCourses ();
2014-12-01 23:55:08 +01:00
/***** List centres *****/
Ctr_ListCentres ();
/***** Free list of centres *****/
Ctr_FreeListCentres ();
}
}
/*****************************************************************************/
/******************** List centres in this institution ***********************/
/*****************************************************************************/
static void Ctr_ListCentres (void)
{
extern const char *Txt_No_centres_have_been_created_in_this_institution;
2015-10-06 01:19:21 +02:00
extern const char *Txt_Create_centre;
bool ICanEdit = (Gbl.Usrs.Me.LoggedRole >= Rol__GUEST_);
2014-12-01 23:55:08 +01:00
2015-10-06 01:19:21 +02:00
if (Gbl.Ctrs.Num) // There are centres in the current institution
{
if (ICanEdit)
Lay_PutFormToEdit (ActEdiCtr);
2014-12-01 23:55:08 +01:00
Ctr_ListCentresForSeeing ();
2015-10-06 01:19:21 +02:00
}
else // No centres created in the current institution
{
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_INFO,Txt_No_centres_have_been_created_in_this_institution);
2015-10-06 01:19:21 +02:00
if (ICanEdit)
{
2015-11-20 14:44:54 +01:00
Act_FormStart (ActEdiCtr);
Lay_PutConfirmButton (Txt_Create_centre);
Act_FormEnd ();
2015-10-06 01:19:21 +02:00
}
}
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/*************** List the centres of the current institution *****************/
/*****************************************************************************/
static void Ctr_ListCentresForSeeing (void)
{
2014-12-13 20:32:10 +01:00
extern const char *Txt_Centres_of_INSTITUTION_X;
2014-12-01 23:55:08 +01:00
unsigned NumCtr;
/***** Write heading *****/
2014-12-13 20:32:10 +01:00
sprintf (Gbl.Title,Txt_Centres_of_INSTITUTION_X,
2015-01-14 00:32:23 +01:00
Gbl.CurrentIns.Ins.FullName);
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Gbl.Title);
2014-12-01 23:55:08 +01:00
Ctr_PutHeadCentresForSeeing (true); // Order selectable
/***** Write all the centres and their nuber of teachers *****/
for (NumCtr = 0;
NumCtr < Gbl.Ctrs.Num;
NumCtr++)
Ctr_ListOneCentreForSeeing (&(Gbl.Ctrs.Lst[NumCtr]),NumCtr + 1);
/***** Table end *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/************************* List one centre for seeing ************************/
/*****************************************************************************/
static void Ctr_ListOneCentreForSeeing (struct Centre *Ctr,unsigned NumCtr)
{
extern const char *Txt_CENTRE_STATUS[Ctr_NUM_STATUS_TXT];
struct Place Plc;
2015-11-19 16:09:51 +01:00
const char *TxtClassNormal;
const char *TxtClassStrong;
2015-09-04 19:26:08 +02:00
const char *BgColor;
2014-12-01 23:55:08 +01:00
Crs_StatusTxt_t StatusTxt;
/***** Get data of place of this centre *****/
Plc.PlcCod = Ctr->PlcCod;
Plc_GetDataOfPlaceByCod (&Plc);
2015-11-19 16:09:51 +01:00
if (Ctr->Status & Ctr_STATUS_BIT_PENDING)
{
TxtClassNormal = "DAT_LIGHT";
TxtClassStrong = "DAT_LIGHT";
}
else
{
TxtClassNormal = "DAT";
TxtClassStrong = "DAT_N";
}
2015-09-04 19:26:08 +02:00
BgColor = (Ctr->CtrCod == Gbl.CurrentCtr.Ctr.CtrCod) ? "LIGHT_BLUE" :
Gbl.ColorRows[Gbl.RowEvenOdd];
2014-12-01 23:55:08 +01:00
/***** Number of centre in this list *****/
fprintf (Gbl.F.Out,"<tr>"
2015-09-04 17:10:27 +02:00
"<td class=\"%s RIGHT_MIDDLE %s\">"
2014-12-01 23:55:08 +01:00
"%u"
"</td>",
2015-11-19 16:09:51 +01:00
TxtClassNormal,BgColor,
2014-12-01 23:55:08 +01:00
NumCtr);
2015-11-19 16:09:51 +01:00
/***** Centre logo and name *****/
2015-11-19 19:37:44 +01:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE %s\">",BgColor);
Ctr_DrawCentreLogoAndNameWithLink (Ctr,ActSeeDeg,
TxtClassStrong,"CENTER_MIDDLE");
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/***** Number of users who claim to belong to this centre *****/
2015-09-04 17:10:27 +02:00
fprintf (Gbl.F.Out,"<td class=\"%s RIGHT_MIDDLE %s\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>",
2015-11-19 16:09:51 +01:00
TxtClassNormal,BgColor,
2015-12-09 22:05:21 +01:00
Ctr->NumUsrsWhoClaimToBelongToCtr);
/***** Place *****/
fprintf (Gbl.F.Out,"<td class=\"%s LEFT_MIDDLE %s\">"
"%s"
"</td>",
TxtClassNormal,BgColor,
Plc.ShortName);
2014-12-01 23:55:08 +01:00
/***** Number of degrees *****/
2015-09-04 17:10:27 +02:00
fprintf (Gbl.F.Out,"<td class=\"%s RIGHT_MIDDLE %s\">"
2014-12-22 14:08:19 +01:00
"%u"
"</td>",
2015-11-19 16:09:51 +01:00
TxtClassNormal,BgColor,
2014-12-22 14:08:19 +01:00
Ctr->NumDegs);
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/***** Number of courses *****/
fprintf (Gbl.F.Out,"<td class=\"%s RIGHT_MIDDLE %s\">"
"%u"
"</td>",
TxtClassNormal,BgColor,
Ctr->NumCrss);
/***** Number of users in courses of this centre *****/
fprintf (Gbl.F.Out,"<td class=\"%s RIGHT_MIDDLE %s\">"
"%u"
"</td>",
TxtClassNormal,BgColor,
Ctr->NumUsrs);
2015-11-19 16:09:51 +01:00
2014-12-01 23:55:08 +01:00
/***** Centre status *****/
StatusTxt = Ctr_GetStatusTxtFromStatusBits (Ctr->Status);
2015-09-04 17:10:27 +02:00
fprintf (Gbl.F.Out,"<td class=\"%s LEFT_MIDDLE %s\">"
2014-12-22 14:08:19 +01:00
"%s"
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
2015-11-19 16:09:51 +01:00
TxtClassNormal,BgColor,
2014-12-22 14:08:19 +01:00
Txt_CENTRE_STATUS[StatusTxt]);
2014-12-01 23:55:08 +01:00
Gbl.RowEvenOdd = 1 - Gbl.RowEvenOdd;
}
/*****************************************************************************/
/********** Get parameter with the type or order in list of centres **********/
/*****************************************************************************/
static void Ctr_GetParamCtrOrderType (void)
{
char UnsignedStr[10+1];
unsigned UnsignedNum;
Par_GetParToText ("Order",UnsignedStr,10);
if (sscanf (UnsignedStr,"%u",&UnsignedNum) == 1)
Gbl.Ctrs.SelectedOrderType = (tCtrsOrderType) UnsignedNum;
else
Gbl.Ctrs.SelectedOrderType = Ctr_DEFAULT_ORDER_TYPE;
}
/*****************************************************************************/
/************************** Put forms to edit centres ************************/
/*****************************************************************************/
void Ctr_EditCentres (void)
{
extern const char *Txt_There_is_no_list_of_institutions;
extern const char *Txt_You_must_create_at_least_one_institution_before_creating_centres;
/***** Get list of institutions of the current country *****/
2015-12-09 19:51:17 +01:00
Ins_GetListInstitutions (Gbl.CurrentCty.Cty.CtyCod,Ins_GET_BASIC_DATA);
2014-12-01 23:55:08 +01:00
if (Gbl.Inss.Num)
{
/***** Get list of places *****/
Plc_GetListPlaces ();
/***** Get list of centres *****/
Ctr_GetListCentres (Gbl.CurrentIns.Ins.InsCod);
2015-02-08 17:35:44 +01:00
if (Gbl.Ctrs.Num)
/***** Put link (form) to view centres *****/
Lay_PutFormToView (ActSeeCtr);
2014-12-01 23:55:08 +01:00
/***** Put a form to create a new centre *****/
Ctr_PutFormToCreateCentre ();
/***** List current centres *****/
if (Gbl.Ctrs.Num)
Ctr_ListCentresForEdition ();
/***** Free list of centres *****/
Ctr_FreeListCentres ();
/***** Free list of places *****/
Plc_FreeListPlaces ();
}
else // No institutions
{
Lay_ShowAlert (Lay_WARNING,Txt_There_is_no_list_of_institutions);
Lay_ShowAlert (Lay_INFO,Txt_You_must_create_at_least_one_institution_before_creating_centres);
}
/***** Free list of institutions *****/
Ins_FreeListInstitutions ();
}
/*****************************************************************************/
/***** Get a list with all the centres or with those of an institution *******/
/*****************************************************************************/
// If InsCod <= 0 ==> get all the centres, of any institution
// In InsCod > 0 ==> get only the centres of the specified institution
void Ctr_GetListCentres (long InsCod)
{
char OrderBySubQuery[256];
char Query[1024];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned long NumRows;
unsigned NumCtr;
struct Centre *Ctr;
/***** Get centres from database *****/
switch (Gbl.Ctrs.SelectedOrderType)
{
case Ctr_ORDER_BY_CENTRE:
sprintf (OrderBySubQuery,"FullName");
break;
case Ctr_ORDER_BY_NUM_TCHS:
2015-12-09 22:05:21 +01:00
sprintf (OrderBySubQuery,"NumUsrs DESC,FullName");
2014-12-01 23:55:08 +01:00
break;
}
2015-12-09 22:05:21 +01:00
sprintf (Query,"(SELECT centres.CtrCod,centres.InsCod,centres.PlcCod,"
"centres.Status,centres.RequesterUsrCod,"
"centres.ShortName,centres.FullName,centres.WWW,"
"COUNT(DISTINCT usr_data.UsrCod) AS NumUsrs"
" FROM centres,usr_data"
" WHERE centres.InsCod='%ld'"
" AND centres.CtrCod=usr_data.CtrCod"
" GROUP BY centres.CtrCod)"
" UNION "
"(SELECT CtrCod,InsCod,PlcCod,Status,RequesterUsrCod,"
"ShortName,FullName,WWW,0 AS NumUsrs"
" FROM centres"
" WHERE centres.InsCod='%ld'"
" AND CtrCod NOT IN"
" (SELECT DISTINCT CtrCod FROM usr_data))"
" ORDER BY %s",
InsCod,
InsCod,
OrderBySubQuery);
2014-12-01 23:55:08 +01:00
NumRows = DB_QuerySELECT (Query,&mysql_res,"can not get centres");
if (NumRows) // Centres found...
{
// NumRows should be equal to Deg->NumCourses
Gbl.Ctrs.Num = (unsigned) NumRows;
/***** Create list with courses in degree *****/
if ((Gbl.Ctrs.Lst = (struct Centre *) calloc (NumRows,sizeof (struct Centre))) == NULL)
Lay_ShowErrorAndExit ("Not enough memory to store centres.");
/***** Get the centres *****/
for (NumCtr = 0;
NumCtr < Gbl.Ctrs.Num;
NumCtr++)
{
Ctr = &(Gbl.Ctrs.Lst[NumCtr]);
/* Get next centre */
row = mysql_fetch_row (mysql_res);
/* Get centre code (row[0]) */
if ((Ctr->CtrCod = Str_ConvertStrCodToLongCod (row[0])) <= 0)
Lay_ShowErrorAndExit ("Wrong code of centre.");
/* Get institution code (row[1]) */
Ctr->InsCod = Str_ConvertStrCodToLongCod (row[1]);
/* Get place code (row[2]) */
Ctr->PlcCod = Str_ConvertStrCodToLongCod (row[2]);
/* Get centre status (row[3]) */
if (sscanf (row[3],"%u",&(Ctr->Status)) != 1)
Lay_ShowErrorAndExit ("Wrong centre status.");
/* Get requester user's code (row[4]) */
Ctr->RequesterUsrCod = Str_ConvertStrCodToLongCod (row[4]);
/* Get the short name of the centre (row[5]) */
strcpy (Ctr->ShortName,row[5]);
/* Get the full name of the centre (row[6]) */
strcpy (Ctr->FullName,row[6]);
2015-01-14 00:32:23 +01:00
/* Get the URL of the centre (row[7]) */
strcpy (Ctr->WWW,row[7]);
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/* Get number of users who claim to belong to this centre (row[8]) */
if (sscanf (row[8],"%u",&Ctr->NumUsrsWhoClaimToBelongToCtr) != 1)
Ctr->NumUsrsWhoClaimToBelongToCtr = 0;
/* Get number of degrees in this centre */
Ctr->NumDegs = Deg_GetNumDegsInCtr (Ctr->CtrCod);
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/* Get number of courses in this centre */
Ctr->NumCrss = Crs_GetNumCrssInCtr (Ctr->CtrCod);
/* Get number of users in courses of this centre */
2015-12-14 12:30:24 +01:00
Ctr->NumUsrs = Usr_GetNumUsrsInCrssOfCtr (Rol_UNKNOWN,Ctr->CtrCod); // Here Rol_UNKNOWN means "all users"
2014-12-01 23:55:08 +01:00
}
}
else
Gbl.Ctrs.Num = 0;
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
/*****************************************************************************/
/************************ Get data of centre by code *************************/
/*****************************************************************************/
bool Ctr_GetDataOfCentreByCod (struct Centre *Ctr)
{
char Query[1024];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
bool CtrFound = false;
/***** Clear data *****/
Ctr->InsCod = -1L;
Ctr->PlcCod = -1L;
Ctr->Status = (Ctr_Status_t) 0;
Ctr->RequesterUsrCod = -1L;
Ctr->ShortName[0] = '\0';
Ctr->FullName[0] = '\0';
Ctr->WWW[0] = '\0';
2015-12-09 22:05:21 +01:00
Ctr->NumUsrsWhoClaimToBelongToCtr = 0;
2015-12-14 12:30:24 +01:00
Ctr->NumDegs = Ctr->NumCrss = 0;
2015-12-09 22:05:21 +01:00
Ctr->NumUsrs = 0;
2014-12-01 23:55:08 +01:00
/***** Check if centre code is correct *****/
if (Ctr->CtrCod > 0)
{
/***** Get data of a centre from database *****/
2015-12-09 22:05:21 +01:00
sprintf (Query,"(SELECT centres.InsCod,centres.PlcCod,"
"centres.Status,centres.RequesterUsrCod,"
"centres.ShortName,centres.FullName,centres.WWW,"
"COUNT(DISTINCT usr_data.UsrCod) AS NumUsrs"
" FROM centres,usr_data"
2014-12-01 23:55:08 +01:00
" WHERE centres.CtrCod='%ld'"
2015-12-09 22:05:21 +01:00
" AND centres.CtrCod=usr_data.CtrCod"
2014-12-01 23:55:08 +01:00
" GROUP BY centres.CtrCod)"
" UNION "
2015-12-09 22:05:21 +01:00
"(SELECT InsCod,PlcCod,"
"Status,RequesterUsrCod,"
"ShortName,FullName,WWW,"
"0 AS NumUsrs"
2014-12-01 23:55:08 +01:00
" FROM centres"
2015-12-09 22:05:21 +01:00
" WHERE CtrCod='%ld'"
" AND CtrCod NOT IN"
" (SELECT DISTINCT CtrCod FROM usr_data))",
2014-12-01 23:55:08 +01:00
Ctr->CtrCod,
2015-12-09 22:05:21 +01:00
Ctr->CtrCod);
2014-12-01 23:55:08 +01:00
if (DB_QuerySELECT (Query,&mysql_res,"can not get data of a centre")) // Centre found...
{
/* Get row */
row = mysql_fetch_row (mysql_res);
/* Get the code of the institution (row[0]) */
Ctr->InsCod = Str_ConvertStrCodToLongCod (row[0]);
/* Get the code of the place (row[1]) */
Ctr->PlcCod = Str_ConvertStrCodToLongCod (row[1]);
/* Get centre status (row[2]) */
if (sscanf (row[2],"%u",&(Ctr->Status)) != 1)
Lay_ShowErrorAndExit ("Wrong centre status.");
/* Get requester user's code (row[3]) */
Ctr->RequesterUsrCod = Str_ConvertStrCodToLongCod (row[3]);
/* Get the short name of the centre (row[4]) */
strcpy (Ctr->ShortName,row[4]);
/* Get the full name of the centre (row[5]) */
strcpy (Ctr->FullName,row[5]);
2015-01-14 00:32:23 +01:00
/* Get the URL of the centre (row[6]) */
strcpy (Ctr->WWW,row[6]);
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/* Get number of users who claim to belong to this centre (row[7]) */
if (sscanf (row[7],"%u",&Ctr->NumUsrsWhoClaimToBelongToCtr) != 1)
Ctr->NumUsrsWhoClaimToBelongToCtr = 0;
2014-12-01 23:55:08 +01:00
2015-12-09 22:05:21 +01:00
/* Get number of degrees in this centre */
Ctr->NumDegs = Deg_GetNumDegsInCtr (Ctr->CtrCod);
/* Get number of courses in this centre */
Ctr->NumCrss = Crs_GetNumCrssInCtr (Ctr->CtrCod);
/* Get number of users in courses of this centre */
2015-12-14 12:30:24 +01:00
Ctr->NumUsrs = Usr_GetNumUsrsInCrssOfCtr (Rol_UNKNOWN,Ctr->CtrCod); // Here Rol_UNKNOWN means "all users"
2014-12-01 23:55:08 +01:00
/* Set return value */
CtrFound = true;
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
return CtrFound;
}
2015-02-03 11:34:59 +01:00
/*****************************************************************************/
/*********** Get the institution code of a centre from its code **************/
/*****************************************************************************/
long Ctr_GetInsCodOfCentreByCod (long CtrCod)
{
char Query[128];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
long InsCod = -1L;
if (CtrCod > 0)
{
/***** Get the institution code of a centre from database *****/
2015-02-04 19:18:09 +01:00
sprintf (Query,"SELECT InsCod FROM centres WHERE CtrCod='%ld'",
2015-02-03 11:34:59 +01:00
CtrCod);
if (DB_QuerySELECT (Query,&mysql_res,"can not get the institution of a centre") == 1)
{
/***** Get the institution code of this centre *****/
row = mysql_fetch_row (mysql_res);
2015-02-04 19:18:09 +01:00
InsCod = Str_ConvertStrCodToLongCod (row[0]);
2015-02-03 11:34:59 +01:00
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
return InsCod;
}
2015-10-10 22:16:46 +02:00
/*****************************************************************************/
/*************** Get the short name of a centre from its code ****************/
/*****************************************************************************/
void Ctr_GetShortNameOfCentreByCod (struct Centre *Ctr)
{
char Query[512];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
Ctr->ShortName[0] = '\0';
if (Ctr->CtrCod > 0)
{
/***** Get the short name of a centre from database *****/
sprintf (Query,"SELECT ShortName FROM centres"
" WHERE CtrCod ='%ld'",
Ctr->CtrCod);
if (DB_QuerySELECT (Query,&mysql_res,"can not get the short name of a centre") == 1)
{
/***** Get the short name of this centre *****/
row = mysql_fetch_row (mysql_res);
strcpy (Ctr->ShortName,row[0]);
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******************* Get photo attribution from database *********************/
/*****************************************************************************/
static void Ctr_GetPhotoAttribution (long CtrCod,char **PhotoAttribution)
{
char Query[128];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
/***** Free possible former photo attribution *****/
Ctr_FreePhotoAttribution (PhotoAttribution);
/***** Get photo attribution from database *****/
sprintf (Query,"SELECT PhotoAttribution FROM centres WHERE CtrCod='%ld'",
CtrCod);
if (DB_QuerySELECT (Query,&mysql_res,"can not get photo attribution"))
{
/* Get row */
row = mysql_fetch_row (mysql_res);
/* Get the attribution of the photo of the centre (row[0]) */
if (row[0])
if (row[0][0])
{
if (((*PhotoAttribution) = (char *) malloc (strlen (row[0])+1)) == NULL)
Lay_ShowErrorAndExit ("Error allocating memory for photo attribution.");
strcpy (*PhotoAttribution,row[0]);
}
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
/*****************************************************************************/
/****************** Free memory used for photo attribution *******************/
/*****************************************************************************/
static void Ctr_FreePhotoAttribution (char **PhotoAttribution)
{
if (*PhotoAttribution)
{
free ((void *) *PhotoAttribution);
*PhotoAttribution = NULL;
}
}
/*****************************************************************************/
/**************************** Free list of centres ***************************/
/*****************************************************************************/
void Ctr_FreeListCentres (void)
{
if (Gbl.Ctrs.Lst)
{
/***** Free memory used by the list of courses in degree *****/
free ((void *) Gbl.Ctrs.Lst);
Gbl.Ctrs.Lst = NULL;
Gbl.Ctrs.Num = 0;
}
}
/*****************************************************************************/
/************************** Write selector of centre *************************/
/*****************************************************************************/
2015-07-25 20:20:07 +02:00
void Ctr_WriteSelectorOfCentre (void)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_Centre;
char Query[128];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned NumCtrs;
unsigned NumCtr;
long CtrCod;
/***** Start form *****/
2015-07-25 20:20:07 +02:00
Act_FormGoToStart (ActSeeDeg);
2015-09-28 18:28:29 +02:00
fprintf (Gbl.F.Out,"<select name=\"ctr\" style=\"width:175px;\"");
2014-12-01 23:55:08 +01:00
if (Gbl.CurrentIns.Ins.InsCod > 0)
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
else
fprintf (Gbl.F.Out," disabled=\"disabled\"");
fprintf (Gbl.F.Out,"><option value=\"\"");
if (Gbl.CurrentCtr.Ctr.CtrCod < 0)
fprintf (Gbl.F.Out," selected=\"selected\"");
fprintf (Gbl.F.Out," disabled=\"disabled\">[%s]</option>",
Txt_Centre);
if (Gbl.CurrentIns.Ins.InsCod > 0)
{
/***** Get centres from database *****/
sprintf (Query,"SELECT DISTINCT CtrCod,ShortName"
" FROM centres"
" WHERE InsCod='%ld'"
" ORDER BY ShortName",
Gbl.CurrentIns.Ins.InsCod);
NumCtrs = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get centres");
/***** Get centres *****/
for (NumCtr = 0;
NumCtr < NumCtrs;
NumCtr++)
{
/* Get next centre */
row = mysql_fetch_row (mysql_res);
/* Get centre code (row[0]) */
if ((CtrCod = Str_ConvertStrCodToLongCod (row[0])) < 0)
Lay_ShowErrorAndExit ("Wrong code of centre.");
/* Write option */
fprintf (Gbl.F.Out,"<option value=\"%ld\"",CtrCod);
if (Gbl.CurrentCtr.Ctr.CtrCod > 0 &&
CtrCod == Gbl.CurrentCtr.Ctr.CtrCod)
fprintf (Gbl.F.Out," selected=\"selected\"");
fprintf (Gbl.F.Out,">%s</option>",row[1]);
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
/***** End form *****/
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</select>");
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/*************************** List all the centres ****************************/
/*****************************************************************************/
#define Ctr_MAX_LENGTH_WWW_ON_SCREEN 10
static void Ctr_ListCentresForEdition (void)
{
2014-12-13 20:32:10 +01:00
extern const char *Txt_Centres_of_INSTITUTION_X;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Another_place;
extern const char *Txt_CENTRE_STATUS[Ctr_NUM_STATUS_TXT];
unsigned NumCtr;
struct Centre *Ctr;
struct Institution Ins;
unsigned NumIns;
unsigned NumPlc;
char WWW[Ctr_MAX_LENGTH_WWW_ON_SCREEN+1];
struct UsrData UsrDat;
bool ICanEdit;
Ctr_StatusTxt_t StatusTxt;
/***** Initialize structure with user's data *****/
Usr_UsrDataConstructor (&UsrDat);
/***** Write heading *****/
2014-12-13 20:32:10 +01:00
sprintf (Gbl.Title,Txt_Centres_of_INSTITUTION_X,
2015-01-14 00:32:23 +01:00
Gbl.CurrentIns.Ins.FullName);
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Gbl.Title);
2014-12-01 23:55:08 +01:00
Ctr_PutHeadCentresForEdition ();
/***** Write all the centres *****/
for (NumCtr = 0;
NumCtr < Gbl.Ctrs.Num;
NumCtr++)
{
Ctr = &Gbl.Ctrs.Lst[NumCtr];
/* Get data of institution of this centre */
Ins.InsCod = Ctr->InsCod;
2015-12-09 19:51:17 +01:00
Ins_GetDataOfInstitutionByCod (&Ins,Ins_GET_BASIC_DATA);
2014-12-01 23:55:08 +01:00
ICanEdit = Ctr_CheckIfICanEdit (Ctr);
/* Put icon to remove centre */
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"BM\">");
2015-07-22 19:20:30 +02:00
if (Ctr->NumDegs ||
2015-12-09 22:05:21 +01:00
Ctr->NumUsrsWhoClaimToBelongToCtr ||
Ctr->NumUsrs || // Centre has degrees or users ==> deletion forbidden
2014-12-01 23:55:08 +01:00
!ICanEdit)
2015-07-22 19:20:30 +02:00
Lay_PutIconRemovalNotAllowed ();
2014-12-01 23:55:08 +01:00
else
{
Act_FormStart (ActRemCtr);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-07-22 19:59:28 +02:00
Lay_PutIconRemove ();
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
fprintf (Gbl.F.Out,"</td>");
/* Centre code */
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"DAT CODE\">"
"%ld"
2014-12-22 14:08:19 +01:00
"</td>",
2014-12-01 23:55:08 +01:00
Ctr->CtrCod);
2015-01-14 00:32:23 +01:00
/* Centre logo */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td title=\"%s\" class=\"LEFT_MIDDLE\""
2015-09-28 18:28:29 +02:00
" style=\"width:25px;\">",
2014-12-01 23:55:08 +01:00
Ctr->FullName);
2015-12-13 13:53:00 +01:00
Log_DrawLogo (Sco_SCOPE_CTR,Ctr->CtrCod,Ctr->ShortName,20,NULL,true);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</td>");
/* Institution */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT LEFT_MIDDLE\">");
2015-04-07 21:44:24 +02:00
if (Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM) // I can select institution
2014-12-01 23:55:08 +01:00
{
Act_FormStart (ActChgCtrIns);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-09-28 18:28:29 +02:00
fprintf (Gbl.F.Out,"<select name=\"OthInsCod\" style=\"width:62px;\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\">",
2016-01-14 10:31:09 +01:00
Gbl.Form.Id);
2014-12-01 23:55:08 +01:00
for (NumIns = 0;
NumIns < Gbl.Inss.Num;
NumIns++)
fprintf (Gbl.F.Out,"<option value=\"%ld\"%s>%s</option>",
Gbl.Inss.Lst[NumIns].InsCod,
(Gbl.Inss.Lst[NumIns].InsCod == Ctr->InsCod) ? " selected=\"selected\"" :
"",
Gbl.Inss.Lst[NumIns].ShortName);
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</select>");
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
else
fprintf (Gbl.F.Out,"%s",Gbl.CurrentIns.Ins.ShortName);
fprintf (Gbl.F.Out,"</td>");
/* Place */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT LEFT_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (ICanEdit)
{
Act_FormStart (ActChgCtrPlc);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-09-28 18:28:29 +02:00
fprintf (Gbl.F.Out,"<select name=\"PlcCod\" style=\"width:62px;\""
2015-10-22 14:49:48 +02:00
" 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,"<option value=\"0\"");
if (Ctr->PlcCod == 0)
fprintf (Gbl.F.Out," selected=\"selected\"");
fprintf (Gbl.F.Out,">%s</option>",Txt_Another_place);
for (NumPlc = 0;
NumPlc < Gbl.Plcs.Num;
NumPlc++)
fprintf (Gbl.F.Out,"<option value=\"%ld\"%s>%s</option>",
Gbl.Plcs.Lst[NumPlc].PlcCod,
(Gbl.Plcs.Lst[NumPlc].PlcCod == Ctr->PlcCod) ? " selected=\"selected\"" :
"",
Gbl.Plcs.Lst[NumPlc].ShortName);
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</select>");
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
else
for (NumPlc = 0;
NumPlc < Gbl.Plcs.Num;
NumPlc++)
if (Gbl.Plcs.Lst[NumPlc].PlcCod == Ctr->PlcCod)
fprintf (Gbl.F.Out,"%s",Gbl.Plcs.Lst[NumPlc].ShortName);
fprintf (Gbl.F.Out,"</td>");
/* Centre short name */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT LEFT_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (ICanEdit)
{
Act_FormStart (ActRenCtrSho);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-10-22 14:49:48 +02:00
fprintf (Gbl.F.Out,"<input type=\"text\" name=\"ShortName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_SHORT_NAME\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\" />",
2016-01-14 10:31:09 +01:00
Ctr_MAX_LENGTH_CENTRE_SHORT_NAME,Ctr->ShortName,Gbl.Form.Id);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
}
else
fprintf (Gbl.F.Out,"%s",Ctr->ShortName);
fprintf (Gbl.F.Out,"</td>");
/* Centre full name */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT LEFT_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (ICanEdit)
{
Act_FormStart (ActRenCtrFul);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-10-22 14:49:48 +02:00
fprintf (Gbl.F.Out,"<input type=\"text\" name=\"FullName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_FULL_NAME\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\" />",
2016-01-14 10:31:09 +01:00
Ctr_MAX_LENGTH_CENTRE_FULL_NAME,Ctr->FullName,Gbl.Form.Id);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
}
else
fprintf (Gbl.F.Out,"%s",Ctr->FullName);
fprintf (Gbl.F.Out,"</td>");
/* Centre WWW */
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT LEFT_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (ICanEdit)
{
Act_FormStart (ActChgCtrWWW);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-10-22 14:49:48 +02:00
fprintf (Gbl.F.Out,"<input type=\"text\" name=\"WWW\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_WWW\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\" />",
2016-01-14 10:31:09 +01:00
Cns_MAX_LENGTH_WWW,Ctr->WWW,Gbl.Form.Id);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
else
{
strncpy (WWW,Ctr->WWW,Ctr_MAX_LENGTH_WWW_ON_SCREEN);
WWW[Ctr_MAX_LENGTH_WWW_ON_SCREEN] = '\0';
fprintf (Gbl.F.Out,"<a href=\"%s\" target=\"_blank\" class=\"DAT\" title=\"%s\">%s",
Ctr->WWW,Ctr->WWW,WWW);
if (strlen (Ctr->WWW) > Ctr_MAX_LENGTH_WWW_ON_SCREEN)
2016-01-15 11:41:45 +01:00
fprintf (Gbl.F.Out,"&hellip;");
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</a>");
}
fprintf (Gbl.F.Out,"</td>");
2015-12-14 16:44:14 +01:00
/* Number of users who claim to belong to this centre */
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
"%u"
"</td>",
Ctr->NumUsrsWhoClaimToBelongToCtr);
/* Number of degrees */
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
"%u"
"</td>",
Ctr->NumDegs);
/* Number of users in courses of this centre */
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
"%u"
"</td>",
Ctr->NumUsrs);
2014-12-01 23:55:08 +01:00
/* Centre status */
StatusTxt = Ctr_GetStatusTxtFromStatusBits (Ctr->Status);
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"DAT STATUS\">");
2015-04-07 21:44:24 +02:00
if (Gbl.Usrs.Me.LoggedRole >= Rol_INS_ADM &&
2014-12-01 23:55:08 +01:00
StatusTxt == Ctr_STATUS_PENDING)
{
Act_FormStart (ActChgCtrSta);
Ctr_PutParamOtherCtrCod (Ctr->CtrCod);
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<select name=\"Status\" class=\"INPUT_STATUS\""
2015-10-22 14:49:48 +02:00
" onchange=\"document.getElementById('%s').submit();\">"
2014-12-01 23:55:08 +01:00
"<option value=\"%u\" selected=\"selected\">%s</option>"
"<option value=\"%u\">%s</option>"
2015-03-13 00:16:02 +01:00
"</select>",
2016-01-14 10:31:09 +01:00
Gbl.Form.Id,
2014-12-01 23:55:08 +01:00
(unsigned) Ctr_GetStatusBitsFromStatusTxt (Ctr_STATUS_PENDING),
Txt_CENTRE_STATUS[Ctr_STATUS_PENDING],
(unsigned) Ctr_GetStatusBitsFromStatusTxt (Ctr_STATUS_ACTIVE),
Txt_CENTRE_STATUS[Ctr_STATUS_ACTIVE]);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
else
fprintf (Gbl.F.Out,"%s",Txt_CENTRE_STATUS[StatusTxt]);
fprintf (Gbl.F.Out,"</td>");
/* Centre requester */
UsrDat.UsrCod = Ctr->RequesterUsrCod;
Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&UsrDat);
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"INPUT_REQUESTER LEFT_TOP\">"
"<table class=\"INPUT_REQUESTER CELLS_PAD_2\">"
2014-12-01 23:55:08 +01:00
"<tr>");
2015-12-05 21:15:30 +01:00
Msg_WriteMsgAuthor (&UsrDat,100,6,"DAT",true,NULL);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</tr>"
"</table>"
"</td>"
"</tr>");
}
/***** End table *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
/***** Free memory used for user's data *****/
Usr_UsrDataDestructor (&UsrDat);
}
/*****************************************************************************/
/************** Check if I can edit, remove, etc. a centre *******************/
/*****************************************************************************/
static bool Ctr_CheckIfICanEdit (struct Centre *Ctr)
{
2015-04-07 21:44:24 +02:00
return (bool) (Gbl.Usrs.Me.LoggedRole >= Rol_INS_ADM || // I am an institution administrator or higher
2014-12-01 23:55:08 +01:00
((Ctr->Status & Ctr_STATUS_BIT_PENDING) != 0 && // Centre is not yet activated
Gbl.Usrs.Me.UsrDat.UsrCod == Ctr->RequesterUsrCod)); // I am the requester
}
/*****************************************************************************/
/******************* Set StatusTxt depending on status bits ******************/
/*****************************************************************************/
// Ctr_STATUS_UNKNOWN = 0 // Other
// Ctr_STATUS_ACTIVE = 1 // 00 (Status == 0)
// Ctr_STATUS_PENDING = 2 // 01 (Status == Ctr_STATUS_BIT_PENDING)
// Ctr_STATUS_REMOVED = 3 // 1- (Status & Ctr_STATUS_BIT_REMOVED)
static Ctr_StatusTxt_t Ctr_GetStatusTxtFromStatusBits (Ctr_Status_t Status)
{
if (Status == 0)
return Ctr_STATUS_ACTIVE;
if (Status == Ctr_STATUS_BIT_PENDING)
return Ctr_STATUS_PENDING;
if (Status & Ctr_STATUS_BIT_REMOVED)
return Ctr_STATUS_REMOVED;
return Ctr_STATUS_UNKNOWN;
}
/*****************************************************************************/
/******************* Set status bits depending on StatusTxt ******************/
/*****************************************************************************/
// Ctr_STATUS_UNKNOWN = 0 // Other
// Ctr_STATUS_ACTIVE = 1 // 00 (Status == 0)
// Ctr_STATUS_PENDING = 2 // 01 (Status == Ctr_STATUS_BIT_PENDING)
// Ctr_STATUS_REMOVED = 3 // 1- (Status & Ctr_STATUS_BIT_REMOVED)
static Ctr_Status_t Ctr_GetStatusBitsFromStatusTxt (Ctr_StatusTxt_t StatusTxt)
{
switch (StatusTxt)
{
case Ctr_STATUS_UNKNOWN:
case Ctr_STATUS_ACTIVE:
return (Ctr_Status_t) 0;
case Ctr_STATUS_PENDING:
return Ctr_STATUS_BIT_PENDING;
case Ctr_STATUS_REMOVED:
return Ctr_STATUS_BIT_REMOVED;
}
return (Ctr_Status_t) 0;
}
/*****************************************************************************/
/******************** Write parameter with code of centre ********************/
/*****************************************************************************/
void Ctr_PutParamCtrCod (long CtrCod)
{
2015-03-07 21:08:44 +01:00
Par_PutHiddenParamLong ("ctr",CtrCod);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/***************** Write parameter with code of other centre *****************/
/*****************************************************************************/
static void Ctr_PutParamOtherCtrCod (long CtrCod)
{
Par_PutHiddenParamLong ("OthCtrCod",CtrCod);
}
/*****************************************************************************/
/****************** Get parameter with code of other centre ******************/
/*****************************************************************************/
long Ctr_GetParamOtherCtrCod (void)
{
char LongStr[1+10+1];
/***** Get parameter with code of centre *****/
Par_GetParToText ("OthCtrCod",LongStr,1+10);
return Str_ConvertStrCodToLongCod (LongStr);
}
/*****************************************************************************/
/******************************* Remove a centre *****************************/
/*****************************************************************************/
void Ctr_RemoveCentre (void)
{
extern const char *Txt_To_remove_a_centre_you_must_first_remove_all_degrees_and_teachers_in_the_centre;
extern const char *Txt_Centre_X_removed;
char Query[512];
struct Centre Ctr;
2015-01-25 18:50:43 +01:00
char PathCtr[PATH_MAX+1];
2014-12-01 23:55:08 +01:00
/***** Get centre code *****/
if ((Ctr.CtrCod = Ctr_GetParamOtherCtrCod ()) < 0)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/***** Get data of the centre from database *****/
Ctr_GetDataOfCentreByCod (&Ctr);
/***** Check if this centre has teachers *****/
if (Ctr.NumDegs ||
2015-12-14 12:13:41 +01:00
Ctr.NumUsrsWhoClaimToBelongToCtr ||
Ctr.NumUsrs) // Centre has degrees or users ==> don't remove
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_WARNING,Txt_To_remove_a_centre_you_must_first_remove_all_degrees_and_teachers_in_the_centre);
else // Centre has no teachers ==> remove it
{
2015-01-20 02:00:42 +01:00
/***** Remove information related to files in centre *****/
2015-01-25 18:50:43 +01:00
Brw_RemoveCtrFilesFromDB (Ctr.CtrCod);
/***** Remove directories of the centre *****/
sprintf (PathCtr,"%s/%s/%02u/%u",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Ctr.CtrCod % 100),
(unsigned) Ctr.CtrCod);
Brw_RemoveTree (PathCtr);
2015-01-20 18:55:59 +01:00
2014-12-01 23:55:08 +01:00
/***** Remove centre *****/
2015-01-20 02:00:42 +01:00
sprintf (Query,"DELETE FROM centres WHERE CtrCod='%ld'",
Ctr.CtrCod);
2014-12-01 23:55:08 +01:00
DB_QueryDELETE (Query,"can not remove a centre");
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_Centre_X_removed,
Ctr.FullName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
/***** Show the form again *****/
Ctr_EditCentres ();
}
/*****************************************************************************/
/********************* Change the institution of a centre ********************/
/*****************************************************************************/
void Ctr_ChangeCentreIns (void)
{
2016-03-01 19:23:02 +01:00
extern const char *Txt_The_centre_X_has_been_moved_to_the_institution_Y;
2014-12-01 23:55:08 +01:00
struct Centre *Ctr;
2016-03-01 19:23:02 +01:00
struct Institution NewIns;
2014-12-01 23:55:08 +01:00
char Query[512];
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Get parameters from form *****/
/* Get the code of the centre */
if ((Ctr->CtrCod = Ctr_GetParamOtherCtrCod ()) < 0)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/* Get parameter with institution code */
2016-03-01 19:23:02 +01:00
NewIns.InsCod = Ins_GetParamOtherInsCod ();
/***** Get data of centre and new institution *****/
Ctr_GetDataOfCentreByCod (Ctr);
Ins_GetDataOfInstitutionByCod (&NewIns,Ins_GET_BASIC_DATA);
2014-12-01 23:55:08 +01:00
/***** Update institution in table of centres *****/
sprintf (Query,"UPDATE centres SET InsCod='%ld' WHERE CtrCod='%ld'",
2016-03-01 19:23:02 +01:00
NewIns.InsCod,Ctr->CtrCod);
2014-12-01 23:55:08 +01:00
DB_QueryUPDATE (Query,"can not update the institution of a centre");
2016-03-01 19:23:02 +01:00
Ctr->InsCod = NewIns.InsCod;
2014-12-01 23:55:08 +01:00
/***** Write message to show the change made *****/
2016-03-01 19:23:02 +01:00
sprintf (Gbl.Message,Txt_The_centre_X_has_been_moved_to_the_institution_Y,
Ctr->FullName,NewIns.FullName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
/***** Put button to go to centre changed *****/
Ctr_PutButtonToGoToCtr (Ctr);
2014-12-01 23:55:08 +01:00
/***** Show the form again *****/
Ctr_EditCentres ();
}
/*****************************************************************************/
/************************ Change the place of a centre ***********************/
/*****************************************************************************/
void Ctr_ChangeCentrePlace (void)
{
extern const char *Txt_The_place_of_the_centre_has_changed;
struct Centre *Ctr;
char Query[512];
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Get parameters from form *****/
/* Get centre code */
if ((Ctr->CtrCod = Ctr_GetParamOtherCtrCod ()) == -1L)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/* Get parameter with centre code */
Ctr->PlcCod = Plc_GetParamPlcCod ();
/***** Update place in table of centres *****/
sprintf (Query,"UPDATE centres SET PlcCod='%ld' WHERE CtrCod='%ld'",
Ctr->PlcCod,Ctr->CtrCod);
DB_QueryUPDATE (Query,"can not update the place of a centre");
/***** Write message to show the change made *****/
Lay_ShowAlert (Lay_SUCCESS,Txt_The_place_of_the_centre_has_changed);
2016-03-01 19:23:02 +01:00
/***** Put button to go to centre changed *****/
Ctr_PutButtonToGoToCtr (Ctr);
2014-12-01 23:55:08 +01:00
/***** Show the form again *****/
Ctr_EditCentres ();
}
/*****************************************************************************/
/********************* Change the short name of a centre *********************/
/*****************************************************************************/
void Ctr_RenameCentreShort (void)
{
2016-03-01 19:23:02 +01:00
struct Centre *Ctr;
Ctr = &Gbl.Ctrs.EditingCtr;
if (Ctr_RenameCentre (Ctr,Cns_SHORT_NAME))
if (Ctr->CtrCod == Gbl.CurrentCtr.Ctr.CtrCod) // If renaming current centre...
strcpy (Gbl.CurrentCtr.Ctr.ShortName,Ctr->ShortName); // Overwrite current centre name in order to show correctly in page title and heading
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Change the full name of a centre **********************/
/*****************************************************************************/
void Ctr_RenameCentreFull (void)
{
2016-03-01 19:23:02 +01:00
struct Centre *Ctr;
Ctr = &Gbl.Ctrs.EditingCtr;
if (Ctr_RenameCentre (Ctr,Cns_FULL_NAME))
if (Ctr->CtrCod == Gbl.CurrentCtr.Ctr.CtrCod) // If renaming current centre...
strcpy (Gbl.CurrentCtr.Ctr.FullName,Ctr->FullName); // Overwrite current centre name in order to show correctly in page title and heading
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/************************ Change the name of a degree ************************/
/*****************************************************************************/
2016-03-01 19:23:02 +01:00
// Returns true if the degree is renamed
// Returns false if the degree is not renamed
2014-12-01 23:55:08 +01:00
2016-03-01 19:23:02 +01:00
static bool Ctr_RenameCentre (struct Centre *Ctr,Cns_ShortOrFullName_t ShortOrFullName)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_You_can_not_leave_the_name_of_the_centre_X_empty;
extern const char *Txt_The_centre_X_already_exists;
extern const char *Txt_The_centre_X_has_been_renamed_as_Y;
extern const char *Txt_The_name_of_the_centre_X_has_not_changed;
char Query[512];
const char *ParamName = NULL; // Initialized to avoid warning
const char *FieldName = NULL; // Initialized to avoid warning
unsigned MaxLength = 0; // Initialized to avoid warning
char *CurrentCtrName = NULL; // Initialized to avoid warning
char NewCtrName[Ctr_MAX_LENGTH_CENTRE_FULL_NAME+1];
2016-03-01 19:23:02 +01:00
bool CentreHasBeenRenamed = false;
2014-12-01 23:55:08 +01:00
switch (ShortOrFullName)
{
case Cns_SHORT_NAME:
ParamName = "ShortName";
FieldName = "ShortName";
MaxLength = Ctr_MAX_LENGTH_CENTRE_SHORT_NAME;
CurrentCtrName = Ctr->ShortName;
break;
case Cns_FULL_NAME:
ParamName = "FullName";
FieldName = "FullName";
MaxLength = Ctr_MAX_LENGTH_CENTRE_FULL_NAME;
CurrentCtrName = Ctr->FullName;
break;
}
/***** Get parameters from form *****/
/* Get the code of the centre */
if ((Ctr->CtrCod = Ctr_GetParamOtherCtrCod ()) < 0)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/* Get the new name for the centre */
Par_GetParToText (ParamName,NewCtrName,MaxLength);
/***** Get from the database the old names of the centre *****/
Ctr_GetDataOfCentreByCod (Ctr);
/***** Check if new name is empty *****/
if (!NewCtrName[0])
{
sprintf (Gbl.Message,Txt_You_can_not_leave_the_name_of_the_centre_X_empty,
CurrentCtrName);
2016-03-01 19:23:02 +01:00
Gbl.Error = true;
2014-12-01 23:55:08 +01:00
}
else
{
/***** Check if old and new names are the same (this happens when user press enter with no changes in the form) *****/
if (strcmp (CurrentCtrName,NewCtrName)) // Different names
{
/***** If degree was in database... *****/
2015-01-13 14:56:14 +01:00
if (Ctr_CheckIfCentreNameExistsInCurrentIns (ParamName,NewCtrName,Ctr->CtrCod))
2014-12-01 23:55:08 +01:00
{
sprintf (Gbl.Message,Txt_The_centre_X_already_exists,
NewCtrName);
2016-03-01 19:23:02 +01:00
Gbl.Error = true;
2014-12-01 23:55:08 +01:00
}
else
{
/* Update the table changing old name by new name */
sprintf (Query,"UPDATE centres SET %s='%s' WHERE CtrCod='%ld'",
FieldName,NewCtrName,Ctr->CtrCod);
DB_QueryUPDATE (Query,"can not update the name of a centre");
2016-03-01 19:23:02 +01:00
/* Write message to show the change made */
2014-12-01 23:55:08 +01:00
sprintf (Gbl.Message,Txt_The_centre_X_has_been_renamed_as_Y,
CurrentCtrName,NewCtrName);
2016-03-01 19:23:02 +01:00
/* Change current degree name in order to display it properly */
strncpy (CurrentCtrName,NewCtrName,MaxLength);
CurrentCtrName[MaxLength] = '\0';
CentreHasBeenRenamed = true;
2014-12-01 23:55:08 +01:00
}
}
else // The same name
sprintf (Gbl.Message,Txt_The_name_of_the_centre_X_has_not_changed,
CurrentCtrName);
}
2016-03-01 19:23:02 +01:00
return CentreHasBeenRenamed;
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Check if the name of centre exists ********************/
/*****************************************************************************/
2015-01-13 14:56:14 +01:00
static bool Ctr_CheckIfCentreNameExistsInCurrentIns (const char *FieldName,const char *Name,long CtrCod)
2014-12-01 23:55:08 +01:00
{
char Query[512];
/***** Get number of centres with a name from database *****/
sprintf (Query,"SELECT COUNT(*) FROM centres"
2015-01-13 14:56:14 +01:00
" WHERE InsCod='%ld' AND %s='%s' AND CtrCod<>'%ld'",
Gbl.CurrentIns.Ins.InsCod,FieldName,Name,CtrCod);
2014-12-01 23:55:08 +01:00
return (DB_QueryCOUNT (Query,"can not check if the name of a centre already existed") != 0);
}
/*****************************************************************************/
/************************* Change the URL of a centre ************************/
/*****************************************************************************/
void Ctr_ChangeCtrWWW (void)
{
extern const char *Txt_The_new_web_address_is_X;
extern const char *Txt_You_can_not_leave_the_web_address_empty;
struct Centre *Ctr;
char Query[256+Cns_MAX_LENGTH_WWW];
char NewWWW[Cns_MAX_LENGTH_WWW+1];
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Get parameters from form *****/
/* Get the code of the centre */
if ((Ctr->CtrCod = Ctr_GetParamOtherCtrCod ()) < 0)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/* Get the new WWW for the centre */
Par_GetParToText ("WWW",NewWWW,Cns_MAX_LENGTH_WWW);
/***** Check if new WWW is empty *****/
if (NewWWW[0])
{
/* Update the table changing old WWW by new WWW */
sprintf (Query,"UPDATE centres SET WWW='%s' WHERE CtrCod='%ld'",
NewWWW,Ctr->CtrCod);
DB_QueryUPDATE (Query,"can not update the web of a centre");
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_The_new_web_address_is_X,
NewWWW);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
2016-03-01 19:23:02 +01:00
/***** Put button to go to centre changed *****/
Ctr_PutButtonToGoToCtr (Ctr);
2014-12-01 23:55:08 +01:00
}
else
{
sprintf (Gbl.Message,"%s",Txt_You_can_not_leave_the_web_address_empty);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
/***** Show the form again *****/
strcpy (Ctr->WWW,NewWWW);
Ctr_EditCentres ();
}
/*****************************************************************************/
/*********************** Change the status of a centre ***********************/
/*****************************************************************************/
void Ctr_ChangeCtrStatus (void)
{
extern const char *Txt_The_status_of_the_centre_X_has_changed;
struct Centre *Ctr;
char Query[256];
char UnsignedNum[10+1];
Ctr_Status_t Status;
Ctr_StatusTxt_t StatusTxt;
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Get parameters from form *****/
/* Get centre code */
if ((Ctr->CtrCod = Ctr_GetParamOtherCtrCod ()) == -1L)
Lay_ShowErrorAndExit ("Code of centre is missing.");
/* Get parameter with status */
Par_GetParToText ("Status",UnsignedNum,1);
if (sscanf (UnsignedNum,"%u",&Status) != 1)
Lay_ShowErrorAndExit ("Wrong status.");
StatusTxt = Ctr_GetStatusTxtFromStatusBits (Status);
Status = Ctr_GetStatusBitsFromStatusTxt (StatusTxt); // New status
/***** Get data of centre *****/
Ctr_GetDataOfCentreByCod (Ctr);
/***** Update status in table of centres *****/
sprintf (Query,"UPDATE centres SET Status='%u' WHERE CtrCod='%ld'",
(unsigned) Status,Ctr->CtrCod);
DB_QueryUPDATE (Query,"can not update the status of a centre");
Ctr->Status = Status;
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_The_status_of_the_centre_X_has_changed,
Ctr->ShortName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
2016-03-01 19:23:02 +01:00
/***** Put button to go to centre changed *****/
Ctr_PutButtonToGoToCtr (Ctr);
2014-12-01 23:55:08 +01:00
/***** Show the form again *****/
Ctr_EditCentres ();
}
2016-03-01 19:23:02 +01:00
/*****************************************************************************/
/************* Show message of success after changing a centre ***************/
/*****************************************************************************/
void Ctr_ContEditAfterChgCtr (void)
{
if (Gbl.Error)
/***** Write error message *****/
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
else
{
/***** Write success message showing the change made *****/
Lay_ShowAlert (Lay_INFO,Gbl.Message);
/***** Put button to go to centre changed *****/
if (Gbl.Ctrs.EditingCtr.CtrCod != Gbl.CurrentCtr.Ctr.CtrCod) // If changing other centre different than the current one...
Ctr_PutButtonToGoToCtr (&Gbl.Ctrs.EditingCtr);
}
/***** Show the form again *****/
Ctr_EditCentres ();
}
/*****************************************************************************/
/************************ Put button to go to centre *************************/
/*****************************************************************************/
static void Ctr_PutButtonToGoToCtr (struct Centre *Ctr)
{
extern const char *Txt_Go_to_X;
Act_FormStart (ActSeeCtrInf);
Ctr_PutParamCtrCod (Ctr->CtrCod);
sprintf (Gbl.Title,Txt_Go_to_X,Ctr->ShortName);
Lay_PutConfirmButton (Gbl.Title);
Act_FormEnd ();
}
2015-01-14 00:32:23 +01:00
/*****************************************************************************/
/*********** Show a form for sending a logo of the current centre ************/
/*****************************************************************************/
void Ctr_RequestLogo (void)
{
2015-02-01 20:17:24 +01:00
Log_RequestLogo (Sco_SCOPE_CTR);
2015-01-14 00:32:23 +01:00
}
/*****************************************************************************/
2015-01-17 13:31:25 +01:00
/***************** Receive the logo of the current centre ********************/
2015-01-14 00:32:23 +01:00
/*****************************************************************************/
void Ctr_ReceiveLogo (void)
{
2015-02-01 20:17:24 +01:00
Log_ReceiveLogo (Sco_SCOPE_CTR);
2015-01-14 00:32:23 +01:00
}
2015-02-03 18:43:55 +01:00
/*****************************************************************************/
/****************** Remove the logo of the current centre ********************/
/*****************************************************************************/
void Ctr_RemoveLogo (void)
{
Log_RemoveLogo (Sco_SCOPE_CTR);
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/******** Put a link to the action used to request photo of centre ***********/
/*****************************************************************************/
static void Ctr_PutFormToChangeCtrPhoto (bool PhotoExists)
{
extern const char *Txt_Change_photo;
extern const char *Txt_Upload_photo;
/***** Link for changing / uploading the photo *****/
2015-12-13 18:32:37 +01:00
Lay_PutContextualLink (ActReqCtrPho,NULL,
2015-12-13 19:02:06 +01:00
"photo64x64.gif",
PhotoExists ? Txt_Change_photo :
Txt_Upload_photo,
PhotoExists ? Txt_Change_photo :
Txt_Upload_photo);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/*********** Show a form for sending a photo of the current centre ***********/
/*****************************************************************************/
2015-01-14 00:32:23 +01:00
void Ctr_RequestPhoto (void)
2014-12-01 23:55:08 +01:00
{
2015-07-27 21:25:45 +02:00
extern const char *The_ClassForm[The_NUM_THEMES];
2015-04-12 01:40:51 +02:00
extern const char *Txt_Photo;
2014-12-01 23:55:08 +01:00
extern const char *Txt_You_can_send_a_file_with_an_image_in_jpg_format_and_size_X_Y;
extern const char *Txt_File_with_the_photo;
extern const char *Txt_Upload_photo;
2015-04-12 01:40:51 +02:00
/***** Start form to upload photo *****/
Act_FormStart (ActRecCtrPho);
/***** Start frame *****/
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Txt_Photo);
2015-04-12 01:40:51 +02:00
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td class=\"CENTER_MIDDLE\">");
2015-04-12 01:40:51 +02:00
2014-12-01 23:55:08 +01:00
/***** Write help message *****/
sprintf (Gbl.Message,Txt_You_can_send_a_file_with_an_image_in_jpg_format_and_size_X_Y,
Ctr_PHOTO_REAL_WIDTH,
Ctr_PHOTO_REAL_HEIGHT);
Lay_ShowAlert (Lay_INFO,Gbl.Message);
2015-04-12 01:40:51 +02:00
/***** Upload photo *****/
fprintf (Gbl.F.Out,"<label class=\"%s\">"
2015-04-12 18:01:06 +02:00
"%s:&nbsp;"
2015-04-12 01:40:51 +02:00
"</label>"
2015-10-23 01:31:08 +02:00
"<input type=\"file\" name=\"%s\""
" size=\"40\" maxlength=\"100\" value=\"\" />"
2014-12-01 23:55:08 +01:00
"</td>"
2015-04-12 01:40:51 +02:00
"</tr>",
2015-07-27 21:25:45 +02:00
The_ClassForm[Gbl.Prefs.Theme],
2014-12-01 23:55:08 +01:00
Txt_File_with_the_photo,
2015-03-24 17:47:26 +01:00
Fil_NAME_OF_PARAM_FILENAME_ORG);
2015-04-12 01:40:51 +02:00
/***** Button to create announcement and end frame *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTableWithButton (Lay_CREATE_BUTTON,Txt_Upload_photo);
2015-04-12 01:40:51 +02:00
/***** End form *****/
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/****************** Receive a photo of the current centre ********************/
/*****************************************************************************/
void Ctr_ReceivePhoto (void)
{
2015-01-14 00:32:23 +01:00
extern const char *Txt_The_file_is_not_X;
2014-12-01 23:55:08 +01:00
char Path[PATH_MAX+1];
char FileNamePhotoSrc[PATH_MAX+1];
char MIMEType[Brw_MAX_BYTES_MIME_TYPE+1];
char FileNamePhoto[PATH_MAX+1]; // Full name (including path and .jpg) of the destination file
bool WrongType = false;
/***** Creates directories if not exist *****/
sprintf (Path,"%s/%s",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR);
Fil_CreateDirIfNotExists (Path);
sprintf (Path,"%s/%s/%02u",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Gbl.CurrentCtr.Ctr.CtrCod % 100));
Fil_CreateDirIfNotExists (Path);
sprintf (Path,"%s/%s/%02u/%u",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Gbl.CurrentCtr.Ctr.CtrCod % 100),
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod);
Fil_CreateDirIfNotExists (Path);
/***** Copy in disk the file received from stdin (really from Gbl.F.Tmp) *****/
Fil_StartReceptionOfFile (FileNamePhotoSrc,MIMEType);
/* Check if the file type is image/jpeg or image/pjpeg or application/octet-stream */
if (strcmp (MIMEType,"image/jpeg"))
if (strcmp (MIMEType,"image/pjpeg"))
if (strcmp (MIMEType,"application/octet-stream"))
if (strcmp (MIMEType,"application/octetstream"))
if (strcmp (MIMEType,"application/octet"))
WrongType = true;
if (WrongType)
{
2015-01-14 00:32:23 +01:00
sprintf (Gbl.Message,Txt_The_file_is_not_X,"jpg");
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
2014-12-01 23:55:08 +01:00
return;
}
/* End the reception of photo in a temporary file */
sprintf (FileNamePhoto,"%s/%s/%02u/%u/%u.jpg",
Cfg_PATH_SWAD_PUBLIC,Cfg_FOLDER_CTR,
(unsigned) (Gbl.CurrentCtr.Ctr.CtrCod % 100),
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod,
(unsigned) Gbl.CurrentCtr.Ctr.CtrCod);
if (!Fil_EndReceptionOfFile (FileNamePhoto))
{
2015-01-14 00:32:23 +01:00
Lay_ShowAlert (Lay_WARNING,"Error uploading file.");
2014-12-01 23:55:08 +01:00
return;
}
/***** Show the centre information again *****/
Ctr_ShowConfiguration ();
}
/*****************************************************************************/
/**************** Change the attribution of a centre photo *******************/
/*****************************************************************************/
void Ctr_ChangeCtrPhotoAttribution (void)
{
char Query[256+Ctr_MAX_LENGTH_PHOTO_ATTRIBUTION];
char NewPhotoAttribution[Ctr_MAX_LENGTH_PHOTO_ATTRIBUTION+1];
/***** Get parameters from form *****/
/* Get the new photo attribution for the centre */
Par_GetParToText ("Attribution",NewPhotoAttribution,Ctr_MAX_LENGTH_PHOTO_ATTRIBUTION);
/***** Update the table changing old attribution by new attribution *****/
sprintf (Query,"UPDATE centres SET PhotoAttribution='%s'"
" WHERE CtrCod='%ld'",
NewPhotoAttribution,Gbl.CurrentCtr.Ctr.CtrCod);
DB_QueryUPDATE (Query,"can not update the photo attribution of the current centre");
/***** Show the centre information again *****/
Ctr_ShowConfiguration ();
}
/*****************************************************************************/
/********************* Put a form to create a new centre *********************/
/*****************************************************************************/
static void Ctr_PutFormToCreateCentre (void)
{
2014-12-13 20:32:10 +01:00
extern const char *Txt_New_centre_of_INSTITUTION_X;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Another_place;
extern const char *Txt_CENTRE_STATUS[Ctr_NUM_STATUS_TXT];
extern const char *Txt_Create_centre;
struct Centre *Ctr;
unsigned NumPlc;
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Start form *****/
2015-04-07 21:44:24 +02:00
if (Gbl.Usrs.Me.LoggedRole >= Rol_INS_ADM)
2014-12-01 23:55:08 +01:00
Act_FormStart (ActNewCtr);
2015-04-07 21:44:24 +02:00
else if (Gbl.Usrs.Me.MaxRole >= Rol__GUEST_)
2014-12-01 23:55:08 +01:00
Act_FormStart (ActReqCtr);
else
Lay_ShowErrorAndExit ("You can not edit centres.");
/***** Start of frame *****/
2014-12-13 20:32:10 +01:00
sprintf (Gbl.Title,Txt_New_centre_of_INSTITUTION_X,
Gbl.CurrentIns.Ins.ShortName);
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Gbl.Title);
2014-12-01 23:55:08 +01:00
/***** Write heading *****/
Ctr_PutHeadCentresForEdition ();
/***** Put disabled icon to remove centre *****/
fprintf (Gbl.F.Out,"<tr>"
2015-07-22 19:20:30 +02:00
"<td class=\"BM\">");
Lay_PutIconRemovalNotAllowed ();
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
/***** Centre code *****/
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"CODE\"></td>");
2014-12-01 23:55:08 +01:00
/***** Centre logo *****/
2015-09-28 18:28:29 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\" style=\"width:25px;\">");
2015-12-13 13:53:00 +01:00
Log_DrawLogo (Sco_SCOPE_CTR,-1L,"",20,NULL,true);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</td>");
/***** Institution *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
2015-09-28 18:28:29 +02:00
"<select name=\"OthInsCod\" style=\"width:62px;\""
2015-09-06 19:51:06 +02:00
" disabled=\"disabled\">"
2014-12-01 23:55:08 +01:00
"<option value=\"%ld\" selected=\"selected\">"
"%s"
"</option>"
"</select>"
"</td>",
Gbl.CurrentIns.Ins.InsCod,
Gbl.CurrentIns.Ins.ShortName);
/***** Place *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
2015-09-28 18:28:29 +02:00
"<select name=\"PlcCod\" style=\"width:62px;\">"
2014-12-01 23:55:08 +01:00
"<option value=\"0\"");
if (Ctr->PlcCod == 0)
fprintf (Gbl.F.Out," selected=\"selected\"");
fprintf (Gbl.F.Out,">%s</option>",Txt_Another_place);
for (NumPlc = 0;
NumPlc < Gbl.Plcs.Num;
NumPlc++)
fprintf (Gbl.F.Out,"<option value=\"%ld\"%s>%s</option>",
Gbl.Plcs.Lst[NumPlc].PlcCod,
(Gbl.Plcs.Lst[NumPlc].PlcCod == Ctr->PlcCod) ? " selected=\"selected\"" :
"",
Gbl.Plcs.Lst[NumPlc].ShortName);
fprintf (Gbl.F.Out,"</select>"
"</td>");
/***** Centre short name *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
2015-10-23 01:31:08 +02:00
"<input type=\"text\" name=\"ShortName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_SHORT_NAME\" />"
2014-12-01 23:55:08 +01:00
"</td>",
Ctr_MAX_LENGTH_CENTRE_SHORT_NAME,Ctr->ShortName);
/***** Centre full name *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
2015-10-23 01:31:08 +02:00
"<input type=\"text\" name=\"FullName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_FULL_NAME\" />"
2014-12-01 23:55:08 +01:00
"</td>",
Ctr_MAX_LENGTH_CENTRE_FULL_NAME,Ctr->FullName);
/***** Centre WWW *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
2015-10-23 01:31:08 +02:00
"<input type=\"text\" name=\"WWW\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_WWW\" />"
2014-12-01 23:55:08 +01:00
"</td>",
Cns_MAX_LENGTH_WWW,Ctr->WWW);
2015-12-14 16:44:14 +01:00
/***** Number of users who claim to belong to this centre *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"0"
"</td>");
2014-12-01 23:55:08 +01:00
/***** Number of degrees *****/
2015-07-28 10:15:44 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
2014-12-22 14:08:19 +01:00
"0"
"</td>");
2014-12-01 23:55:08 +01:00
2015-12-14 16:44:14 +01:00
/***** Number of users in courses of this centre *****/
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
"0"
"</td>");
2014-12-01 23:55:08 +01:00
/***** Centre status *****/
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"DAT STATUS\">"
2014-12-22 14:08:19 +01:00
"%s"
"</td>",
2014-12-01 23:55:08 +01:00
Txt_CENTRE_STATUS[Ctr_STATUS_PENDING]);
/***** Centre requester *****/
2015-12-05 21:15:30 +01:00
fprintf (Gbl.F.Out,"<td class=\"INPUT_REQUESTER LEFT_TOP\">"
"<table class=\"INPUT_REQUESTER CELLS_PAD_2\">"
2014-12-01 23:55:08 +01:00
"<tr>");
2015-12-05 21:15:30 +01:00
Msg_WriteMsgAuthor (&Gbl.Usrs.Me.UsrDat,100,6,"DAT",true,NULL);
2014-12-01 23:55:08 +01:00
fprintf (Gbl.F.Out,"</tr>"
"</table>"
"</td>"
"</tr>");
2015-12-05 21:15:30 +01:00
/***** Send button and end frame *****/
Lay_EndRoundFrameTableWithButton (Lay_CREATE_BUTTON,Txt_Create_centre);
2014-12-01 23:55:08 +01:00
/***** End of form *****/
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************** Write header with fields of a degree *******************/
/*****************************************************************************/
static void Ctr_PutHeadCentresForSeeing (bool OrderSelectable)
{
extern const char *Txt_CENTRES_HELP_ORDER[2];
extern const char *Txt_CENTRES_ORDER[2];
2015-12-09 22:05:21 +01:00
extern const char *Txt_Place;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Degrees_ABBREVIATION;
2015-12-09 22:05:21 +01:00
extern const char *Txt_Courses_ABBREVIATION;
extern const char *Txt_Teachers_ABBREVIATION;
extern const char *Txt_Students_ABBREVIATION;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Status;
tCtrsOrderType Order;
fprintf (Gbl.F.Out,"<tr>"
2015-11-19 16:09:51 +01:00
"<th></th>");
2014-12-01 23:55:08 +01:00
for (Order = Ctr_ORDER_BY_CENTRE;
Order <= Ctr_ORDER_BY_NUM_TCHS;
Order++)
{
2015-12-09 22:05:21 +01:00
fprintf (Gbl.F.Out,"<th class=\"%s\">",
Order == Ctr_ORDER_BY_CENTRE ? "LEFT_MIDDLE" :
"RIGHT_MIDDLE");
2014-12-01 23:55:08 +01:00
if (OrderSelectable)
{
Act_FormStart (ActSeeCtr);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_CENTRES_HELP_ORDER[Order],"TIT_TBL");
if (Order == Gbl.Ctrs.SelectedOrderType)
fprintf (Gbl.F.Out,"<u>");
}
fprintf (Gbl.F.Out,"%s",Txt_CENTRES_ORDER[Order]);
if (OrderSelectable)
{
if (Order == Gbl.Ctrs.SelectedOrderType)
fprintf (Gbl.F.Out,"</u>");
2015-03-13 00:16:02 +01:00
fprintf (Gbl.F.Out,"</a>");
Act_FormEnd ();
2014-12-01 23:55:08 +01:00
}
fprintf (Gbl.F.Out,"</th>");
}
2015-12-09 22:05:21 +01:00
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2016-02-02 19:35:35 +01:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2016-02-02 19:35:35 +01:00
"<th class=\"RIGHT_MIDDLE\">"
2015-12-09 22:05:21 +01:00
"%s+<br />%s"
"</th>"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
2015-11-19 16:09:51 +01:00
Txt_Place,
2015-12-09 22:05:21 +01:00
Txt_Degrees_ABBREVIATION,
Txt_Courses_ABBREVIATION,
2015-12-14 16:44:14 +01:00
Txt_Teachers_ABBREVIATION,Txt_Students_ABBREVIATION,
2014-12-01 23:55:08 +01:00
Txt_Status);
}
/*****************************************************************************/
/******************** Write header with fields of a degree *******************/
/*****************************************************************************/
static void Ctr_PutHeadCentresForEdition (void)
{
extern const char *Txt_Code;
extern const char *Txt_Institution;
extern const char *Txt_Place;
2015-02-04 20:03:23 +01:00
extern const char *Txt_Short_name;
extern const char *Txt_Full_name;
2014-12-01 23:55:08 +01:00
extern const char *Txt_WWW;
2015-12-14 16:44:14 +01:00
extern const char *Txt_Users;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Degrees_ABBREVIATION;
2015-12-14 16:44:14 +01:00
extern const char *Txt_Teachers_ABBREVIATION;
extern const char *Txt_Students_ABBREVIATION;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Status;
extern const char *Txt_Requester;
fprintf (Gbl.F.Out,"<tr>"
2014-12-26 22:11:03 +01:00
"<th></th>"
2015-09-06 20:02:14 +02:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-12-05 21:15:30 +01:00
"<th></th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-12-14 16:44:14 +01:00
"<th class=\"RIGHT_MIDDLE\">"
"%s+<br />%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-26 22:11:03 +01:00
"%s"
"</th>"
2014-12-01 23:55:08 +01:00
"</tr>",
Txt_Code,
Txt_Institution,
Txt_Place,
2015-02-04 20:03:23 +01:00
Txt_Short_name,
Txt_Full_name,
2014-12-01 23:55:08 +01:00
Txt_WWW,
2015-12-14 16:44:14 +01:00
Txt_Users,
2014-12-01 23:55:08 +01:00
Txt_Degrees_ABBREVIATION,
2015-12-14 16:44:14 +01:00
Txt_Teachers_ABBREVIATION,Txt_Students_ABBREVIATION,
2014-12-01 23:55:08 +01:00
Txt_Status,
Txt_Requester);
}
/*****************************************************************************/
/****************** Receive form to request a new centre *********************/
/*****************************************************************************/
void Ctr_RecFormReqCtr (void)
{
Ctr_RecFormRequestOrCreateCtr ((unsigned) Ctr_STATUS_BIT_PENDING);
}
/*****************************************************************************/
/******************* Receive form to create a new centre *********************/
/*****************************************************************************/
void Ctr_RecFormNewCtr (void)
{
Ctr_RecFormRequestOrCreateCtr (0);
}
/*****************************************************************************/
/************* Receive form to request or create a new centre ****************/
/*****************************************************************************/
static void Ctr_RecFormRequestOrCreateCtr (unsigned Status)
{
extern const char *Txt_The_centre_X_already_exists;
extern const char *Txt_You_must_specify_the_web_address_of_the_new_centre;
extern const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_centre;
struct Centre *Ctr;
Ctr = &Gbl.Ctrs.EditingCtr;
/***** Get parameters from form *****/
/* Set centre institution */
Ctr->InsCod = Gbl.CurrentIns.Ins.InsCod;
/* Get place */
if ((Ctr->PlcCod = Plc_GetParamPlcCod ()) < 0) // 0 is reserved for "other place"
Lay_ShowAlert (Lay_ERROR,"Wrong place.");
/* Get centre short name */
Par_GetParToText ("ShortName",Ctr->ShortName,Ctr_MAX_LENGTH_CENTRE_SHORT_NAME);
/* Get centre full name */
Par_GetParToText ("FullName",Ctr->FullName,Ctr_MAX_LENGTH_CENTRE_FULL_NAME);
/* Get centre WWW */
Par_GetParToText ("WWW",Ctr->WWW,Cns_MAX_LENGTH_WWW);
if (Ctr->ShortName[0] && Ctr->FullName[0]) // If there's a centre name
{
if (Ctr->WWW[0])
{
/***** If name of centre was in database... *****/
2015-01-13 14:56:14 +01:00
if (Ctr_CheckIfCentreNameExistsInCurrentIns ("ShortName",Ctr->ShortName,-1L))
2014-12-01 23:55:08 +01:00
{
sprintf (Gbl.Message,Txt_The_centre_X_already_exists,
Ctr->ShortName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
2015-01-13 14:56:14 +01:00
else if (Ctr_CheckIfCentreNameExistsInCurrentIns ("FullName",Ctr->FullName,-1L))
2014-12-01 23:55:08 +01:00
{
sprintf (Gbl.Message,Txt_The_centre_X_already_exists,
Ctr->FullName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
else // Add new centre to database
Ctr_CreateCentre (Ctr,Status);
}
2015-01-14 00:32:23 +01:00
else // If there is not a web
2014-12-01 23:55:08 +01:00
{
sprintf (Gbl.Message,"%s",Txt_You_must_specify_the_web_address_of_the_new_centre);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
}
else // If there is not a centre name
{
sprintf (Gbl.Message,"%s",Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_centre);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
/***** Show the form again *****/
Ctr_EditCentres ();
}
/*****************************************************************************/
/***************************** Create a new centre ***************************/
/*****************************************************************************/
static void Ctr_CreateCentre (struct Centre *Ctr,unsigned Status)
{
extern const char *Txt_Created_new_centre_X;
char Query[1024];
/***** Create a new centre *****/
sprintf (Query,"INSERT INTO centres (InsCod,PlcCod,Status,RequesterUsrCod,"
2015-01-14 00:32:23 +01:00
"ShortName,FullName,WWW)"
2014-12-01 23:55:08 +01:00
" VALUES ('%ld','%ld','%u','%ld',"
2015-01-14 00:32:23 +01:00
"'%s','%s','%s')",
2014-12-01 23:55:08 +01:00
Ctr->InsCod,Ctr->PlcCod,
Status,
Gbl.Usrs.Me.UsrDat.UsrCod,
Ctr->ShortName,Ctr->FullName,Ctr->WWW);
2016-03-01 19:23:02 +01:00
Ctr->CtrCod = DB_QueryINSERTandReturnCode (Query,"can not create a new centre");
2014-12-01 23:55:08 +01:00
/***** Write success message *****/
sprintf (Gbl.Message,Txt_Created_new_centre_X,
Ctr->FullName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
2016-03-01 19:23:02 +01:00
/***** Put button to go to centre created *****/
Ctr_PutButtonToGoToCtr (Ctr);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/************************** Get number of centres ****************************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsTotal (void)
{
char Query[128];
/***** Get total number of centres from database *****/
sprintf (Query,"SELECT COUNT(*) FROM centres");
return (unsigned) DB_QueryCOUNT (Query,"can not get total number of centres");
}
/*****************************************************************************/
/******************* Get number of centres in a country **********************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsInCty (long CtyCod)
{
char Query[256];
/***** Get number of centres of a country from database *****/
sprintf (Query,"SELECT COUNT(*) FROM institutions,centres"
" WHERE institutions.CtyCod='%ld'"
" AND institutions.InsCod=centres.InsCod",
CtyCod);
return (unsigned) DB_QueryCOUNT (Query,"can not get number of centres in a country");
}
/*****************************************************************************/
/**************** Get number of centres in an institution ********************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsInIns (long InsCod)
{
char Query[128];
2015-09-09 23:44:58 +02:00
2014-12-01 23:55:08 +01:00
/***** Get number of centres of an institution from database *****/
sprintf (Query,"SELECT COUNT(*) FROM centres"
" WHERE InsCod='%ld'",
InsCod);
return (unsigned) DB_QueryCOUNT (Query,"can not get number of centres in an institution");
}
/*****************************************************************************/
2015-11-15 23:07:19 +01:00
/******* Get number of centres (of the current institution) in a place *******/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
unsigned Ctr_GetNumCtrsInPlc (long PlcCod)
{
char Query[256];
2015-11-15 23:07:19 +01:00
/***** Get number of centres (of the current institution) in a place *****/
2014-12-01 23:55:08 +01:00
sprintf (Query,"SELECT COUNT(*) FROM centres"
2015-11-15 23:07:19 +01:00
" WHERE InsCod='%ld' AND PlcCod='%ld'",
Gbl.CurrentIns.Ins.InsCod,PlcCod);
2014-12-01 23:55:08 +01:00
return (unsigned) DB_QueryCOUNT (Query,"can not get the number of centres in a place");
}
/*****************************************************************************/
/********************* Get number of centres with degrees ********************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsWithDegs (const char *SubQuery)
{
char Query[512];
/***** Get number of centres with degrees from database *****/
sprintf (Query,"SELECT COUNT(DISTINCT centres.CtrCod)"
" FROM institutions,centres,degrees"
" WHERE %sinstitutions.InsCod=centres.InsCod"
" AND centres.CtrCod=degrees.CtrCod",
SubQuery);
return (unsigned) DB_QueryCOUNT (Query,"can not get number of centres with degrees");
}
/*****************************************************************************/
/********************* Get number of centres with courses ********************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsWithCrss (const char *SubQuery)
{
char Query[512];
/***** Get number of centres with courses from database *****/
sprintf (Query,"SELECT COUNT(DISTINCT centres.CtrCod)"
" FROM institutions,centres,degrees,courses"
" WHERE %sinstitutions.InsCod=centres.InsCod"
" AND centres.CtrCod=degrees.CtrCod"
" AND degrees.DegCod=courses.DegCod",
SubQuery);
return (unsigned) DB_QueryCOUNT (Query,"can not get number of centres with courses");
}
/*****************************************************************************/
/********************* Get number of centres with users **********************/
/*****************************************************************************/
unsigned Ctr_GetNumCtrsWithUsrs (Rol_Role_t Role,const char *SubQuery)
{
char Query[512];
/***** Get number of centres with users from database *****/
sprintf (Query,"SELECT COUNT(DISTINCT centres.CtrCod)"
" FROM institutions,centres,degrees,courses,crs_usr"
" WHERE %sinstitutions.InsCod=centres.InsCod"
" AND centres.CtrCod=degrees.CtrCod"
" AND degrees.DegCod=courses.DegCod"
" AND courses.CrsCod=crs_usr.CrsCod"
" AND crs_usr.Role='%u'",
SubQuery,(unsigned) Role);
return (unsigned) DB_QueryCOUNT (Query,"can not get number of centres with users");
}
/*****************************************************************************/
/****************************** List centres found ***************************/
/*****************************************************************************/
// Returns number of centres found
unsigned Ctr_ListCtrsFound (const char *Query)
{
extern const char *Txt_Centres;
extern const char *Txt_centre;
extern const char *Txt_centres;
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned NumCtrs;
unsigned NumCtr;
struct Centre Ctr;
/***** Query database *****/
if ((NumCtrs = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get centres")))
{
/***** Write heading *****/
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,2,Txt_Centres);
2014-12-01 23:55:08 +01:00
/* Number of centres found */
fprintf (Gbl.F.Out,"<tr>"
2015-12-14 12:13:41 +01:00
"<th colspan=\"8\" class=\"CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
if (NumCtrs == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_centre);
else
fprintf (Gbl.F.Out,"%u %s",NumCtrs,Txt_centres);
2015-09-05 19:19:39 +02:00
fprintf (Gbl.F.Out,"</th>"
2014-12-01 23:55:08 +01:00
"</tr>");
Ctr_PutHeadCentresForSeeing (false); // Order not selectable
/***** List the centres (one row per centre) *****/
for (NumCtr = 1;
NumCtr <= NumCtrs;
NumCtr++)
{
/* Get next centre */
row = mysql_fetch_row (mysql_res);
/* Get centre code (row[0]) */
Ctr.CtrCod = Str_ConvertStrCodToLongCod (row[0]);
/* Get data of centre */
Ctr_GetDataOfCentreByCod (&Ctr);
/* Write data of this centre */
Ctr_ListOneCentreForSeeing (&Ctr,NumCtr);
}
/***** Table end *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
return NumCtrs;
}