Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor and add routes for evolution metrics #291

Merged
merged 11 commits into from
Jun 6, 2019
Merged

Conversation

parthsharma2
Copy link
Member

@parthsharma2 parthsharma2 commented Jun 4, 2019

  • Refactored the 'code_changes' metric to accept repo_group_id and repo_id instead of repo_url
  • Added the following routes:
    • repo-groups/:repo_group_id/code-changes : This route returns the output for the metric 'code_changes' for a repo group with the given repo_group_id.
    • repo-groups/<repo_group_id>/repo/<repo_id>/code-changes : This route returns the output for the metric 'code_changes' about a repo with a given repo_id within a repo group with the given repo_group_id.

Suggestion: Adding routes requires writing a lot of repeating code. I suggest we create a utility function for adding routes. Something similar to addMetric and addTimeseries functions.

Update: Added helper functions for simplifying the creation of API endpoints. They are

  • addRepoGroupMetric for creating /repo-groups/:repo_group_id/[metric] endpoints.
  • addRepoMetric for creating /repo-groups/:repo_group_id/repos/:repo_id/[metric] endpoints.
  • routify helps addRepoGroupMetric & addRepoMetric. Similar to flaskify

All of these functions are implemented in the Server class.

'code_changes' metric now accepts a repo_group_id and repo_id
instead of a repo_url

Signed-off-by: Parth Sharma <[email protected]>
Copy link
Contributor

@gabe-heim gabe-heim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great!

@parthsharma2 parthsharma2 changed the title Refactor and add routes for 'code_changes' metric Refactor and add routes for evolution metrics Jun 5, 2019
@sgoggins sgoggins merged commit 899547d into chaoss:dev Jun 6, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants