Skip to content
Snippets Groups Projects
  1. Aug 11, 2017
  2. Aug 10, 2017
  3. Aug 09, 2017
  4. Aug 01, 2017
  5. Jul 24, 2017
  6. Jul 07, 2017
  7. Jun 20, 2017
  8. May 10, 2017
  9. Nov 11, 2016
  10. Nov 01, 2016
  11. Oct 31, 2016
  12. Oct 28, 2016
  13. Oct 03, 2016
  14. Sep 29, 2016
  15. Sep 28, 2016
  16. Sep 20, 2016
  17. Sep 15, 2016
  18. Sep 14, 2016
  19. Sep 05, 2016
  20. Sep 02, 2016
  21. Aug 29, 2016
    • João Victor Risso's avatar
      Refactor source structure and add promise to execute DB queries · ed91f01e
      João Victor Risso authored
      Changes in this commit:
      - Singularize all routes and components
      - Separate different modules into their own source files
      - Rename the API module to enrollment and add a more general API module
      - Resources that are related to a route, are now under its scope. For
        example, the year range of the enrollment component is now under the
        route /v1/enrollment/year_range
      - Implement a thenable function to execute the queries against the
        database to reduce the amount of duplicated code in the application. This
        approach also allows several concurrent queries to run concurrently in the
        same route.
      Unverified
      ed91f01e
  22. Aug 17, 2016
    • João Victor Risso's avatar
      Change API to use ECMAScript6 · 00a87dec
      João Victor Risso authored
      
      Major modifications:
      - Source code is now in the src directory
      - All source files were adapted to ECMAScript6
      - Add Gulpfile and Babel to transcompile the project from ES6 to ES5 (until Node.js fully supports ES6)
      	- By running gulp one generates the build directory with the files transcompiled, from which the API can be run
      - Add ESLint to check for syntax errors and enforce code standards
      	- Javascript coding standard currently adopted is AirBnB with 4 spaces
      - Replace monetdb package with monetdb-pool, which allows for concurrent queries over a pool of connections while maintaining the same interface
      
      TODO (in order of priority, from high to low):
      - Add Gulp tasks to handle automatic building, tests and running the server in order to deprecate using npm
      - Implement decorator to execute the SQL queries and reduce code duplication.
      - Implement SQL query builder (e.g. squel.js) to erradicate the need for embedding SQL directly into the code (which is error-prone).
      - Change enrollments route not to use route chaining in order to decide which SQL query is appropriate to respond the user's request.
      - Implement decorator for API responses and also reduce code duplication.
      - Split up tests into and add more test cases.
      
      Signed-off-by: João Victor Risso's avatarJoão Victor Risso <jvtr12@c3sl.ufpr.br>
      00a87dec
  23. Jul 04, 2016
  24. Jun 15, 2016
Loading