swad-core/swad_link.c

778 lines
27 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.
2017-01-13 01:51:23 +01:00
Copyright (C) 1999-2017 Antonio Ca<EFBFBD>as Vargas
2014-12-01 23:55:08 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General 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
#include <stdlib.h> // For calloc
#include <string.h> // For string functions
#include "swad_constant.h"
#include "swad_database.h"
#include "swad_global.h"
#include "swad_link.h"
#include "swad_parameter.h"
#include "swad_text.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/***************************** Private constants *****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private variables *****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
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);
2014-12-01 23:55:08 +01:00
static void Lnk_ListLinksForEdition (void);
static void Lnk_PutParamLnkCod (long LnkCod);
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);
static void Lnk_PutFormToCreateLink (void);
static void Lnk_PutHeadLinks (void);
static void Lnk_CreateLink (struct Link *Lnk);
/*****************************************************************************/
/*************************** 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;
/***** Get list of links *****/
Lnk_GetListLinks ();
2015-07-24 13:51:29 +02:00
/***** Write all the links *****/
if (Gbl.Links.Num)
{
2016-03-16 22:40:35 +01:00
Lay_StartRoundFrame (NULL,Txt_Links,
Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM ? Lnk_PutIconToEditLinks :
2016-11-12 22:00:50 +01:00
NULL,
2016-11-28 10:14:19 +01:00
Hlp_SYSTEM_Links);
2015-07-24 13:51:29 +02:00
Lnk_WriteListOfLinks ();
Lay_EndRoundFrame ();
}
/***** Free list of links *****/
Lnk_FreeListLinks ();
}
2016-03-16 22:40:35 +01:00
/*****************************************************************************/
/************************** Put icon to edit links ***************************/
/*****************************************************************************/
static void Lnk_PutIconToEditLinks (void)
{
extern const char *Txt_Edit;
2016-07-01 16:32:42 +02:00
Lay_PutContextualLink (ActEdiLnk,NULL,
"edit64x64.png",
Txt_Edit,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)
{
/***** Get list of links *****/
Lnk_GetListLinks ();
/***** Write all the links *****/
2014-12-01 23:55:08 +01:00
if (Gbl.Links.Num)
{
2015-11-25 21:07:50 +01:00
fprintf (Gbl.F.Out,"<div class=\"LEFT_RIGHT_CELL\">"
2015-11-25 20:50:19 +01:00
"<div id=\"institutional_links\" class=\"INS_LNK\">");
2015-07-24 13:51:29 +02:00
Lnk_WriteListOfLinks ();
fprintf (Gbl.F.Out,"</div>"
2015-11-25 20:50:19 +01:00
"</div>");
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 *****/
fprintf (Gbl.F.Out,"<ul class=\"LIST_LEFT\">");
/***** Write all links *****/
for (NumLnk = 0;
NumLnk < Gbl.Links.Num;
NumLnk++)
/* Write data of this link */
fprintf (Gbl.F.Out,"<li class=\"INS_LNK\">"
"<a href=\"%s\" title=\"%s\" class=\"INS_LNK\""
" target=\"_blank\">"
"%s"
"</a>"
"</li>",
Gbl.Links.Lst[NumLnk].WWW,
Gbl.Links.Lst[NumLnk].FullName,
2016-10-28 10:03:37 +02:00
Gbl.Links.Lst[NumLnk].ShrtName);
2015-07-24 13:51:29 +02:00
/***** List end *****/
fprintf (Gbl.F.Out,"</ul>");
}
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************************** Put forms to edit links **************************/
/*****************************************************************************/
void Lnk_EditLinks (void)
{
extern const char *Txt_There_are_no_links;
/***** Get list of links *****/
Lnk_GetListLinks ();
2016-03-16 13:28:16 +01:00
if (!Gbl.Links.Num)
2015-02-08 17:35:44 +01:00
/***** Help message *****/
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_INFO,Txt_There_are_no_links);
/***** Put a form to create a new link *****/
Lnk_PutFormToCreateLink ();
/***** Forms to edit current links *****/
if (Gbl.Links.Num)
Lnk_ListLinksForEdition ();
/***** Free list of links *****/
Lnk_FreeListLinks ();
}
/*****************************************************************************/
/**************************** List all the links *****************************/
/*****************************************************************************/
void Lnk_GetListLinks (void)
{
char Query[512];
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned long NumRows;
unsigned NumLnk;
struct Link *Lnk;
if (Gbl.DB.DatabaseIsOpen)
{
/***** Get institutional links from database *****/
sprintf (Query,"SELECT LnkCod,ShortName,FullName,WWW"
" FROM links ORDER BY ShortName");
NumRows = DB_QuerySELECT (Query,&mysql_res,"can not get institutional links");
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)
Lay_ShowErrorAndExit ("Not enough memory to store institutional links.");
/***** 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],
Lnk_MAX_LENGTH_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],
Lnk_MAX_LENGTH_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],
Cns_MAX_LENGTH_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)
{
char Query[1024];
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 *****/
sprintf (Query,"SELECT ShortName,FullName,WWW FROM links WHERE LnkCod='%ld'",
Lnk->LnkCod);
NumRows = DB_QuerySELECT (Query,&mysql_res,"can not get data of an institutional link");
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],
Lnk_MAX_LENGTH_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],
Lnk_MAX_LENGTH_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],
Cns_MAX_LENGTH_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 *****/
free ((void *) Gbl.Links.Lst);
Gbl.Links.Lst = NULL;
Gbl.Links.Num = 0;
}
}
/*****************************************************************************/
/*************************** List all the links ******************************/
/*****************************************************************************/
static void Lnk_ListLinksForEdition (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_Links;
unsigned NumLnk;
struct Link *Lnk;
2016-11-28 10:14:19 +01:00
Lay_StartRoundFrameTable (NULL,Txt_Links,NULL,Hlp_SYSTEM_Links_edit,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];
/* Put icon to remove link */
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"BM\">");
Act_FormStart (ActRemLnk);
Lnk_PutParamLnkCod (Lnk->LnkCod);
2015-07-22 19:59:28 +02:00
Lay_PutIconRemove ();
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>");
2014-12-01 23:55:08 +01:00
/* Link code */
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"DAT RIGHT_MIDDLE\">"
"%ld"
2014-12-23 17:12:45 +01:00
"</td>",
2014-12-01 23:55:08 +01:00
Lnk->LnkCod);
/* Link short name */
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
Act_FormStart (ActRenLnkSho);
Lnk_PutParamLnkCod (Lnk->LnkCod);
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-10-28 10:03:37 +02:00
Lnk_MAX_LENGTH_LINK_SHRT_NAME,Lnk->ShrtName,
2016-01-14 10:31:09 +01:00
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
/* Link full name */
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
Act_FormStart (ActRenLnkFul);
Lnk_PutParamLnkCod (Lnk->LnkCod);
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();\" />",
2014-12-01 23:55:08 +01:00
Lnk_MAX_LENGTH_LINK_FULL_NAME,Lnk->FullName,
2016-01-14 10:31:09 +01:00
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
/* Link WWW */
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">");
2014-12-01 23:55:08 +01:00
Act_FormStart (ActChgLnkWWW);
Lnk_PutParamLnkCod (Lnk->LnkCod);
2016-11-20 14:32:15 +01:00
fprintf (Gbl.F.Out,"<input type=\"url\" 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();\" />",
2014-12-01 23:55:08 +01:00
Cns_MAX_LENGTH_WWW,Lnk->WWW,
2016-01-14 10:31:09 +01:00
Gbl.Form.Id);
2015-03-13 00:16:02 +01:00
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>"
"</tr>");
2014-12-01 23:55:08 +01:00
}
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2014-12-01 23:55:08 +01:00
}
/*****************************************************************************/
/******************** Write parameter with code of link **********************/
/*****************************************************************************/
static void Lnk_PutParamLnkCod (long LnkCod)
{
Par_PutHiddenParamLong ("LnkCod",LnkCod);
}
/*****************************************************************************/
/********************* 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;
char Query[512];
struct Link Lnk;
/***** Get link code *****/
if ((Lnk.LnkCod = Lnk_GetParamLnkCod ()) == -1L)
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/***** Get data of the link from database *****/
Lnk_GetDataOfLinkByCod (&Lnk);
/***** Remove link *****/
sprintf (Query,"DELETE FROM links WHERE LnkCod='%ld'",Lnk.LnkCod);
DB_QueryDELETE (Query,"can not remove an institutional link");
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_Link_X_removed,
2016-10-28 10:03:37 +02:00
Lnk.ShrtName);
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
/***** Show the form again *****/
Lnk_EditLinks ();
}
/*****************************************************************************/
/********************* Change the short name of a link ***********************/
/*****************************************************************************/
void Lnk_RenameLinkShort (void)
{
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)
{
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_You_can_not_leave_the_name_of_the_link_X_empty;
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;
char Query[512];
struct Link *Lnk;
const char *ParamName = NULL; // Initialized to avoid warning
const char *FieldName = NULL; // Initialized to avoid warning
unsigned MaxLength = 0; // Initialized to avoid warning
char *CurrentLnkName = NULL; // Initialized to avoid warning
2017-01-28 15:58:46 +01:00
char NewLnkName[Lnk_MAX_LENGTH_LINK_FULL_NAME + 1];
2014-12-01 23:55:08 +01:00
Lnk = &Gbl.Links.EditingLnk;
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";
2016-10-28 10:03:37 +02:00
MaxLength = Lnk_MAX_LENGTH_LINK_SHRT_NAME;
CurrentLnkName = Lnk->ShrtName;
2014-12-01 23:55:08 +01:00
break;
case Cns_FULL_NAME:
ParamName = "FullName";
FieldName = "FullName";
MaxLength = Lnk_MAX_LENGTH_LINK_FULL_NAME;
CurrentLnkName = Lnk->FullName;
break;
}
/***** Get parameters from form *****/
/* Get the code of the link */
if ((Lnk->LnkCod = Lnk_GetParamLnkCod ()) == -1L)
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/* Get the new name for the link */
Par_GetParToText (ParamName,NewLnkName,MaxLength);
/***** Get from the database the old names of the link *****/
Lnk_GetDataOfLinkByCod (Lnk);
/***** Check if new name is empty *****/
if (!NewLnkName[0])
{
sprintf (Gbl.Message,Txt_You_can_not_leave_the_name_of_the_link_X_empty,
CurrentLnkName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
else
{
/***** Check if old and new names are the same (this happens when user press enter with no changes in the form) *****/
if (strcmp (CurrentLnkName,NewLnkName)) // Different names
{
/***** If link was in database... *****/
if (Lnk_CheckIfLinkNameExists (ParamName,NewLnkName,Lnk->LnkCod))
{
sprintf (Gbl.Message,Txt_The_link_X_already_exists,
NewLnkName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
else
{
/* Update the table changing old name by new name */
sprintf (Query,"UPDATE links SET %s='%s' WHERE LnkCod='%ld'",
FieldName,NewLnkName,Lnk->LnkCod);
DB_QueryUPDATE (Query,"can not update the name of an institutional link");
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_The_link_X_has_been_renamed_as_Y,
CurrentLnkName,NewLnkName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
}
else // The same name
{
sprintf (Gbl.Message,Txt_The_name_of_the_link_X_has_not_changed,
CurrentLnkName);
Lay_ShowAlert (Lay_INFO,Gbl.Message);
}
}
/***** Show the form again *****/
2017-01-17 03:10:43 +01:00
Str_Copy (CurrentLnkName,NewLnkName,
MaxLength);
2014-12-01 23:55:08 +01:00
Lnk_EditLinks ();
}
/*****************************************************************************/
/********************** Check if the name of link exists *********************/
/*****************************************************************************/
static bool Lnk_CheckIfLinkNameExists (const char *FieldName,const char *Name,long LnkCod)
{
char Query[512];
/***** Get number of links with a name from database *****/
sprintf (Query,"SELECT COUNT(*) FROM links WHERE %s='%s' AND LnkCod<>'%ld'",
FieldName,Name,LnkCod);
return (DB_QueryCOUNT (Query,"can not check if the name of an institutional link already existed") != 0);
}
/*****************************************************************************/
/**************** Change the WWW of an institutional link ********************/
/*****************************************************************************/
void Lnk_ChangeLinkWWW (void)
{
extern const char *Txt_The_new_web_address_is_X;
extern const char *Txt_You_can_not_leave_the_web_address_empty;
struct Link *Lnk;
2017-01-28 15:58:46 +01:00
char Query[256 + Cns_MAX_LENGTH_WWW];
char NewWWW[Cns_MAX_LENGTH_WWW + 1];
2014-12-01 23:55:08 +01:00
Lnk = &Gbl.Links.EditingLnk;
/***** Get parameters from form *****/
/* Get the code of the link */
if ((Lnk->LnkCod = Lnk_GetParamLnkCod ()) == -1L)
Lay_ShowErrorAndExit ("Code of institutional link is missing.");
/* Get the new WWW for the link */
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 links SET WWW='%s' WHERE LnkCod='%ld'",
NewWWW,Lnk->LnkCod);
DB_QueryUPDATE (Query,"can not update the web of an institutional link");
/***** Write message to show the change made *****/
sprintf (Gbl.Message,Txt_The_new_web_address_is_X,
NewWWW);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
else
Lay_ShowAlert (Lay_WARNING,Txt_You_can_not_leave_the_web_address_empty);
/***** Show the form again *****/
2017-01-17 03:10:43 +01:00
Str_Copy (Lnk->WWW,NewWWW,
Cns_MAX_LENGTH_WWW);
2014-12-01 23:55:08 +01:00
Lnk_EditLinks ();
}
/*****************************************************************************/
/********************* 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;
struct Link *Lnk;
Lnk = &Gbl.Links.EditingLnk;
/***** Start form *****/
Act_FormStart (ActNewLnk);
/***** Start of frame *****/
2016-11-28 10:14:19 +01:00
Lay_StartRoundFrameTable (NULL,Txt_New_link,NULL,Hlp_SYSTEM_Links_edit,2);
2014-12-01 23:55:08 +01:00
/***** Write heading *****/
Lnk_PutHeadLinks ();
/***** Link code *****/
2014-12-23 17:12:45 +01:00
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"BM\"></td>"
2014-12-01 23:55:08 +01:00
"<td></td>");
/***** Link short name *****/
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">"
"<input type=\"text\" name=\"ShortName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
2016-11-19 20:20:40 +01:00
" class=\"INPUT_SHORT_NAME\""
" required=\"required\" />"
2014-12-01 23:55:08 +01:00
"</td>",
2016-10-28 10:03:37 +02:00
Lnk_MAX_LENGTH_LINK_SHRT_NAME,Lnk->ShrtName);
2014-12-01 23:55:08 +01:00
/***** Link full name *****/
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">"
"<input type=\"text\" name=\"FullName\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
2016-11-19 20:20:40 +01:00
" class=\"INPUT_FULL_NAME\""
" required=\"required\" />"
2014-12-01 23:55:08 +01:00
"</td>",
Lnk_MAX_LENGTH_LINK_FULL_NAME,Lnk->FullName);
/***** Link WWW *****/
2015-08-06 12:31:05 +02:00
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">"
2016-11-20 14:32:15 +01:00
"<input type=\"url\" name=\"WWW\""
2015-12-05 21:15:30 +01:00
" maxlength=\"%u\" value=\"%s\""
2016-11-19 20:20:40 +01:00
" class=\"INPUT_WWW\""
" required=\"required\" />"
2014-12-23 17:12:45 +01:00
"</td>"
2014-12-01 23:55:08 +01:00
"</tr>",
Cns_MAX_LENGTH_WWW,Lnk->WWW);
2015-04-11 23:46:21 +02:00
/***** Send button and end frame *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTableWithButton (Lay_CREATE_BUTTON,Txt_Create_link);
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 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;
2014-12-23 17:12:45 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-09-05 19:19:39 +02:00
"<th class=\"BM\"></th>"
2015-09-06 20:02:14 +02:00
"<th class=\"RIGHT_MIDDLE\">"
2014-12-23 17:12:45 +01:00
"%s"
2015-09-05 19:19:39 +02:00
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-23 17:12:45 +01:00
"%s"
2015-09-05 19:19:39 +02:00
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-23 17:12:45 +01:00
"%s"
2015-09-05 19:19:39 +02:00
"</th>"
2015-09-06 20:02:14 +02:00
"<th class=\"LEFT_MIDDLE\">"
2014-12-23 17:12:45 +01:00
"%s"
2015-09-05 19:19:39 +02:00
"</th>"
2014-12-01 23:55:08 +01:00
"</tr>",
Txt_Code,
2015-02-04 20:03:23 +01:00
Txt_Short_name,
Txt_Full_name,
2014-12-01 23:55:08 +01:00
Txt_WWW);
}
/*****************************************************************************/
/******************* Receive form to create a new link ***********************/
/*****************************************************************************/
void Lnk_RecFormNewLink (void)
{
extern const char *Txt_The_link_X_already_exists;
extern const char *Txt_You_must_specify_the_URL_of_the_new_link;
extern const char *Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_link;
struct Link *Lnk;
Lnk = &Gbl.Links.EditingLnk;
/***** Get parameters from form *****/
/* Get link short name */
2016-10-28 10:03:37 +02:00
Par_GetParToText ("ShortName",Lnk->ShrtName,Lnk_MAX_LENGTH_LINK_SHRT_NAME);
2014-12-01 23:55:08 +01:00
/* Get link full name */
Par_GetParToText ("FullName",Lnk->FullName,Lnk_MAX_LENGTH_LINK_FULL_NAME);
/* Get link URL */
Par_GetParToText ("WWW",Lnk->WWW,Cns_MAX_LENGTH_WWW);
2016-10-28 10:03:37 +02:00
if (Lnk->ShrtName[0] && Lnk->FullName[0]) // If there's a link name
2014-12-01 23:55:08 +01:00
{
/***** If name of link was in database... *****/
2016-10-28 10:03:37 +02:00
if (Lnk_CheckIfLinkNameExists ("ShortName",Lnk->ShrtName,-1L))
2014-12-01 23:55:08 +01:00
{
sprintf (Gbl.Message,Txt_The_link_X_already_exists,
2016-10-28 10:03:37 +02:00
Lnk->ShrtName);
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
else if (Lnk_CheckIfLinkNameExists ("FullName",Lnk->FullName,-1L))
{
sprintf (Gbl.Message,Txt_The_link_X_already_exists,
Lnk->FullName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
else if (!Lnk->WWW[0])
Lay_ShowAlert (Lay_WARNING,Txt_You_must_specify_the_URL_of_the_new_link);
else // Add new link to database
Lnk_CreateLink (Lnk);
}
else // If there is not a link name
Lay_ShowAlert (Lay_WARNING,Txt_You_must_specify_the_short_name_and_the_full_name_of_the_new_link);
/***** Show the form again *****/
Lnk_EditLinks ();
}
/*****************************************************************************/
/**************************** Create a new link ******************************/
/*****************************************************************************/
static void Lnk_CreateLink (struct Link *Lnk)
{
extern const char *Txt_Created_new_link_X;
char Query[1024];
/***** Create a new link *****/
2014-12-23 17:12:45 +01:00
sprintf (Query,"INSERT INTO links (ShortName,FullName,WWW)"
2014-12-01 23:55:08 +01:00
" VALUES ('%s','%s','%s')",
2016-10-28 10:03:37 +02:00
Lnk->ShrtName,Lnk->FullName,Lnk->WWW);
2014-12-01 23:55:08 +01:00
DB_QueryINSERT (Query,"can not create institutional link");
/***** Write success message *****/
sprintf (Gbl.Message,Txt_Created_new_link_X,
2016-10-28 10:03:37 +02:00
Lnk->ShrtName);
2014-12-01 23:55:08 +01:00
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}