mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
4.7 KiB
165 lines
4.7 KiB
/*
|
|
Some random cgi routines. Used in the LED example and the page that returns the entire
|
|
flash as a binary. Also handles the hit counter on the main page.
|
|
*/
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* Jeroen Domburg <jeroen@spritesmods.com> wrote this file. As long as you retain
|
|
* this notice you can do whatever you want with this stuff. If we meet some day,
|
|
* and you think this stuff is worth it, you can buy me a beer in return.
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#include <esp8266.h>
|
|
#include "cgi.h"
|
|
#include "espfs.h"
|
|
|
|
|
|
//cause I can't be bothered to write an ioGetLed()
|
|
static char currLedState=0;
|
|
|
|
//Cgi that turns the LED on or off according to the 'led' param in the POST data
|
|
int ICACHE_FLASH_ATTR cgiLed(HttpdConnData *connData) {
|
|
int len;
|
|
char buff[1024];
|
|
|
|
if (connData->conn==NULL) {
|
|
//Connection aborted. Clean up.
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
len=httpdFindArg(connData->post->buff, "led", buff, sizeof(buff));
|
|
if (len!=0) {
|
|
currLedState=atoi(buff);
|
|
//ioLed(currLedState);
|
|
}
|
|
|
|
httpdRedirect(connData, "led.tpl");
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
|
|
|
|
//Template code for the led page.
|
|
int ICACHE_FLASH_ATTR tplLed(HttpdConnData *connData, char *token, void **arg) {
|
|
char buff[512];
|
|
if (token==NULL) return HTTPD_CGI_DONE;
|
|
|
|
os_strcpy(buff, "Unknown");
|
|
if (os_strcmp(token, "ledstate")==0) {
|
|
if (currLedState) {
|
|
os_strcpy(buff, "on");
|
|
} else {
|
|
os_strcpy(buff, "off");
|
|
}
|
|
} else if (os_strcmp(token, "topnav")==0) {
|
|
printNav(buff);
|
|
}
|
|
httpdSend(connData, buff, -1);
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
static long hitCounter=0;
|
|
|
|
//Template code for the counter on the index page.
|
|
int ICACHE_FLASH_ATTR tplCounter(HttpdConnData *connData, char *token, void **arg) {
|
|
char buff[64];
|
|
if (token==NULL) return HTTPD_CGI_DONE;
|
|
|
|
if (printSysInfo(buff, token) > 0) {
|
|
// awesome...
|
|
} else if (os_strcmp(token, "head")==0) {
|
|
printHead(connData);
|
|
buff[0] = 0;
|
|
} else if (os_strcmp(token, "version")==0) {
|
|
# define VERS_STR_STR(V) #V
|
|
# define VERS_STR(V) VERS_STR_STR(V)
|
|
os_sprintf(buff, "%s", VERS_STR(VERSION));
|
|
} else if (os_strcmp(token, "counter")==0) {
|
|
hitCounter++;
|
|
os_sprintf(buff, "%ld", hitCounter);
|
|
}
|
|
httpdSend(connData, buff, -1);
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
static char *navLinks[][2] = {
|
|
{ "Home", "/index.tpl" }, { "Wifi", "/wifi/wifi.tpl" }, { "\xC2\xB5""C Console", "/console.tpl" },
|
|
{ "Debug log", "/log.tpl" }, { "Help", "/help.tpl" },
|
|
{ 0, 0 },
|
|
};
|
|
|
|
// Print the navigation links into the buffer and return the length of what got added
|
|
int ICACHE_FLASH_ATTR printNav(char *buff) {
|
|
int len = 0;
|
|
for (uint8_t i=0; navLinks[i][0] != NULL; i++) {
|
|
//os_printf("nav %d: %s -> %s\n", i, navLinks[i][0], navLinks[i][1]);
|
|
len += os_sprintf(buff+len,
|
|
" <li class=\"pure-menu-item\"><a href=\"%s\" class=\"pure-menu-link\">%s</a></li>",
|
|
navLinks[i][1], navLinks[i][0]);
|
|
}
|
|
len += os_sprintf(buff+len, " <li class=\"pure-menu-item\">%dKB</li>",
|
|
system_get_free_heap_size()/1024);
|
|
//os_printf("nav(%d): %s\n", len, buff);
|
|
return len;
|
|
}
|
|
|
|
void ICACHE_FLASH_ATTR printHead(HttpdConnData *connData) {
|
|
char buff[1024];
|
|
|
|
struct EspFsFile *file = espFsOpen("/head.tpl");
|
|
if (file == NULL) {
|
|
os_printf("Header file 'head.tpl' not found\n");
|
|
return;
|
|
}
|
|
|
|
int len = espFsRead(file, buff, 1024);
|
|
if (len == 1024) {
|
|
os_printf("Header file 'head.tpl' too large!\n");
|
|
buff[1023] = 0;
|
|
} else {
|
|
buff[len] = 0; // ensure null termination
|
|
}
|
|
|
|
if (len > 0) {
|
|
char *p = os_strstr(buff, "%topnav%");
|
|
if (p != NULL) {
|
|
char navBuf[512];
|
|
int n = p - buff;
|
|
httpdSend(connData, buff, n);
|
|
printNav(navBuf);
|
|
httpdSend(connData, navBuf, -1);
|
|
httpdSend(connData, buff+n+8, len-n-8);
|
|
} else {
|
|
httpdSend(connData, buff, len);
|
|
}
|
|
}
|
|
espFsClose(file);
|
|
}
|
|
|
|
#define TOKEN(x) (os_strcmp(token, x) == 0)
|
|
|
|
// Handle system information variables and print their value, returns the number of
|
|
// characters appended to buff
|
|
int ICACHE_FLASH_ATTR printSysInfo(char *buff, char *token) {
|
|
if (TOKEN("si_chip_id")) {
|
|
return os_sprintf(buff, "0x%x", system_get_chip_id());
|
|
} else if (TOKEN("si_freeheap")) {
|
|
return os_sprintf(buff, "%dKB", system_get_free_heap_size()/1024);
|
|
} else if (TOKEN("si_uptime")) {
|
|
uint32 t = system_get_time() / 1000000; // in seconds
|
|
return os_sprintf(buff, "%dd%dh%dm%ds", t/(24*3600), (t/(3600))%24, (t/60)%60, t%60);
|
|
} else if (TOKEN("si_boot_version")) {
|
|
return os_sprintf(buff, "%d", system_get_boot_version());
|
|
} else if (TOKEN("si_boot_address")) {
|
|
return os_sprintf(buff, "0x%x", system_get_userbin_addr());
|
|
} else if (TOKEN("si_cpu_freq")) {
|
|
return os_sprintf(buff, "%dMhz", system_get_cpu_freq());
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|