#include #include "ausreg-cd.h" const char *banner = CD_NAME " " CD_VERSION " compiled on " __DATE__ " @ " __TIME__ " (%d)"; const char *cmdNames[9] = { "check", "info", "poll", "transfer query", "create", "renew", "update", "delete", "transfer" }; char theBanner[256]; int targetHost = 0; mdDG mdg; int is_numeric(const char *p) { int i = strlen(p),j=0; if (*p) { char c; while ((c=*p++)) { j++; if (!isdigit(c)) { if (j == i) return 2; else return 0; } } return 1; } return 0; } void mdCommander::doHeader() { int displayCmd = cmdsNow ? cmdNow + 1 : 0; clear(); mvprintw(0,(col-strlen(banner))/2,"%s",theBanner); sprintf(wwork,"Target AC host: %d this one: %d commmands: %d current: %d", targetHost,mdStdDevIdx,activeCommands,displayCmd); mvprintw(1,(col-strlen(wwork))/2,"%s",wwork); } void mdCommander::digestibleLines() { char *sp; int nLines=0, wrow=5; nocbreak(); for (;argsNow[cmdNow] < MAX_CMD_ARGS;argsNow[cmdNow]++) {sp = commandArgs[cmdNow][argsNow[cmdNow]++] = (char *) malloc(256); mvgetstr(wrow++,2,sp); if (!strlen(sp)) break; } cbreak(); prompt(false); } void mdCommander::prompt(bool forStrings) { if (forStrings) mvprintw(row-1,1,">>"); else mvprintw(row-1,1,"> "); } void mdCommander::driver() { bool rc, x; char next,rawString[128],work[128]; const char *mdErrCode = ""; int i,commandLength; activeCommands = 0; cmdNow = 0; cmdsNow = 0; memset(commandsNow,0,sizeof(commandsNow)); memset(argsNow,0,sizeof(argsNow)); initscr(); cbreak(); greet(); while(acceptingInput) { mvprintw(row-1,1,"> "); next=0; i=0; memset(rawString,0,sizeof(rawString)); while(next != '\012') { next = mvgetch(row-1,2+i); rawString[i++] = next; if (i > (sizeof(rawString) - 1)) { say((char *)"Max length exceeded!"); continue; } if (next == '\012') rawString[strlen(rawString)-1] = 0; } if (!strlen(rawString)) continue; if (strlen(rawString) == 1) { switch(rawString[0]) { case '1': ; case '2': ; case '3': ; case '4': ; case '5': ; case '6': ; case '7': ; case '8': ; case '9': goto retarget ; case '!': runCommand(false); break; case '?': help(); break; case 'e': eppMainMenu(); break; case 'a': acMainMenu(); break; case 'c': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; check(false); break; case 'p': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; poll(false); break; case 'i': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; info(false); break; case 't': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; queryTransfer(false); break; case 'C': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; create(false); break; case 'R': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; renew(false); break; case 'U': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; update(false); break; case 'D': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; trash(false); break; case 'T': commandsNow[(cmdNow=cmdsNow++)]; activeCommands++; transfer(false); break; } continue; } if (strlen(rawString) == 2) { if (!strcmp(rawString,"??")) { showCommand(true); continue; } if (!strcmp(rawString,"!!")) { runCommand(true); continue; } } if (is_numeric(rawString) >= 1) { retarget: targetHost = atoi(rawString); doHeader(); continue; } if (is_numeric(rawString+1) >= 1) { int targetCmd = atoi(rawString+1); switch(rawString[0]) { case 'C': if (isValidCmd(targetCmd,false)) { cmdNow = --targetCmd; doHeader();} else say((char *)"Invalid Command Index"); break; case 'E': if (isValidCmd(targetCmd,false)) { cmdNow = --targetCmd; editingCommand(false); doHeader();} break; case 'S': if (isValidCmd(targetCmd,false)) { cmdNow = --targetCmd; sendCommand(cmdNow); doHeader(); } else say((char *)"Invalid Command Index"); break; case 'X': if (!targetCmd) {targetCmd = 0; x = true;} else {targetCmd--; x = false;} if (isValidCmd(targetCmd,true)) { flushCommand(targetCmd,x); doHeader(); } else say((char *)"Invalid Command Index"); break; } continue; } if (strlen(rawString) >= 3 && strlen(rawString) <= 5 ) {if (!strcmp(rawString,"log")) { sprintf(wwork,"cut -b 1-%d /tmp/ausreg-cd.log | less",col); system(wwork); clear(); continue; } if (!strcmp(rawString,"mlog")) { sprintf(wwork,"cut -b 1-%d /tmp/drde-cliever.log | less",col); system(wwork); clear(); continue; } if (!strcmp(rawString,"done")) { goto done; } if (!strcmp(rawString,"quit")) { thisConfig->terminateRequest = true; goto done; } continue; } } done: nocbreak(); endwin(); } void mdCommander::say(char *what) { memset(wwork,' ',sizeof(wwork)); mvprintw(row-2,1,wwork); mvprintw(row-2,1,what); } void mdCommander::greet() { const char *title="AusReg Cliever Commander", *prompt="? for main menu or enter commander command now"; sprintf(theBanner,banner,thisConfig->shellProcess); getmaxyx(stdscr,row,col); mvprintw(0,(col-strlen(banner))/2,"%s",theBanner); mvprintw(row/2,(col-strlen(title))/2,"%s",title); mvprintw(row-2,1,"%s",prompt); refresh(); acceptingInput = true; EPPmode = true; } void mdCommander::help() { doHeader(); mvprintw(5,10," a - AC system control menu"); mvprintw(6,10," e - standard EPP command menu"); mvprintw(7,10," ? - display this screen"); mvprintw(8,10," ?? - display commands"); mvprintw(9,10," ! - run the active command"); mvprintw(10,10," !! - run active commands"); mvprintw(11,10," C - make the active command"); mvprintw(12,10," E - display/edit command "); mvprintw(13,10," S - send command "); mvprintw(14,10," X - discard the command(s)"); mvprintw(15,10," - make the target EPP server"); mvprintw(16,10," log - display this cliever's log"); mvprintw(17,10," mlog - display the master daemon log"); mvprintw(18,10," done - terminate commander but not process"); mvprintw(19,10," quit - terminate this process and its' children"); mvprintw(23,5," is an integer, above active everywhere outside data entry (>>)"); mvprintw(24,5,"no space before , X0 to delete all commands."); } void mdCommander::eppMainMenu() { doHeader(); mvprintw(5,10," Create a new EPP command"); mvprintw(10,10," Queries "); mvprintw(12,10," c - check"); mvprintw(13,10," i - info"); mvprintw(14,10," p - poll"); mvprintw(15,10," t - transfer query"); mvprintw(17,10," Transactions"); mvprintw(19,10," C - create"); mvprintw(20,10," R - renew"); mvprintw(21,10," U - update"); mvprintw(22,10," D - delete"); mvprintw(23,10," T - transfer"); } void mdCommander::acMainMenu() { doHeader(); mvprintw(5,(col-strlen("AC System Directives"))/2,"AC System Directives"); mvprintw(15,10," (H)ALT - Flush queues, stop, ignore incoming requests"); mvprintw(16,10," (L)OAD - Resume execution, accept work"); mvprintw(17,10," (B)ANG - Force reload the entire AC system"); mvprintw(20,10,"These are only active on this screen, there's no confirmation."); } bool sendEPPCommand() { mdg.dg.hdr.sourceHandle = thisCliever->myHandle; mdg.dg.hdr.payloadSize = 0; mdg.dg.hdr.msgType = MDDG_CDRESET; return thisCliever->fg->send(mdg.dg); } bool mdCommander::runCommand(bool allOfEm) { bool value=false; if (!activeCommands) {say((char *)"There is no active command."); goto done;} say((char *)"Command execution temporarily disabled."); done: return value; } //-------------------------------- void mdCommander::flushCommand(int which,bool allOfEm){ int i,j; if (!allOfEm) { if (argsNow[which]) { for (i=0;i of arg to replace, A to add, - to erase, just enter to finish"); prompt(true); mvgetstr(row-1,2,sp); if (!strlen(sp)) editing = false; else { if (*sp == 'A' || *sp == 'a') { if (strlen(sp)) { sp = commandArgs[cmdNow][argsNow[cmdNow]++] = (char *) malloc(256); mvgetstr(row-1,2,sp); } continue; } editLine = atoi(sp); if (editLine>0) { mvgetstr(row-1,2,sp); if (strlen(sp)) { free (commandArgs[cmdNow][editLine]); commandArgs[cmdNow][editLine] = (char *) malloc(strlen(sp)+1); strcpy(commandArgs[cmdNow][editLine],sp); } } else { editLine = editLine * -1 ; memset(commandArgs[cmdNow][editLine],0,strlen(commandArgs[cmdNow][editLine])); } } // editing body } // editing loop } // new / existing } // run / execute else { say((char *)"Press 'Y' to confirm"); } }; void mdCommander::check(bool run) { if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 0; if (!editingCommand(run)) { } } void mdCommander::create(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 4; if (!editingCommand(run)) { } }; void mdCommander::info(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 1; if (!editingCommand(run)) { } }; void mdCommander::renew(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 5; if (!editingCommand(run)) { } }; void mdCommander::queryTransfer(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 3; if (!editingCommand(run)) { } }; void mdCommander::trash(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 7; if (!editingCommand(run)) { } }; void mdCommander::transfer(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 8; if (!editingCommand(run)) { } }; void mdCommander::poll(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 2; if (!editingCommand(run)) { } }; void mdCommander::update(bool run){ if (!commandsNow[cmdNow]) commandsNow[cmdNow] = 6; if (!editingCommand(run)) { } };