swad-core/swad_link.c

818 lines
26 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.
Copyright (C) 1999-2023 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General 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
#include "swad_action_list.h"
#include "swad_alert.h"
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"
#include "swad_error.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_link_database.h"
2014-12-01 23:55:08 +01:00
#include "swad_parameter.h"
#include "swad_parameter_code.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************************** Private constants ****************************/
/*****************************************************************************/
static const bool Lnk_ICanEditLinks[Rol_NUM_ROLES] =
{
/* Users who can edit */
[Rol_SYS_ADM] = true,
};
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
struct Lnk_Links
{
unsigned Num; // Number of institutional links
struct Lnk_Link *Lst; // List of institutional links
};
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Private variables *****************************/
/*****************************************************************************/
static struct Lnk_Link *Lnk_EditingLnk = NULL; // Static variable to keep the link being edited
2019-04-09 15:21:23 +02:00
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);
static void Lnk_WriteListOfLinks (const struct Lnk_Links *Links,const char *Class);
2015-07-24 13:51:29 +02:00
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
static void Lnk_GetListLinks (struct Lnk_Links *Links);
static void Lnk_GetLinkDataFromRow (MYSQL_RES *mysql_res,struct Lnk_Link *Lnk);
static void Lnk_FreeListLinks (struct Lnk_Links *Links);
static void Lnk_ListLinksForEdition (const struct Lnk_Links *Links);
static void Lnk_PutParLnkCod (void *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);
2017-03-09 11:16:17 +01:00
2014-12-01 23:55:08 +01:00
static void Lnk_PutFormToCreateLink (void);
static void Lnk_PutHeadLinks (void);
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 links *******************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
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;
struct Lnk_Links Links;
2014-12-01 23:55:08 +01:00
/***** Get list of links *****/
Lnk_GetListLinks (&Links);
2014-12-01 23:55:08 +01:00
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
/***** Write all links *****/
if (Links.Num) // There are links
Lnk_WriteListOfLinks (&Links,"class=\"LIST_LEFT\"");
else // No links created
Ale_ShowAlert (Ale_INFO,Txt_No_links);
2017-03-26 23:16:51 +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 (&Links);
2015-07-24 13:51:29 +02:00
}
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 (Lnk_ICanEditLinks[Gbl.Usrs.Me.Role.Logged])
2020-04-08 19:42:03 +02:00
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;
struct Lnk_Links Links;
2017-03-24 21:29:13 +01:00
2015-07-24 13:51:29 +02:00
/***** Get list of links *****/
Lnk_GetListLinks (&Links);
2015-07-24 13:51:29 +02:00
/***** Write all links *****/
if (Links.Num)
{
HTM_FIELDSET_Begin ("id=\"institutional_links\" class=\"INS_LNK_%s\"",
The_GetSuffix ());
HTM_LEGEND (Txt_Links);
Lnk_WriteListOfLinks (&Links,NULL);
HTM_FIELDSET_End ();
}
2014-12-01 23:55:08 +01:00
/***** Free list of links *****/
Lnk_FreeListLinks (&Links);
2014-12-01 23:55:08 +01:00
}
2015-07-24 13:51:29 +02:00
/*****************************************************************************/
/*************************** Write list of links *****************************/
/*****************************************************************************/
static void Lnk_WriteListOfLinks (const struct Lnk_Links *Links,const char *Class)
2015-07-24 13:51:29 +02:00
{
unsigned NumLnk;
/***** List start *****/
HTM_UL_Begin (Class);
2015-07-24 13:51:29 +02:00
/***** Write all links *****/
for (NumLnk = 0;
NumLnk < Links->Num;
NumLnk++)
{
/* Write data of this link */
HTM_LI_Begin ("class=\"ICO_HIGHLIGHT INS_LNK\"");
HTM_A_Begin ("href=\"%s\" title=\"%s\""
" class=\"INS_LNK_%s\" target=\"_blank\"",
Links->Lst[NumLnk].WWW,
Links->Lst[NumLnk].FullName,
The_GetSuffix ());
HTM_Txt (Links->Lst[NumLnk].ShrtName);
HTM_A_End ();
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;
struct Lnk_Links Links;
2017-06-03 17:47:07 +02:00
2014-12-01 23:55:08 +01:00
/***** Get list of links *****/
Lnk_GetListLinks (&Links);
2014-12-01 23:55:08 +01:00
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
/***** Put a form to create a new link *****/
Lnk_PutFormToCreateLink ();
2014-12-01 23:55:08 +01:00
/***** Forms to edit current links *****/
if (Links.Num)
Lnk_ListLinksForEdition (&Links);
2014-12-01 23:55:08 +01:00
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 (&Links);
2014-12-01 23:55:08 +01:00
}
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 *****/
Ico_PutContextualIconToView (ActSeeLnk,NULL,
NULL,NULL);
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)
{
2020-03-26 02:54:30 +01:00
Lay_PutContextualLinkOnlyIcon (ActSeeLnk,NULL,
NULL,NULL,
"up-right-from-square.svg",Ico_BLACK);
2018-11-16 00:24:44 +01:00
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/****************************** List all links *******************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
static void Lnk_GetListLinks (struct Lnk_Links *Links)
2014-12-01 23:55:08 +01:00
{
MYSQL_RES *mysql_res;
unsigned NumLnk;
/***** Reset links *****/
Links->Num = 0;
Links->Lst = NULL;
if (DB_CheckIfDatabaseIsOpen ())
2014-12-01 23:55:08 +01:00
{
/***** Get institutional links from database *****/
if ((Links->Num = Lnk_DB_GetLinks (&mysql_res))) // Links found...
2014-12-01 23:55:08 +01:00
{
/***** Create list with places *****/
if ((Links->Lst = calloc ((size_t) Links->Num,
sizeof (struct Lnk_Link))) == NULL)
Err_NotEnoughMemoryExit ();
2014-12-01 23:55:08 +01:00
/***** Get the links *****/
for (NumLnk = 0;
NumLnk < Links->Num;
2014-12-01 23:55:08 +01:00
NumLnk++)
Lnk_GetLinkDataFromRow (mysql_res,&Links->Lst[NumLnk]);
2014-12-01 23:55:08 +01:00
}
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
}
/*****************************************************************************/
/**************************** Get link full name *****************************/
/*****************************************************************************/
void Lnk_GetLinkDataByCod (struct Lnk_Link *Lnk)
2014-12-01 23:55:08 +01:00
{
MYSQL_RES *mysql_res;
/***** Clear data *****/
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 *****/
if (Lnk_DB_GetLinkDataByCod (&mysql_res,Lnk->LnkCod)) // Link found...
Lnk_GetLinkDataFromRow (mysql_res,Lnk);
2014-12-01 23:55:08 +01:00
/***** Free structure that stores the query result *****/
DB_FreeMySQLResult (&mysql_res);
}
}
/*****************************************************************************/
/**************************** Get data of link *******************************/
/*****************************************************************************/
static void Lnk_GetLinkDataFromRow (MYSQL_RES *mysql_res,struct Lnk_Link *Lnk)
{
MYSQL_ROW row;
/***** Get next row from result *****/
row = mysql_fetch_row (mysql_res);
/*
row[0] LnkCod
row[1] ShortName
row[2] FullName
row[3] WWW
*/
/***** Get plugin code (row[0]) *****/
if ((Lnk->LnkCod = Str_ConvertStrCodToLongCod (row[0])) <= 0)
Err_WrongLinkExit ();
/***** Get the short name (row[1]),
the full name (row[2])
and the URL (row[3]) of the link *****/
Str_Copy (Lnk->ShrtName,row[1],sizeof (Lnk->ShrtName) - 1);
Str_Copy (Lnk->FullName,row[2],sizeof (Lnk->FullName) - 1);
Str_Copy (Lnk->WWW ,row[3],sizeof (Lnk->WWW ) - 1);
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/**************************** Free list of links *****************************/
/*****************************************************************************/
static void Lnk_FreeListLinks (struct Lnk_Links *Links)
2014-12-01 23:55:08 +01:00
{
if (Links->Num && Links->Lst)
2014-12-01 23:55:08 +01:00
{
free (Links->Lst);
Links->Lst = NULL;
Links->Num = 0;
2014-12-01 23:55:08 +01:00
}
}
/*****************************************************************************/
/****************************** List all links *******************************/
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
static void Lnk_ListLinksForEdition (const struct Lnk_Links *Links)
2014-12-01 23:55:08 +01:00
{
unsigned NumLnk;
struct Lnk_Link *Lnk;
2014-12-01 23:55:08 +01:00
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 ();
2014-12-01 23:55:08 +01:00
/***** Write all links *****/
for (NumLnk = 0;
NumLnk < Links->Num;
NumLnk++)
{
Lnk = &Links->Lst[NumLnk];
HTM_TR_Begin (NULL);
/* Put icon to remove link */
HTM_TD_Begin ("class=\"BM\"");
Ico_PutContextualIconToRemove (ActRemLnk,NULL,
Lnk_PutParLnkCod,&Lnk->LnkCod);
HTM_TD_End ();
/* Link code */
HTM_TD_Begin ("class=\"CODE DAT_%s\"",The_GetSuffix ());
HTM_Long (Lnk->LnkCod);
HTM_TD_End ();
/* Link short name */
HTM_TD_Begin ("class=\"CM\"");
Frm_BeginForm (ActRenLnkSho);
ParCod_PutPar (ParCod_Lnk,Lnk->LnkCod);
HTM_INPUT_TEXT ("ShortName",Lnk_MAX_CHARS_LINK_SHRT_NAME,Lnk->ShrtName,
HTM_SUBMIT_ON_CHANGE,
"class=\"INPUT_SHORT_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
Frm_EndForm ();
HTM_TD_End ();
/* Link full name */
HTM_TD_Begin ("class=\"CM\"");
Frm_BeginForm (ActRenLnkFul);
ParCod_PutPar (ParCod_Lnk,Lnk->LnkCod);
HTM_INPUT_TEXT ("FullName",Lnk_MAX_CHARS_LINK_FULL_NAME,Lnk->FullName,
HTM_SUBMIT_ON_CHANGE,
"class=\"INPUT_FULL_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
Frm_EndForm ();
HTM_TD_End ();
/* Link WWW */
HTM_TD_Begin ("class=\"CM\"");
Frm_BeginForm (ActChgLnkWWW);
ParCod_PutPar (ParCod_Lnk,Lnk->LnkCod);
HTM_INPUT_URL ("WWW",Lnk->WWW,HTM_SUBMIT_ON_CHANGE,
"class=\"INPUT_WWW_NARROW INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
Frm_EndForm ();
HTM_TD_End ();
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_PutParLnkCod (void *LnkCod)
2014-12-01 23:55:08 +01:00
{
2020-10-13 22:34:31 +02:00
if (LnkCod)
ParCod_PutPar (ParCod_Lnk,*((long *) 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 *****/
Lnk_EditingLnk->LnkCod = ParCod_GetAndCheckPar (ParCod_Lnk);
2014-12-01 23:55:08 +01:00
/***** Get data of the link from database *****/
Lnk_GetLinkDataByCod (Lnk_EditingLnk);
2014-12-01 23:55:08 +01:00
/***** Remove link *****/
Lnk_DB_RemoveLink (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_X_has_not_changed;
const char *ParName = NULL; // Initialized to avoid warning
const char *FldName = NULL; // Initialized to avoid warning
unsigned MaxBytes = 0; // Initialized to avoid warning
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:
ParName = "ShortName";
FldName = "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:
ParName = "FullName";
FldName = "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 */
Lnk_EditingLnk->LnkCod = ParCod_GetAndCheckPar (ParCod_Lnk);
2014-12-01 23:55:08 +01:00
/* Get the new name for the link */
Par_GetParText (ParName,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_GetLinkDataByCod (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... *****/
if (Lnk_DB_CheckIfLinkNameExists (ParName,NewLnkName,Lnk_EditingLnk->LnkCod))
2019-04-09 15:21:23 +02:00
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 */
Lnk_DB_UpdateLnkName (Lnk_EditingLnk->LnkCod,FldName,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_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 *****/
Str_Copy (CurrentLnkName,NewLnkName,MaxBytes);
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 */
Lnk_EditingLnk->LnkCod = ParCod_GetAndCheckPar (ParCod_Lnk);
2014-12-01 23:55:08 +01:00
/* Get the new WWW for the link */
Par_GetParText ("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_GetLinkDataByCod (Lnk_EditingLnk);
2019-04-09 15:21:23 +02:00
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 *****/
Lnk_DB_UpdateLnkWWW (Lnk_EditingLnk->LnkCod,NewWWW);
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,sizeof (Lnk_EditingLnk->WWW) - 1);
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)
{
/***** Begin form to create *****/
Frm_BeginFormTable (ActNewLnk,NULL,NULL,NULL);
2014-12-01 23:55:08 +01:00
/***** Write heading *****/
Lnk_PutHeadLinks ();
2014-12-01 23:55:08 +01:00
HTM_TR_Begin (NULL);
/***** Column to remove link, disabled here *****/
HTM_TD_Begin ("class=\"BM\"");
HTM_TD_End ();
/***** Link code *****/
HTM_TD_Begin ("class=\"CODE\"");
HTM_TD_End ();
/***** Link short name *****/
HTM_TD_Begin ("class=\"CM\"");
HTM_INPUT_TEXT ("ShortName",Lnk_MAX_CHARS_LINK_SHRT_NAME,Lnk_EditingLnk->ShrtName,
HTM_DONT_SUBMIT_ON_CHANGE,
"class=\"INPUT_SHORT_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
/***** Link full name *****/
HTM_TD_Begin ("class=\"CM\"");
HTM_INPUT_TEXT ("FullName",Lnk_MAX_CHARS_LINK_FULL_NAME,Lnk_EditingLnk->FullName,
HTM_DONT_SUBMIT_ON_CHANGE,
"class=\"INPUT_FULL_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
/***** Link WWW *****/
HTM_TD_Begin ("class=\"CM\"");
HTM_INPUT_URL ("WWW",Lnk_EditingLnk->WWW,HTM_DONT_SUBMIT_ON_CHANGE,
"class=\"INPUT_WWW_NARROW INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
HTM_TR_End ();
/***** End form to create *****/
Frm_EndFormTable (Btn_CREATE_BUTTON);
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);
HTM_TH_Span (NULL ,HTM_HEAD_CENTER,1,1,"BT");
HTM_TH (Txt_Code ,HTM_HEAD_RIGHT );
HTM_TH (Txt_Short_name,HTM_HEAD_LEFT );
HTM_TH (Txt_Full_name ,HTM_HEAD_LEFT );
HTM_TH (Txt_WWW ,HTM_HEAD_LEFT );
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_web_address;
2019-04-09 15:21:23 +02:00
extern const char *Txt_Created_new_link_X;
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 link short name */
Par_GetParText ("ShortName",Lnk_EditingLnk->ShrtName,Lnk_MAX_BYTES_LINK_SHRT_NAME);
2014-12-01 23:55:08 +01:00
/* Get link full name */
Par_GetParText ("FullName",Lnk_EditingLnk->FullName,Lnk_MAX_BYTES_LINK_FULL_NAME);
2014-12-01 23:55:08 +01:00
/* Get link URL */
Par_GetParText ("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... *****/
if (Lnk_DB_CheckIfLinkNameExists ("ShortName",Lnk_EditingLnk->ShrtName,-1L))
2019-04-09 15:21:23 +02:00
Ale_CreateAlert (Ale_WARNING,NULL,
Txt_The_link_X_already_exists,
Lnk_EditingLnk->ShrtName);
else if (Lnk_DB_CheckIfLinkNameExists ("FullName",Lnk_EditingLnk->FullName,-1L))
2019-04-09 15:21:23 +02:00
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_web_address);
2014-12-01 23:55:08 +01:00
else // Add new link to database
2019-04-09 15:21:23 +02:00
{
Lnk_DB_CreateLink (Lnk_EditingLnk);
2019-04-09 15:21:23 +02:00
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
Ale_CreateAlertYouMustSpecifyTheShortNameAndTheFullName ();
2014-12-01 23:55:08 +01:00
}
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)
Err_WrongLinkExit ();
2019-04-09 15:21:23 +02:00
/***** Allocate memory for link *****/
if ((Lnk_EditingLnk = malloc (sizeof (*Lnk_EditingLnk))) == NULL)
Err_NotEnoughMemoryExit ();
2019-04-09 15:21:23 +02:00
/***** 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
}