swad-core/swad_link.c

893 lines
29 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_link.c: institutional links
/*
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.
2020-01-01 14:53:57 +01:00
Copyright (C) 1999-2020 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 ***********************************/
/*****************************************************************************/
2019-12-29 12:39:00 +01:00
#include <stddef.h> // For NULL
2014-12-01 23:55:08 +01:00
#include <stdlib.h> // For calloc
#include <string.h> // For string functions
2020-04-14 17:15:17 +02:00
#include "swad_banner.h"
2017-06-10 21:38:10 +02:00
#include "swad_box.h"
2014-12-01 23:55:08 +01:00
#include "swad_constant.h"
#include "swad_database.h"
2018-11-09 20:47:39 +01:00
#include "swad_form.h"
2014-12-01 23:55:08 +01:00
#include "swad_global.h"
2019-10-23 19:05:05 +02:00
#include "swad_HTML.h"
2018-12-08 16:43:13 +01:00
#include "swad_language.h"
2014-12-01 23:55:08 +01:00
#include "swad_link.h"
#include "swad_parameter.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private variables *****************************/
/*****************************************************************************/
2019-04-09 15:21:23 +02:00
static struct Link *Lnk_EditingLnk = NULL; // Static variable to keep the link being edited
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
2020-04-08 19:42:03 +02:00
static void Lnk_PutIconsListingLinks (__attribute__((unused)) void *Args);
2016-03-16 22:40:35 +01:00
static void Lnk_PutIconToEditLinks (void);
2015-07-24 13:51:29 +02:00
static void Lnk_WriteListOfLinks (void);
2019-04-09 15:21:23 +02:00
static void Lnk_EditLinksInternal (void);
2020-04-08 19:42:03 +02:00
static void Lnk_PutIconsEditingLinks (__attribute__((unused)) void *Args);
2018-11-16 00:24:44 +01:00
2014-12-01 23:55:08 +01:00
static void Lnk_ListLinksForEdition (void);
static void Lnk_PutParamLnkCod (long LnkCod);
2017-03-09 11:16:17 +01:00
2016-10-28 10:03:37 +02:00
static void Lnk_RenameLink (Cns_ShrtOrFullName_t ShrtOrFullName);
2014-12-01 23:55:08 +01:00
static bool Lnk_CheckIfLinkNameExists (const char *FieldName,const char *Name,long LnkCod);
2017-03-09 11:16:17 +01:00
static void Lnk_UpdateLnkNameDB (long LnkCod,const char *FieldName,const char *NewLnkName);
2014-12-01 23:55:08 +01:00
static void Lnk_PutFormToCreateLink (void);
static void Lnk_PutHeadLinks (void);
static void Lnk_CreateLink (struct Link *Lnk);
2019-04-09 15:21:23 +02:00
static void Lnk_EditingLinkConstructor (void);
static void Lnk_EditingLinkDestructor (void);
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/*************************** List all the links ******************************/
/*****************************************************************************/
void Lnk_SeeLinks (void)
{
2016-11-28 10:14:19 +01:00
extern const char *Hlp_SYSTEM_Links;
2014-12-01 23:55:08 +01:00
extern const char *Txt_Links;
2017-03-26 23:16:51 +02:00
extern const char *Txt_No_links;
2017-03-27 13:38:10 +02:00
extern const char *Txt_New_link;
2014-12-01 23:55:08 +01:00
/***** Get list of links *****/
Lnk_GetListLinks ();
2019-10-26 02:19:42 +02:00
/***** Begin box *****/
2020-03-26 02:54:30 +01:00
Box_BoxBegin (NULL,Txt_Links,
2020-04-08 19:42:03 +02:00
Lnk_PutIconsListingLinks,NULL,
2017-06-12 15:03:29 +02:00
Hlp_SYSTEM_Links,Box_NOT_CLOSABLE);
2017-03-26 23:16:51 +02:00
2017-03-27 10:13:34 +02:00
/***** Write all links *****/
2017-03-26 23:16:51 +02:00
if (Gbl.Links.Num) // There are links
2015-07-24 13:51:29 +02:00
Lnk_WriteListOfLinks ();
2017-03-26 23:16:51 +02:00
else // No links created
2019-02-16 17:20:05 +01:00
Ale_ShowAlert (Ale_INFO,Txt_No_links);
2017-03-26 23:16:51 +02:00
/***** Button to create link *****/
2017-06-04 18:18:54 +02:00
if (Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM)
2017-03-26 23:16:51 +02:00
{
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActEdiLnk);
2017-06-11 19:02:40 +02:00
Btn_PutConfirmButton (Txt_New_link);
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2015-07-24 13:51:29 +02:00
}
2017-06-12 14:16:33 +02:00
/***** End box *****/
2019-10-25 22:48:34 +02:00
Box_BoxEnd ();
2017-03-26 23:16:51 +02:00
2015-07-24 13:51:29 +02:00
/***** Free list of links *****/
Lnk_FreeListLinks ();
}
2018-11-16 00:24:44 +01:00
/*****************************************************************************/
/***************** Put contextual icons in list of links *********************/
/*****************************************************************************/
2020-04-08 19:42:03 +02:00
static void Lnk_PutIconsListingLinks (__attribute__((unused)) void *Args)
2018-11-16 00:24:44 +01:00
{
2020-04-08 19:42:03 +02:00
/***** Put icon to edit links *****/
if (Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM)
Lnk_PutIconToEditLinks ();
2018-11-16 00:24:44 +01:00
2020-04-08 19:42:03 +02:00
/***** Put icon to view banners *****/
Ban_PutIconToViewBanners ();
2018-11-16 00:24:44 +01:00
}
2016-03-16 22:40:35 +01:00
/*****************************************************************************/
/************************** Put icon to edit links ***************************/
/*****************************************************************************/
static void Lnk_PutIconToEditLinks (void)
{
2020-03-26 02:54:30 +01:00
Ico_PutContextualIconToEdit (ActEdiLnk,NULL,
NULL,NULL);
2016-03-16 22:40:35 +01:00
}
2015-07-24 13:51:29 +02:00
/*****************************************************************************/
/***************** Write menu with some institutional links ******************/
/*****************************************************************************/
void Lnk_WriteMenuWithInstitutionalLinks (void)
{
2017-03-24 21:29:13 +01:00
extern const char *Txt_Links;
2015-07-24 13:51:29 +02:00
/***** Get list of links *****/
Lnk_GetListLinks ();
/***** Write all the links *****/
2014-12-01 23:55:08 +01:00
if (Gbl.Links.Num)
{
2019-10-24 00:04:40 +02:00
HTM_DIV_Begin ("id=\"institutional_links\"");
2017-03-24 21:29:13 +01:00
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActSeeLnk);
2019-11-20 10:17:42 +01:00
HTM_BUTTON_SUBMIT_Begin (Txt_Links,"BT_LINK LINK_TITLE",NULL);
2019-11-18 15:48:46 +01:00
HTM_TxtF ("%s",Txt_Links);
HTM_BUTTON_End ();
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2017-03-24 21:29:13 +01:00
2015-07-24 13:51:29 +02:00
Lnk_WriteListOfLinks ();
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2014-12-01 23:55:08 +01:00
}
/***** Free list of links *****/
Lnk_FreeListLinks ();
}
2015-07-24 13:51:29 +02:00
/*****************************************************************************/
/*************************** Write list of links *****************************/
/*****************************************************************************/
static void Lnk_WriteListOfLinks (void)
{
unsigned NumLnk;
/***** List start *****/
2019-10-26 12:25:27 +02:00
HTM_UL_Begin ("class=\"LIST_LEFT\"");
2015-07-24 13:51:29 +02:00
/***** Write all links *****/
for (NumLnk = 0;
NumLnk < Gbl.Links.Num;
NumLnk++)
2019-10-26 22:49:13 +02:00
{
2015-07-24 13:51:29 +02:00
/* Write data of this link */
2019-10-26 22:49:13 +02:00
HTM_LI_Begin ("class=\"INS_LNK\"");
2019-10-28 20:38:29 +01:00
HTM_A_Begin ("href=\"%s\" title=\"%s\" class=\"INS_LNK\" target=\"_blank\"",
Gbl.Links.Lst[NumLnk].WWW,
Gbl.Links.Lst[NumLnk].FullName);
2019-11-10 12:36:37 +01:00
HTM_Txt (Gbl.Links.Lst[NumLnk].ShrtName);
2019-10-28 13:56:04 +01:00
HTM_A_End ();
2019-10-26 22:49:13 +02:00
HTM_LI_End ();
}
2015-07-24 13:51:29 +02:00
/***** List end *****/
2019-10-26 02:19:42 +02:00
HTM_UL_End ();
2015-07-24 13:51:29 +02:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************************** Put forms to edit links **************************/
/*****************************************************************************/
void Lnk_EditLinks (void)
2019-04-09 15:21:23 +02:00
{
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
/***** Edit links *****/
Lnk_EditLinksInternal ();
/***** Link destructor *****/
Lnk_EditingLinkDestructor ();
}
static void Lnk_EditLinksInternal (void)
2014-12-01 23:55:08 +01:00
{
2017-06-03 17:47:07 +02:00
extern const char *Hlp_SYSTEM_Links_edit;
extern const char *Txt_Links;
2014-12-01 23:55:08 +01:00
/***** Get list of links *****/
Lnk_GetListLinks ();
2019-10-26 02:19:42 +02:00
/***** Begin box *****/
2020-03-26 02:54:30 +01:00
Box_BoxBegin (NULL,Txt_Links,
2020-04-08 19:42:03 +02:00
Lnk_PutIconsEditingLinks,NULL,
2017-06-12 15:03:29 +02:00
Hlp_SYSTEM_Links_edit,Box_NOT_CLOSABLE);
2017-06-03 17:47:07 +02:00
2014-12-01 23:55:08 +01:00
/***** Put a form to create a new link *****/
Lnk_PutFormToCreateLink ();
/***** Forms to edit current links *****/
if (Gbl.Links.Num)
Lnk_ListLinksForEdition ();
2017-06-12 14:16:33 +02:00
/***** End box *****/
2019-10-25 22:48:34 +02:00
Box_BoxEnd ();
2017-06-03 17:47:07 +02:00
2014-12-01 23:55:08 +01:00
/***** Free list of links *****/
Lnk_FreeListLinks ();
}
2018-11-16 00:24:44 +01:00
/*****************************************************************************/
/******************** Put contextual icons to view links *********************/
/*****************************************************************************/
2020-04-08 19:42:03 +02:00
static void Lnk_PutIconsEditingLinks (__attribute__((unused)) void *Args)
2018-11-16 00:24:44 +01:00
{
2020-04-08 19:42:03 +02:00
/***** Put icon to view links *****/
Lnk_PutIconToViewLinks ();
2018-11-16 00:24:44 +01:00
2020-04-08 19:42:03 +02:00
/***** Put icon to view banners *****/
Ban_PutIconToViewBanners ();
2018-11-16 00:24:44 +01:00
}
/*****************************************************************************/
/************************** Put icon to view links ***************************/
/*****************************************************************************/
void Lnk_PutIconToViewLinks (void)
{
extern const char *Txt_Links;
2020-03-26 02:54:30 +01:00
Lay_PutContextualLinkOnlyIcon (ActSeeLnk,NULL,
NULL,NULL,
2019-01-12 03:00:59 +01:00
"link.svg",
Txt_Links);
2018-11-16 00:24:44 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/**************************** List all the links *****************************/
/*****************************************************************************/
void Lnk_GetListLinks (void)
{
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned long NumRows;
unsigned NumLnk;
struct Link *Lnk;
if (Gbl.DB.DatabaseIsOpen)
{
/***** Get institutional links from database *****/
2018-10-31 16:16:57 +01:00
NumRows = DB_QuerySELECT (&mysql_res,"can not get institutional links",
"SELECT LnkCod,ShortName,FullName,WWW"
" FROM links ORDER BY ShortName");
2014-12-01 23:55:08 +01:00
if (NumRows) // Places found...
{
Gbl.Links.Num = (unsigned) NumRows;
/***** Create list with places *****/
if ((Gbl.Links.Lst = (struct Link *) calloc (NumRows,sizeof (struct Link))) == NULL)
2020-04-25 01:36:53 +02:00
Lay_NotEnoughMemoryExit ();
2014-12-01 23:55:08 +01:00
/***** Get the links *****/
for (NumLnk = 0;
NumLnk < Gbl.Links.Num;
NumLnk++)
{
Lnk = &(Gbl.Links.Lst[NumLnk]);
/* Get next link */
row = mysql_fetch_row (mysql_res);
/* Get link code (row[0]) */
if ((Lnk->LnkCod = Str_ConvertStrCodToLongCod (row[0])) < 0)
Lay_ShowErrorAndExit ("Wrong code of institutional link.");
/* Get the short name of the link (row[1]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->ShrtName,row[1],
2017-03-07 19:55:29 +01:00
Lnk_MAX_BYTES_LINK_SHRT_NAME);
2014-12-01 23:55:08 +01:00
/* Get the full name of the link (row[2]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->FullName,row[2],
2017-03-07 19:55:29 +01:00
Lnk_MAX_BYTES_LINK_FULL_NAME);
2014-12-01 23:55:08 +01:00
/* Get the URL of the link (row[3]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->WWW,row[3],
2017-03-07 01:56:41 +01:00
Cns_MAX_BYTES_WWW);
2014-12-01 23:55:08 +01:00
}
}
else
Gbl.Links.Num = 0;
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
}
/*****************************************************************************/
/**************************** Get link full name *****************************/
/*****************************************************************************/
void Lnk_GetDataOfLinkByCod (struct Link *Lnk)
{
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned long NumRows;
/***** Clear data *****/
2016-10-28 10:03:37 +02:00
Lnk->ShrtName[0] = Lnk->FullName[0] = Lnk->WWW[0] = '\0';
2014-12-01 23:55:08 +01:00
/***** Check if link code is correct *****/
if (Lnk->LnkCod > 0)
{
/***** Get data of an institutional link from database *****/
2018-10-31 16:16:57 +01:00
NumRows = DB_QuerySELECT (&mysql_res,"can not get data"
" of an institutional link",
"SELECT ShortName,FullName,WWW FROM links"
" WHERE LnkCod=%ld",
Lnk->LnkCod);
2014-12-01 23:55:08 +01:00
if (NumRows) // Link found...
{
/* Get row */
row = mysql_fetch_row (mysql_res);
/* Get the short name of the link (row[0]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->ShrtName,row[0],
2017-03-07 19:55:29 +01:00
Lnk_MAX_BYTES_LINK_SHRT_NAME);
2014-12-01 23:55:08 +01:00
/* Get the full name of the link (row[1]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->FullName,row[1],
2017-03-07 19:55:29 +01:00
Lnk_MAX_BYTES_LINK_FULL_NAME);
2014-12-01 23:55:08 +01:00
/* Get the URL of the link (row[2]) */
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->WWW,row[2],
2017-03-07 01:56:41 +01:00
Cns_MAX_BYTES_WWW);
2014-12-01 23:55:08 +01:00
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
}
/*****************************************************************************/
/**************************** Free list of links *****************************/
/*****************************************************************************/
void Lnk_FreeListLinks (void)
{
if (Gbl.Links.Lst)
{
/***** Free memory used by the list of links *****/
2019-11-06 19:45:20 +01:00
free (Gbl.Links.Lst);
2014-12-01 23:55:08 +01:00
Gbl.Links.Lst = NULL;
Gbl.Links.Num = 0;
}
}
/*****************************************************************************/
/*************************** List all the links ******************************/
/*****************************************************************************/
static void Lnk_ListLinksForEdition (void)
{
unsigned NumLnk;
struct Link *Lnk;
2019-10-20 22:00:28 +02:00
/***** Begin table *****/
2019-10-23 19:05:05 +02:00
HTM_TABLE_BeginWidePadding (2);
2014-12-01 23:55:08 +01:00
/***** Table head *****/
Lnk_PutHeadLinks ();
/***** Write all the links *****/
for (NumLnk = 0;
NumLnk < Gbl.Links.Num;
NumLnk++)
{
Lnk = &Gbl.Links.Lst[NumLnk];
2019-10-23 19:05:05 +02:00
HTM_TR_Begin (NULL);
2019-10-09 15:09:42 +02:00
/* Put icon to remove link */
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"BM\"");
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActRemLnk);
2014-12-01 23:55:08 +01:00
Lnk_PutParamLnkCod (Lnk->LnkCod);
2017-06-11 19:13:28 +02:00
Ico_PutIconRemove ();
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/* Link code */
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"DAT RM\"");
2019-11-10 13:38:17 +01:00
HTM_Long (Lnk->LnkCod);
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/* Link short name */
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActRenLnkSho);
2014-12-01 23:55:08 +01:00
Lnk_PutParamLnkCod (Lnk->LnkCod);
2020-04-27 03:16:55 +02:00
HTM_INPUT_TEXT ("ShortName",Lnk_MAX_CHARS_LINK_SHRT_NAME,Lnk->ShrtName,
HTM_SUBMIT_ON_CHANGE,
2019-12-19 11:00:14 +01:00
"class=\"INPUT_SHORT_NAME\" required=\"required\"");
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/* Link full name */
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActRenLnkFul);
2014-12-01 23:55:08 +01:00
Lnk_PutParamLnkCod (Lnk->LnkCod);
2020-04-27 03:16:55 +02:00
HTM_INPUT_TEXT ("FullName",Lnk_MAX_CHARS_LINK_FULL_NAME,Lnk->FullName,
HTM_SUBMIT_ON_CHANGE,
2019-12-19 11:00:14 +01:00
"class=\"INPUT_FULL_NAME\" required=\"required\"");
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/* Link WWW */
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActChgLnkWWW);
2014-12-01 23:55:08 +01:00
Lnk_PutParamLnkCod (Lnk->LnkCod);
2020-04-27 03:16:55 +02:00
HTM_INPUT_URL ("WWW",Lnk->WWW,HTM_SUBMIT_ON_CHANGE,
2019-12-19 11:00:14 +01:00
"class=\"INPUT_WWW_NARROW\" required=\"required\"");
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2019-10-09 15:09:42 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_End ();
2014-12-01 23:55:08 +01:00
}
2017-06-03 17:47:07 +02:00
/***** End table *****/
2019-10-23 19:05:05 +02:00
HTM_TABLE_End ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************** Write parameter with code of link **********************/
/*****************************************************************************/
static void Lnk_PutParamLnkCod (long LnkCod)
{
2019-11-03 13:19:32 +01:00
Par_PutHiddenParamLong (NULL,"LnkCod",LnkCod);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Get parameter with code of link ***********************/
/*****************************************************************************/
long Lnk_GetParamLnkCod (void)
{
2017-01-28 20:32:50 +01:00
/***** Get code of link *****/
return Par_GetParToLong ("LnkCod");
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************************* Remove a link *******************************/
/*****************************************************************************/
void Lnk_RemoveLink (void)
{
extern const char *Txt_Link_X_removed;
2019-04-09 15:21:23 +02:00
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
2014-12-01 23:55:08 +01:00
/***** Get link code *****/
2019-04-09 15:21:23 +02:00
if ((Lnk_EditingLnk->LnkCod = Lnk_GetParamLnkCod ()) == -1L)
2014-12-01 23:55:08 +01:00
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/***** Get data of the link from database *****/
2019-04-09 15:21:23 +02:00
Lnk_GetDataOfLinkByCod (Lnk_EditingLnk);
2014-12-01 23:55:08 +01:00
/***** Remove link *****/
2018-11-02 22:00:31 +01:00
DB_QueryDELETE ("can not remove an institutional link",
"DELETE FROM links WHERE LnkCod=%ld",
2019-04-09 15:21:23 +02:00
Lnk_EditingLnk->LnkCod);
2014-12-01 23:55:08 +01:00
/***** Write message to show the change made *****/
2019-04-09 15:21:23 +02:00
Ale_CreateAlert (Ale_SUCCESS,NULL,
Txt_Link_X_removed,
Lnk_EditingLnk->ShrtName);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Change the short name of a link ***********************/
/*****************************************************************************/
void Lnk_RenameLinkShort (void)
{
2019-04-09 15:21:23 +02:00
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
/***** Rename link *****/
2016-10-28 10:03:37 +02:00
Lnk_RenameLink (Cns_SHRT_NAME);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Change the full name of a link ************************/
/*****************************************************************************/
void Lnk_RenameLinkFull (void)
{
2019-04-09 15:21:23 +02:00
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
/***** Rename link *****/
2014-12-01 23:55:08 +01:00
Lnk_RenameLink (Cns_FULL_NAME);
}
/*****************************************************************************/
/************************ Change the name of a link **************************/
/*****************************************************************************/
2016-10-28 10:03:37 +02:00
static void Lnk_RenameLink (Cns_ShrtOrFullName_t ShrtOrFullName)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_The_link_X_already_exists;
extern const char *Txt_The_link_X_has_been_renamed_as_Y;
extern const char *Txt_The_name_of_the_link_X_has_not_changed;
const char *ParamName = NULL; // Initialized to avoid warning
const char *FieldName = NULL; // Initialized to avoid warning
2017-03-07 19:55:29 +01:00
unsigned MaxBytes = 0; // Initialized to avoid warning
2014-12-01 23:55:08 +01:00
char *CurrentLnkName = NULL; // Initialized to avoid warning
2017-03-07 19:55:29 +01:00
char NewLnkName[Lnk_MAX_BYTES_LINK_FULL_NAME + 1];
2014-12-01 23:55:08 +01:00
2016-10-28 10:03:37 +02:00
switch (ShrtOrFullName)
2014-12-01 23:55:08 +01:00
{
2016-10-28 10:03:37 +02:00
case Cns_SHRT_NAME:
2014-12-01 23:55:08 +01:00
ParamName = "ShortName";
FieldName = "ShortName";
2017-03-07 19:55:29 +01:00
MaxBytes = Lnk_MAX_BYTES_LINK_SHRT_NAME;
2019-04-09 15:21:23 +02:00
CurrentLnkName = Lnk_EditingLnk->ShrtName;
2014-12-01 23:55:08 +01:00
break;
case Cns_FULL_NAME:
ParamName = "FullName";
FieldName = "FullName";
2017-03-07 19:55:29 +01:00
MaxBytes = Lnk_MAX_BYTES_LINK_FULL_NAME;
2019-04-09 15:21:23 +02:00
CurrentLnkName = Lnk_EditingLnk->FullName;
2014-12-01 23:55:08 +01:00
break;
}
/***** Get parameters from form *****/
/* Get the code of the link */
2019-04-09 15:21:23 +02:00
if ((Lnk_EditingLnk->LnkCod = Lnk_GetParamLnkCod ()) == -1L)
2014-12-01 23:55:08 +01:00
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/* Get the new name for the link */
2017-03-07 19:55:29 +01:00
Par_GetParToText (ParamName,NewLnkName,MaxBytes);
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Get link data from the database *****/
Lnk_GetDataOfLinkByCod (Lnk_EditingLnk);
2014-12-01 23:55:08 +01:00
/***** Check if new name is empty *****/
2019-12-20 00:30:54 +01:00
if (NewLnkName[0])
2014-12-01 23:55:08 +01:00
{
2019-01-02 15:10:51 +01:00
/***** Check if old and new names are the same
(this happens when return is pressed without changes) *****/
2014-12-01 23:55:08 +01:00
if (strcmp (CurrentLnkName,NewLnkName)) // Different names
{
/***** If link was in database... *****/
2019-04-09 15:21:23 +02:00
if (Lnk_CheckIfLinkNameExists (ParamName,NewLnkName,Lnk_EditingLnk->LnkCod))
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_The_link_X_already_exists,
NewLnkName);
2014-12-01 23:55:08 +01:00
else
{
/* Update the table changing old name by new name */
2019-04-09 15:21:23 +02:00
Lnk_UpdateLnkNameDB (Lnk_EditingLnk->LnkCod,FieldName,NewLnkName);
2014-12-01 23:55:08 +01:00
2017-03-09 11:16:17 +01:00
/* Write message to show the change made */
2019-04-09 15:21:23 +02:00
Ale_CreateAlert (Ale_SUCCESS,NULL,
Txt_The_link_X_has_been_renamed_as_Y,
CurrentLnkName,NewLnkName);
2014-12-01 23:55:08 +01:00
}
}
else // The same name
2019-04-09 15:21:23 +02:00
Ale_CreateAlert (Ale_INFO,NULL,
Txt_The_name_of_the_link_X_has_not_changed,
CurrentLnkName);
2014-12-01 23:55:08 +01:00
}
2019-12-20 00:30:54 +01:00
else
Ale_CreateAlertYouCanNotLeaveFieldEmpty ();
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Update name *****/
2017-01-17 03:10:43 +01:00
Str_Copy (CurrentLnkName,NewLnkName,
2017-03-07 19:55:29 +01:00
MaxBytes);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************** Check if the name of link exists *********************/
/*****************************************************************************/
static bool Lnk_CheckIfLinkNameExists (const char *FieldName,const char *Name,long LnkCod)
{
/***** Get number of links with a name from database *****/
2018-11-03 20:52:00 +01:00
return (DB_QueryCOUNT ("can not check if the name of an institutional link"
" already existed",
"SELECT COUNT(*) FROM links"
" WHERE %s='%s' AND LnkCod<>%ld",
FieldName,Name,LnkCod) != 0);
2014-12-01 23:55:08 +01:00
}
2017-03-09 11:16:17 +01:00
/*****************************************************************************/
/************ Update link name in table of institutional links ***************/
/*****************************************************************************/
static void Lnk_UpdateLnkNameDB (long LnkCod,const char *FieldName,const char *NewLnkName)
{
/***** Update institutional link changing old name by new name */
2018-11-03 12:16:40 +01:00
DB_QueryUPDATE ("can not update the name of an institutional link",
"UPDATE links SET %s='%s' WHERE LnkCod=%ld",
FieldName,NewLnkName,LnkCod);
2017-03-09 11:16:17 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/**************** Change the WWW of an institutional link ********************/
/*****************************************************************************/
void Lnk_ChangeLinkWWW (void)
{
extern const char *Txt_The_new_web_address_is_X;
2017-03-07 01:56:41 +01:00
char NewWWW[Cns_MAX_BYTES_WWW + 1];
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
2014-12-01 23:55:08 +01:00
/***** Get parameters from form *****/
/* Get the code of the link */
2019-04-09 15:21:23 +02:00
if ((Lnk_EditingLnk->LnkCod = Lnk_GetParamLnkCod ()) == -1L)
2014-12-01 23:55:08 +01:00
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/* Get the new WWW for the link */
2017-03-07 01:56:41 +01:00
Par_GetParToText ("WWW",NewWWW,Cns_MAX_BYTES_WWW);
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Get link data from the database *****/
Lnk_GetDataOfLinkByCod (Lnk_EditingLnk);
2014-12-01 23:55:08 +01:00
/***** Check if new WWW is empty *****/
if (NewWWW[0])
{
2019-04-09 15:21:23 +02:00
/***** Update the table changing old WWW by new WWW *****/
2018-11-03 12:16:40 +01:00
DB_QueryUPDATE ("can not update the web of an institutional link",
"UPDATE links SET WWW='%s' WHERE LnkCod=%ld",
2019-04-09 15:21:23 +02:00
NewWWW,Lnk_EditingLnk->LnkCod);
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Message to show the change made *****/
Ale_CreateAlert (Ale_SUCCESS,NULL,
Txt_The_new_web_address_is_X,
NewWWW);
2014-12-01 23:55:08 +01:00
}
else
2019-12-20 00:30:54 +01:00
Ale_CreateAlertYouCanNotLeaveFieldEmpty ();
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
/***** Update web *****/
Str_Copy (Lnk_EditingLnk->WWW,NewWWW,
2017-03-07 01:56:41 +01:00
Cns_MAX_BYTES_WWW);
2019-04-09 15:21:23 +02:00
}
/*****************************************************************************/
/********** Show alerts after changing a link and continue editing ***********/
/*****************************************************************************/
void Lnk_ContEditAfterChgLnk (void)
{
/***** Write message to show the change made *****/
Ale_ShowAlerts (NULL);
/***** Show the form again *****/
Lnk_EditLinksInternal ();
/***** Link destructor *****/
Lnk_EditingLinkDestructor ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/********************* Put a form to create a new link ***********************/
/*****************************************************************************/
static void Lnk_PutFormToCreateLink (void)
{
2016-11-28 10:14:19 +01:00
extern const char *Hlp_SYSTEM_Links_edit;
2014-12-01 23:55:08 +01:00
extern const char *Txt_New_link;
extern const char *Txt_Create_link;
2019-10-20 22:00:28 +02:00
/***** Begin form *****/
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActNewLnk);
2014-12-01 23:55:08 +01:00
2019-10-26 02:19:42 +02:00
/***** Begin box and table *****/
2020-03-26 02:54:30 +01:00
Box_BoxTableBegin (NULL,Txt_New_link,
NULL,NULL,
2017-06-12 15:03:29 +02:00
Hlp_SYSTEM_Links_edit,Box_NOT_CLOSABLE,2);
2014-12-01 23:55:08 +01:00
/***** Write heading *****/
Lnk_PutHeadLinks ();
2019-10-23 19:05:05 +02:00
HTM_TR_Begin (NULL);
2019-10-05 13:27:58 +02:00
/***** Link code *****/
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"BM\"");
HTM_TD_End ();
2019-10-07 17:36:41 +02:00
2019-10-23 19:05:05 +02:00
HTM_TD_Empty (1);
2014-12-01 23:55:08 +01:00
/***** Link short name *****/
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2020-04-27 03:16:55 +02:00
HTM_INPUT_TEXT ("ShortName",Lnk_MAX_CHARS_LINK_SHRT_NAME,Lnk_EditingLnk->ShrtName,
HTM_DONT_SUBMIT_ON_CHANGE,
2019-11-04 09:45:57 +01:00
"class=\"INPUT_SHORT_NAME\" required=\"required\"");
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/***** Link full name *****/
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2020-04-27 03:16:55 +02:00
HTM_INPUT_TEXT ("FullName",Lnk_MAX_CHARS_LINK_FULL_NAME,Lnk_EditingLnk->FullName,
HTM_DONT_SUBMIT_ON_CHANGE,
2019-11-04 09:45:57 +01:00
"class=\"INPUT_FULL_NAME\" required=\"required\"");
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2014-12-01 23:55:08 +01:00
/***** Link WWW *****/
2019-10-23 19:05:05 +02:00
HTM_TD_Begin ("class=\"CM\"");
2020-04-27 03:16:55 +02:00
HTM_INPUT_URL ("WWW",Lnk_EditingLnk->WWW,HTM_DONT_SUBMIT_ON_CHANGE,
2019-12-19 11:00:14 +01:00
"class=\"INPUT_WWW_NARROW\" required=\"required\"");
2019-10-23 19:05:05 +02:00
HTM_TD_End ();
2019-10-05 13:27:58 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_End ();
2014-12-01 23:55:08 +01:00
2017-06-12 14:16:33 +02:00
/***** End table, send button and end box *****/
2019-11-25 23:18:08 +01:00
Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create_link);
2014-12-01 23:55:08 +01:00
2017-06-12 14:16:33 +02:00
/***** End form *****/
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************** Write header with fields of a link *********************/
/*****************************************************************************/
static void Lnk_PutHeadLinks (void)
{
extern const char *Txt_Code;
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;
2019-10-23 19:05:05 +02:00
HTM_TR_Begin (NULL);
2019-10-12 00:07:52 +02:00
2019-10-23 19:05:05 +02:00
HTM_TH (1,1,"BM",NULL);
HTM_TH (1,1,"RM",Txt_Code);
HTM_TH (1,1,"LM",Txt_Short_name);
HTM_TH (1,1,"LM",Txt_Full_name);
HTM_TH (1,1,"LM",Txt_WWW);
2019-10-12 00:07:52 +02:00
2019-10-23 19:05:05 +02:00
HTM_TR_End ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************* Receive form to create a new link ***********************/
/*****************************************************************************/
2020-05-05 21:49:00 +02:00
void Lnk_ReceiveFormNewLink (void)
2014-12-01 23:55:08 +01:00
{
extern const char *Txt_The_link_X_already_exists;
extern const char *Txt_You_must_specify_the_URL_of_the_new_link;
2019-04-09 15:21:23 +02:00
extern const char *Txt_Created_new_link_X;
2014-12-01 23:55:08 +01:00
extern const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_link;
2019-04-09 15:21:23 +02:00
/***** Link constructor *****/
Lnk_EditingLinkConstructor ();
2014-12-01 23:55:08 +01:00
/***** Get parameters from form *****/
/* Get link short name */
2019-04-09 15:21:23 +02:00
Par_GetParToText ("ShortName",Lnk_EditingLnk->ShrtName,Lnk_MAX_BYTES_LINK_SHRT_NAME);
2014-12-01 23:55:08 +01:00
/* Get link full name */
2019-04-09 15:21:23 +02:00
Par_GetParToText ("FullName",Lnk_EditingLnk->FullName,Lnk_MAX_BYTES_LINK_FULL_NAME);
2014-12-01 23:55:08 +01:00
/* Get link URL */
2019-04-09 15:21:23 +02:00
Par_GetParToText ("WWW",Lnk_EditingLnk->WWW,Cns_MAX_BYTES_WWW);
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
if (Lnk_EditingLnk->ShrtName[0] &&
Lnk_EditingLnk->FullName[0]) // If there's a link name
2014-12-01 23:55:08 +01:00
{
/***** If name of link was in database... *****/
2019-04-09 15:21:23 +02:00
if (Lnk_CheckIfLinkNameExists ("ShortName",Lnk_EditingLnk->ShrtName,-1L))
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_The_link_X_already_exists,
Lnk_EditingLnk->ShrtName);
else if (Lnk_CheckIfLinkNameExists ("FullName",Lnk_EditingLnk->FullName,-1L))
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_The_link_X_already_exists,
Lnk_EditingLnk->FullName);
else if (!Lnk_EditingLnk->WWW[0])
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_You_must_specify_the_URL_of_the_new_link);
2014-12-01 23:55:08 +01:00
else // Add new link to database
2019-04-09 15:21:23 +02:00
{
Lnk_CreateLink (Lnk_EditingLnk);
Ale_CreateAlert (Ale_SUCCESS,NULL,
Txt_Created_new_link_X,
Lnk_EditingLnk->ShrtName);
}
2014-12-01 23:55:08 +01:00
}
else // If there is not a link name
2019-04-09 15:21:23 +02:00
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_link);
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/**************************** Create a new link ******************************/
/*****************************************************************************/
static void Lnk_CreateLink (struct Link *Lnk)
{
/***** Create a new link *****/
2018-11-02 19:37:11 +01:00
DB_QueryINSERT ("can not create institutional link",
"INSERT INTO links"
" (ShortName,FullName,WWW)"
" VALUES"
" ('%s','%s','%s')",
Lnk->ShrtName,Lnk->FullName,Lnk->WWW);
2019-04-09 15:21:23 +02:00
}
/*****************************************************************************/
/************************* Place constructor/destructor **********************/
/*****************************************************************************/
2014-12-01 23:55:08 +01:00
2019-04-09 15:21:23 +02:00
static void Lnk_EditingLinkConstructor (void)
{
/***** Pointer must be NULL *****/
if (Lnk_EditingLnk != NULL)
Lay_ShowErrorAndExit ("Error initializing link.");
/***** Allocate memory for link *****/
if ((Lnk_EditingLnk = (struct Link *) malloc (sizeof (struct Link))) == NULL)
Lay_ShowErrorAndExit ("Error allocating memory for link.");
/***** Reset link *****/
Lnk_EditingLnk->LnkCod = -1L;
Lnk_EditingLnk->ShrtName[0] = '\0';
Lnk_EditingLnk->FullName[0] = '\0';
Lnk_EditingLnk->WWW[0] = '\0';
}
static void Lnk_EditingLinkDestructor (void)
{
/***** Free memory used for link *****/
if (Lnk_EditingLnk != NULL)
{
2019-11-06 19:45:20 +01:00
free (Lnk_EditingLnk);
2019-04-09 15:21:23 +02:00
Lnk_EditingLnk = NULL;
}
2014-12-01 23:55:08 +01:00
}