swad-core/swad_parameter.h

114 lines
4.5 KiB
C
Raw Normal View History

2014-12-01 23:55:08 +01:00
// swad_parameter.h: CGI parameters
#ifndef _SWAD_PAR
#define _SWAD_PAR
/*
SWAD (Shared Workspace At a Distance in Spanish),
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 ***********************************/
/*****************************************************************************/
2015-10-16 02:24:29 +02:00
#include <stdbool.h> // For boolean type
#include <stddef.h> // For size_t
2014-12-01 23:55:08 +01:00
#include "swad_action.h"
2020-02-18 09:19:33 +01:00
#include "swad_string.h"
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/************************** Public types and constants ***********************/
/*****************************************************************************/
2016-03-30 14:25:04 +02:00
struct StartLength
{
unsigned long Start;
size_t Length;
};
struct Par_Param
2016-03-30 14:25:04 +02:00
{
2016-03-31 02:15:17 +02:00
struct StartLength Name; // Parameter name
2016-04-01 01:59:27 +02:00
struct StartLength FileName; // optional, present only when uploading files
struct StartLength ContentType; // optional, present only when uploading files
2016-03-31 02:15:17 +02:00
struct StartLength Value; // Parameter value or file content
struct Par_Param *Next;
2016-03-30 14:25:04 +02:00
};
typedef enum
{
Par_METHOD_GET,
Par_METHOD_POST
} Par_Method_t;
2015-04-07 21:44:24 +02:00
typedef enum
{
Par_PARAM_SINGLE,
Par_PARAM_MULTIPLE,
} Par_ParamType_t; // Parameter is present only one time / multiple times
2015-04-07 21:44:24 +02:00
2014-12-01 23:55:08 +01:00
/*****************************************************************************/
/***************************** Public prototypes *****************************/
/*****************************************************************************/
Act_Content_t Par_GetContentReceivedByCGI (void);
2014-12-01 23:55:08 +01:00
bool Par_GetQueryString (void);
Par_Method_t Par_GetMethod (void);
void Par_CreateListOfPars (void);
void Par_FreePars (void);
unsigned Par_GetPar (Par_ParamType_t ParType,const char *ParName,
char *ParValue,size_t MaxBytes,
struct Par_Param **ParPtr);
2016-03-30 17:37:56 +02:00
void Par_GetMainPars (void);
2014-12-01 23:55:08 +01:00
//------------------------------ Get parameters -------------------------------
unsigned Par_GetParText (const char *ParName,char *ParValue,size_t MaxBytes);
unsigned long Par_GetParUnsignedLong (const char *ParName,
unsigned long Min,
unsigned long Max,
unsigned long Default);
long Par_GetParLong (const char *ParName);
bool Par_GetParBool (const char *ParName);
unsigned Par_GetParHTML (const char *ParName,char *ParValue,size_t MaxBytes);
unsigned Par_GetParMultiToText (const char *ParName,char *ParValue,size_t MaxBytes);
unsigned Par_GetParAndChangeFormat (const char *ParName,char *ParValue,size_t MaxBytes,
Str_ChangeTo_t ChangeTo,
Str_RemoveSpaces_t RemoveLeadingAndTrailingSpaces);
2014-12-01 23:55:08 +01:00
bool Par_GetNextStrUntilSeparParMult (const char **StrSrc,char *StrDst,size_t LongMax);
2019-09-24 01:41:51 +02:00
bool Par_GetNextStrUntilComma (const char **StrSrc,char *StrDst,size_t LongMax);
2020-05-12 02:45:03 +02:00
void Par_ReplaceSeparatorMultipleByComma (char *Str);
2014-12-01 23:55:08 +01:00
//------------------------------ Put parameters -------------------------------
void Par_PutParUnsigned (const char *Id,const char *ParName,unsigned ParValue);
void Par_PutParUnsignedDisabled (const char *Id,const char *ParName,unsigned ParValue);
void Par_PutParLong (const char *Id,const char *ParName,long ParValue);
void Par_PutParChar (const char *ParName,char ParValue);
void Par_PutParString (const char *Id,const char *ParName,const char *ParValue);
void Par_PutParOrder (unsigned SelectedOrder);
2014-12-01 23:55:08 +01:00
//----------------------------- Client IP address -----------------------------
void Par_SetIP (void);
const char *Par_GetIP (void);
2014-12-01 23:55:08 +01:00
#endif