linbpq/HTMLCommonCode.c

125 lines
2.8 KiB
C
Raw Normal View History

2022-08-28 09:35:46 +01:00
/*
Copyright 2001-2018 John Wiseman G8BPQ
This file is part of LinBPQ/BPQ32.
LinBPQ/BPQ32 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LinBPQ/BPQ32 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with LinBPQ/BPQ32. If not, see http://www.gnu.org/licenses
*/
// General C Routines common to bpq32 and linbpq.mainly moved from BPQ32.c
#pragma data_seg("_BPQDATA")
#define _CRT_SECURE_NO_DEPRECATE
#pragma data_seg("_BPQDATA")
#include "CHeaders.h"
#include "templatedefs.c" // Inline definitions from HTLMPages
char * GetTemplateFromFile(int Version, char * FN)
{
int FileSize;
char * MsgBytes;
char MsgFile[265];
FILE * hFile;
size_t ReadLen;
BOOL Special = FALSE;
struct stat STAT;
if (strcmp(FN, "WebMailMsg.txt") == 0)
return WebMailMsgtxt();
if (strcmp(FN, "FwdPage.txt") == 0)
return FwdPagetxt();
if (strcmp(FN, "FwdDetail.txt") == 0)
return FwdDetailtxt();
if (strcmp(FN, "webscript.js") == 0)
return webscriptjs();
if (strcmp(FN, "WebMailPage.txt") == 0)
return WebMailPagetxt();
if (strcmp(FN, "MainConfig.txt") == 0)
return MainConfigtxt();
if (strcmp(FN, "MsgPage.txt") == 0)
return MsgPagetxt();
if (strcmp(FN, "UserDetail.txt") == 0)
return UserDetailtxt();
if (strcmp(FN, "UserPage.txt") == 0)
return UserPagetxt();
if (strcmp(FN, "Housekeeping.txt") == 0)
return Housekeepingtxt();
if (strcmp(FN, "WP.txt") == 0)
return WPtxt();
if (strcmp(FN, "ChatConfig.txt") == 0)
return ChatConfigtxt();
if (strcmp(FN, "ChatStatus.txt") == 0)
return ChatStatustxt();
sprintf(MsgFile, "%s/HTML/%s", BPQDirectory, FN);
if (stat(MsgFile, &STAT) == -1)
{
MsgBytes = _strdup("File is missing");
return MsgBytes;
}
hFile = fopen(MsgFile, "rb");
if (hFile == 0)
{
MsgBytes = _strdup("File is missing");
return MsgBytes;
}
FileSize = STAT.st_size;
MsgBytes = malloc(FileSize + 1);
ReadLen = fread(MsgBytes, 1, FileSize, hFile);
MsgBytes[FileSize] = 0;
fclose(hFile);
// Check Version
if (Version)
{
int PageVersion = 0;
if (memcmp(MsgBytes, "<!-- Version", 12) == 0)
PageVersion = atoi(&MsgBytes[13]);
if (Version != PageVersion)
{
free(MsgBytes);
MsgBytes = malloc(256);
sprintf(MsgBytes, "Wrong Version of HTML Page %s - is %d should be %d. Please update", FN, PageVersion, Version);
}
}
return MsgBytes;
}