summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Set up the ip server for working in localhost by defaultAlvaro Neira Ayuso2020-01-191-1/+1
|
* Create new object for creating dynamic json messagesAlvaro Neira Ayuso2020-01-191-12/+19
|
* (BUG) Handling command errorAlvaro Neira Ayuso2020-01-192-3/+13
| | | | | | This patch adds support for handling the error when the command is wrong formed. Now, if we send a shell/run command and the shell command is incomplete, the program crashes.
* Modify Thread methods namesAlvaro Neira Ayuso2020-01-191-4/+4
| | | | This patch modifies the method names to use names more clear.
* Blocks the program execution until a command is processingAlvaro Neira Ayuso2020-01-191-4/+5
| | | | | This patch changes the command process blocking the execution until is processing. Moreover, the response will be OK (200) instead of IN_PROGRESS (202).
* Create ogThread class to move all thread functionsAlvaro Neira Ayuso2020-01-191-16/+17
| | | | | | Right now, all the thread functions are declared inside the processor function. Those functions were created for execute specific commands in the machine (poweroff, reboot, etc). Creating this new class we are cleaning up the code.
* Execute command received using ThreadsAlvaro Neira Ayuso2020-01-191-1/+5
| | | | | Now we are blocking the execution when we apply a command sent from the server. This behavior is unacceptable for our client.
* (BUG) Fix crash when json message received is incompleteAlvaro Neira Ayuso2020-01-191-1/+6
|
* Avoid a broken pipe error on opengnsysAlvaro Neira Ayuso2020-01-191-0/+2
|
* Split the commands taking into account GET/POST operationsAlvaro Neira Ayuso2020-01-191-10/+16
|
* Add shell run and output commandsAlvaro Neira Ayuso2020-01-194-15/+72
| | | | | | | | Opengnsys needs a support to execute commands on the machine. This patch adds the support for executing two new commands "shell/run" and "shell/output". The first one, give us the support for executing a command in the machine and keep save in a queue the output. The second one, give us the support for sending the output from the command executed.
* Merge ogRest and ogProcess to have only one classAlvaro Neira Ayuso2020-01-193-52/+51
|
* Include disconnect and send function on client sideAlvaro Neira Ayuso2020-01-192-16/+26
| | | | | | | | | To disconnect the socket or send a message we use in different parts of the code the attribute socket which is declared inside of the client. This way will create us important problem in the future if we want to change the behavior in our client sockets. This patch adds two new methods inside the client and we can use them in other classes giving us the easy way to send messages and disconnect the client.
* Add global variable to set up OpenGnsys pathAlvaro Neira Ayuso2020-01-191-2/+4
| | | | | | This variable allow us to modify the opengnsys path without modify several parts of the code. This change reduces the probability to add any bug forgetting to change any line.
* Add ogRest class to generate API Rest ResponsesAlvaro Neira Ayuso2020-01-193-9/+31
| | | | | This class now, allow us to generate API Rest responses. In the future, the idea is to complete this class with get and post messages if it's needed.
* Port program to Python 3Alvaro Neira Ayuso2020-01-194-20/+22
| | | | | Python 2.7 will be deprecated in January of 2020. So, we need to have the program with a supported api.
* Remove remote from cfg fileAlvaro Neira Ayuso2020-01-191-2/+0
| | | | | This information is older for this version. We don't need to have any information about the remote.
* Remove unneeded logsAlvaro Neira Ayuso2020-01-191-2/+0
|
* Include the reboot support in ogOperationAlvaro Neira Ayuso2020-01-191-2/+4
| | | | | This new patch allows us to reboot the linux machine using reboot binary or in OpenGnsys client case, use the specific script.
* Include the poweroff support in ogOperationAlvaro Neira Ayuso2020-01-191-1/+7
| | | | | This new patch allows us to turn off the linux machine using poweroff binary or in OpenGnsys client case, use the specific script.
* Add Probe HTTP CommandAlvaro Neira Ayuso2020-01-191-0/+2
|
* Remove unneeded logsAlvaro Neira Ayuso2020-01-191-3/+0
|
* Send bad request when the APIRest operation is not supportedAlvaro Neira Ayuso2020-01-192-3/+8
| | | | | | | | | | | | | | Our program sends always the HTTP message: HTTP/1.0 200 OK but if the operation sent is not supported, we are sending the same correct message. This patch add the support to check if the message is supported. If the message is not supported, we are going to send: HTTP/1.0 400 Bad request\r\n\r\n Otherwise, in operations supported: HTTP/1.0 200 OK
* Add new process support for reboot messageAlvaro Neira Ayuso2020-01-192-0/+11
|
* Execute socket loop on run socket functionAlvaro Neira Ayuso2020-01-192-19/+21
| | | | Ported code from main function to a client function for clearing the main loop.
* Add ogProcess and ogOperation for linuxAlvaro Neira Ayuso2020-01-194-0/+28
| | | | | Thoses new classes allows us to process and execute commands from server side sent using HTTP format.
* Add HTTP parser supportAlvaro Neira Ayuso2020-01-192-11/+58
| | | | | | The new OpenGnsys support to communicate server and client side will be HTTP. This new class allows us the support for parsing all the message received from the server in HTTP format.
* Modify Client state to use enumAlvaro Neira Ayuso2020-01-192-12/+11
| | | | | | | | | During our connections, we are using states to control the Client Socket. We defined using global variables. In case that we modify this global variable, we need to change it in serveral parts of the code. Using enums and declaring a new class, we can redefine the values or create new states without changing the same code in differents python files.
* Create new ogClientAlvaro Neira Ayuso2020-01-196-0/+168
| | | | | This commit init the new ogClient. The new ogClient has support for configuring and for connecting with the ogAdminServer.
* Initial commitAlvaro Neira Ayuso2020-01-192-0/+790