submission flow - web-app, web-api first part

master
Martin Polanka 8 years ago
parent 6048eae52d
commit deb77c47d1

@ -679,26 +679,27 @@ with the test and then runs it against different configurations of `msim`.
This article will describe in detail execution flow of submission from the point of submission into web application to the point of evaluation of results from execution. Only hot path is considered in following description. This article will describe in detail execution flow of submission from the point of submission into web application to the point of evaluation of results from execution. Only hot path is considered in following description.
### Web Application ### Web Application
First thing user has to submit his/hers solution to web application. Which provides interface to upload multiple files and then submit them. More detailed description follows: First thing user has to submit his/hers solution to web application which provides interface to upload multiple files and then submit them. More detailed description follows:
- user submits his solution to web application - user upload file by file into prepared submit form
- T - after uploading all files connected to assignment user click on submit button
- O - Web Application send request to Web API that user wants to evaluated assignment with provided files
- D
- O
- .
- .
- .
- .
### Web API ### Web API
After user submit solution then web application has to hand over all needed information about submission to broker. More detailed description follows: After user submit solution then web application has to hand over all needed information about submission to broker. Submit endpoint is extended with support of "cross-submitting" which means that user with high privileges (supervisor, administrator) can submit solution for user with lower privileges (student). More detailed description follows:
- todo - suitable assignment and user are obtained from database
- instance license, deadlines and limit of numbers of submissions are checked
- runtime configuration is automatically detected if not provided as post parameter
- submission as database entity is created and persisted
- job configuration is obtained and loaded from selected runtime configuration
- configuration is extended of proper fileserver address and identification
- submitted files from user and job configuration are uploaded to fileserver using http post request
- several information about submission are sent back to user
- alongside other information address of websocket which can be used for watching evaluation progress is sent
### Broker ### Broker

Loading…
Cancel
Save