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.
245 lines
7.3 KiB
245 lines
7.3 KiB
/*
|
|
Cgi/template routines for the /wifi url.
|
|
*/
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------------
|
|
* "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 <string.h>
|
|
#include <osapi.h>
|
|
#include "user_interface.h"
|
|
#include "mem.h"
|
|
#include "httpd.h"
|
|
#include "cgi.h"
|
|
#include "io.h"
|
|
#include "espmissingincludes.h"
|
|
|
|
//WiFi access point data
|
|
typedef struct {
|
|
char ssid[32];
|
|
char rssi;
|
|
char enc;
|
|
} ApData;
|
|
|
|
//Scan result
|
|
typedef struct {
|
|
char scanInProgress; //if 1, don't access the underlying stuff from the webpage.
|
|
ApData **apData;
|
|
int noAps;
|
|
} ScanResultData;
|
|
|
|
//Static scan status storage.
|
|
ScanResultData cgiWifiAps;
|
|
|
|
//Callback the code calls when a wlan ap scan is done. Basically stores the result in
|
|
//the cgiWifiAps struct.
|
|
void ICACHE_FLASH_ATTR wifiScanDoneCb(void *arg, STATUS status) {
|
|
int n;
|
|
struct bss_info *bss_link = (struct bss_info *)arg;
|
|
os_printf("wifiScanDoneCb %d\n", status);
|
|
if (status!=OK) {
|
|
cgiWifiAps.scanInProgress=0;
|
|
return;
|
|
}
|
|
|
|
//Clear prev ap data if needed.
|
|
if (cgiWifiAps.apData!=NULL) {
|
|
for (n=0; n<cgiWifiAps.noAps; n++) os_free(cgiWifiAps.apData[n]);
|
|
os_free(cgiWifiAps.apData);
|
|
}
|
|
|
|
//Count amount of access points found.
|
|
n=0;
|
|
while (bss_link != NULL) {
|
|
bss_link = bss_link->next.stqe_next;
|
|
n++;
|
|
}
|
|
//Allocate memory for access point data
|
|
cgiWifiAps.apData=(ApData **)os_malloc(sizeof(ApData *)*n);
|
|
cgiWifiAps.noAps=n;
|
|
os_printf("Scan done: found %d APs\n", n);
|
|
|
|
//Copy access point data to the static struct
|
|
n=0;
|
|
bss_link = (struct bss_info *)arg;
|
|
while (bss_link != NULL) {
|
|
if (n>=cgiWifiAps.noAps) {
|
|
//This means the bss_link changed under our nose. Shouldn't happen!
|
|
//Break because otherwise we will write in unallocated memory.
|
|
os_printf("Huh? I have more than the allocated %d aps!\n", cgiWifiAps.noAps);
|
|
break;
|
|
}
|
|
//Save the ap data.
|
|
cgiWifiAps.apData[n]=(ApData *)os_malloc(sizeof(ApData));
|
|
cgiWifiAps.apData[n]->rssi=bss_link->rssi;
|
|
cgiWifiAps.apData[n]->enc=bss_link->authmode;
|
|
strncpy(cgiWifiAps.apData[n]->ssid, (char*)bss_link->ssid, 32);
|
|
|
|
bss_link = bss_link->next.stqe_next;
|
|
n++;
|
|
}
|
|
//We're done.
|
|
cgiWifiAps.scanInProgress=0;
|
|
}
|
|
|
|
|
|
//Routine to start a WiFi access point scan.
|
|
static void ICACHE_FLASH_ATTR wifiStartScan() {
|
|
// int x;
|
|
if (cgiWifiAps.scanInProgress) return;
|
|
cgiWifiAps.scanInProgress=1;
|
|
#if 0
|
|
//Not sure if this is still needed.
|
|
x=wifi_station_get_connect_status();
|
|
if (x!=STATION_GOT_IP) {
|
|
//Unit probably is trying to connect to a bogus AP. This messes up scanning. Stop that.
|
|
os_printf("STA status = %d. Disconnecting STA...\n", x);
|
|
wifi_station_disconnect();
|
|
}
|
|
#endif
|
|
wifi_station_scan(NULL, wifiScanDoneCb);
|
|
}
|
|
|
|
//This CGI is called from the bit of AJAX-code in wifi.tpl. It will initiate a
|
|
//scan for access points and if available will return the result of an earlier scan.
|
|
//The result is embedded in a bit of JSON parsed by the javascript in wifi.tpl.
|
|
int ICACHE_FLASH_ATTR cgiWiFiScan(HttpdConnData *connData) {
|
|
int len;
|
|
int i;
|
|
char buff[1024];
|
|
httpdStartResponse(connData, 200);
|
|
httpdHeader(connData, "Content-Type", "text/json");
|
|
httpdEndHeaders(connData);
|
|
|
|
if (cgiWifiAps.scanInProgress==1) {
|
|
//We're still scanning. Tell Javascript code that.
|
|
len=os_sprintf(buff, "{\n \"result\": { \n\"inProgress\": \"1\"\n }\n}\n");
|
|
espconn_sent(connData->conn, (uint8 *)buff, len);
|
|
} else {
|
|
//We have a scan result. Pass it on.
|
|
len=os_sprintf(buff, "{\n \"result\": { \n\"inProgress\": \"0\", \n\"APs\": [\n");
|
|
espconn_sent(connData->conn, (uint8 *)buff, len);
|
|
if (cgiWifiAps.apData==NULL) cgiWifiAps.noAps=0;
|
|
for (i=0; i<cgiWifiAps.noAps; i++) {
|
|
//Fill in json code for an access point
|
|
len=os_sprintf(buff, "{\"essid\": \"%s\", \"rssi\": \"%d\", \"enc\": \"%d\"}%s\n",
|
|
cgiWifiAps.apData[i]->ssid, cgiWifiAps.apData[i]->rssi,
|
|
cgiWifiAps.apData[i]->enc, (i==cgiWifiAps.noAps-1)?"":",");
|
|
espconn_sent(connData->conn, (uint8 *)buff, len);
|
|
}
|
|
len=os_sprintf(buff, "]\n}\n}\n");
|
|
espconn_sent(connData->conn, (uint8 *)buff, len);
|
|
//Also start a new scan.
|
|
wifiStartScan();
|
|
}
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
//Temp store for new ap info.
|
|
static struct station_config stconf;
|
|
|
|
/*
|
|
ToDo:
|
|
- Thoroughly test this code
|
|
- Simplify if possible. The cascaded delayed routines are probably not
|
|
needed anymore. I hope.
|
|
*/
|
|
|
|
|
|
//This routine is ran some time after a connection attempt to an access point. If
|
|
//the connect succeeds, this gets the module in STA-only mode.
|
|
static void ICACHE_FLASH_ATTR resetTimerCb(void *arg) {
|
|
int x=wifi_station_get_connect_status();
|
|
if (x==STATION_GOT_IP) {
|
|
//Go to STA mode. This needs a reset, so do that.
|
|
os_printf("Got IP. Going into STA mode..\n");
|
|
wifi_set_opmode(1);
|
|
system_restart();
|
|
} else {
|
|
os_printf("Connect fail. Not going into STA-only mode.\n");
|
|
//Maybe also pass this through on the webpage?
|
|
}
|
|
}
|
|
|
|
//Actually connect to a station. This routine is timed because I had problems
|
|
//with immediate connections earlier. It probably was something else that caused it,
|
|
//but I can't be arsed to put the code back :P
|
|
static void ICACHE_FLASH_ATTR reassTimerCb(void *arg) {
|
|
int x;
|
|
static ETSTimer resetTimer;
|
|
os_printf("Try to connect to AP....\n");
|
|
wifi_station_disconnect();
|
|
wifi_station_set_config(&stconf);
|
|
wifi_station_connect();
|
|
x=wifi_get_opmode();
|
|
if (x!=1) {
|
|
//Schedule disconnect/connect
|
|
os_timer_disarm(&resetTimer);
|
|
os_timer_setfn(&resetTimer, resetTimerCb, NULL);
|
|
os_timer_arm(&resetTimer, 4000, 0);
|
|
}
|
|
}
|
|
|
|
|
|
//This cgi uses the routines above to connect to a specific access point with the
|
|
//given ESSID using the given password.
|
|
int ICACHE_FLASH_ATTR cgiWiFiConnect(HttpdConnData *connData) {
|
|
char essid[128];
|
|
char passwd[128];
|
|
static ETSTimer reassTimer;
|
|
|
|
if (connData->conn==NULL) {
|
|
//Connection aborted. Clean up.
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
httpdFindArg(connData->postBuff, "essid", essid, sizeof(essid));
|
|
httpdFindArg(connData->postBuff, "passwd", passwd, sizeof(passwd));
|
|
|
|
os_strncpy((char*)stconf.ssid, essid, 32);
|
|
os_strncpy((char*)stconf.password, passwd, 64);
|
|
os_printf("Try to connect to AP %s pw %s\n", essid, passwd);
|
|
|
|
//Schedule disconnect/connect
|
|
os_timer_disarm(&reassTimer);
|
|
os_timer_setfn(&reassTimer, reassTimerCb, NULL);
|
|
#if 1 //Set to 0 if you want to disable the actual reconnecting bit
|
|
os_timer_arm(&reassTimer, 1000, 0);
|
|
|
|
httpdRedirect(connData, "connecting.html");
|
|
#else
|
|
httpdRedirect(connData, "/wifi");
|
|
#endif
|
|
return HTTPD_CGI_DONE;
|
|
}
|
|
|
|
//Template code for the WLAN page.
|
|
void ICACHE_FLASH_ATTR tplWlan(HttpdConnData *connData, char *token, void **arg) {
|
|
char buff[1024];
|
|
int x;
|
|
static struct station_config stconf;
|
|
if (token==NULL) return;
|
|
wifi_station_get_config(&stconf);
|
|
|
|
os_strcpy(buff, "Unknown");
|
|
if (os_strcmp(token, "WiFiMode")==0) {
|
|
x=wifi_get_opmode();
|
|
if (x==1) os_strcpy(buff, "Client");
|
|
if (x==2) os_strcpy(buff, "SoftAP");
|
|
if (x==3) os_strcpy(buff, "STA+AP");
|
|
} else if (os_strcmp(token, "currSsid")==0) {
|
|
os_strcpy(buff, (char*)stconf.ssid);
|
|
} else if (os_strcmp(token, "WiFiPasswd")==0) {
|
|
os_strcpy(buff, (char*)stconf.password);
|
|
}
|
|
espconn_sent(connData->conn, (uint8 *)buff, os_strlen(buff));
|
|
}
|
|
|
|
|
|
|