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

Feature/disallow invalid assignment names, join on assignment accept (KHO-311, KHO-242, KHO-310) #194

Merged
merged 120 commits into from
Apr 1, 2025

Conversation

ntietje1
Copy link
Collaborator

@ntietje1 ntietje1 commented Feb 5, 2025

Summary

  • Adds name validation to match github repository naming rules, disallowing special characters in classroom and assignment names
  • Also adds a workaround for the "enable actions" button!!!

Checklist

  • I have performed a self-review of my code
  • I have reached out to another developer to review my code
  • New and existing unit tests pass locally with my changes
  • All Lint and CI checks are passing

@ntietje1
Copy link
Collaborator Author

Any assignment name with an ! or ~ seem to break things, not allowing users to accept it

I adjusted the validation to now disallow all special characters (on both the front and back ends)

@alexangione419
Copy link
Contributor

assignment acceptance workflow seems broke, both first join class than accept, and accept first

backend | 2025/03/11 17:27:03 ERROR HTTP API error err="api error: 500 internal server error" method=POST path=/classrooms/classroom/0/assignments/token/a5274a1bbed86831ca74d89237264bbe
backend | [17:27:02] 172.19.0.1:52536 856 83447b24-a756-42f4-9e05-b2abab7cdef2 500 - 488.685294ms POST /classrooms/classroom/0/assignments/token/a5274a1bbed86831ca74d89237264bbe

I'm unsure how to reproduce this error, but while fiddling I got this
2025/03/11 17:21:07 ERROR HTTP API error err="PUT https://api.github.com/repos/NUSpecialProjects/Fall-2025-new-assignment-flow-type-beat/contents/.github/workflows/deadline-enforcement.yml: 422 Invalid request.\n\n"sha" wasn't supplied. []" method=POST path=/classrooms/classroom/0/assignments/token/671bcf7c4816db52815453e67679d232

@ntietje1
Copy link
Collaborator Author

ntietje1 commented Mar 13, 2025

assignment acceptance workflow seems broke, both first join class than accept, and accept first

backend | 2025/03/11 17:27:03 ERROR HTTP API error err="api error: 500 internal server error" method=POST path=/classrooms/classroom/0/assignments/token/a5274a1bbed86831ca74d89237264bbe backend | [17:27:02] 172.19.0.1:52536 856 83447b24-a756-42f4-9e05-b2abab7cdef2 500 - 488.685294ms POST /classrooms/classroom/0/assignments/token/a5274a1bbed86831ca74d89237264bbe

I'm unsure how to reproduce this error, but while fiddling I got this 2025/03/11 17:21:07 ERROR HTTP API error err="PUT https://api.github.com/repos/NUSpecialProjects/Fall-2025-new-assignment-flow-type-beat/contents/.github/workflows/deadline-enforcement.yml: 422 Invalid request.\n\n"sha" wasn't supplied. []" method=POST path=/classrooms/classroom/0/assignments/token/671bcf7c4816db52815453e67679d232

fixed in latest commit. There were two issues: one where the PR enforcement file already existed, which caused an error when we attempted to add that file again. Also, my unique repo name function did not properly work as the student does not have access to check what repos currently exist, so the github app must do that check. I'm not exactly sure why the mock data assignment/classroom specifically cause this, but whatever inconsistency exists is not a breaking issue for our app.

@ntietje1 ntietje1 changed the title Feature/disallow invalid assignment names, join on assignment accept (KHO-311, KHO-242) Feature/disallow invalid assignment names, join on assignment accept (KHO-311, KHO-242, KHO-310) Mar 26, 2025
@ntietje1 ntietje1 requested a review from Copilot March 30, 2025 23:17
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR introduces name validation for classroom and assignment names to disallow special characters and implements a workaround for the “enable actions” button. Key changes include:

  • Adding a new repository name validation utility in the frontend to enforce GitHub repository naming rules.
  • Updating classroom and assignment creation flows in the frontend to incorporate name validation and adjust error handling.
  • Extending backend storage and GitHub client functionality to support new features such as fetching student work by GitHub user ID and repository initialization.

Reviewed Changes

Copilot reviewed 18 out of 19 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
frontend/src/utils/repo-name-validation.ts New utility to validate repository names by allowing only alphanumeric characters and hyphens.
frontend/src/pages/Classrooms/Create/index.tsx Integrates name validation into classroom creation and updates error and button state logic accordingly.
frontend/src/pages/Assignments/CreateAssignment/index.tsx Validates assignment names and trims whitespace; refactors template repository fetching.
backend/internal/storage/* Adds new methods to retrieve and update records (e.g. GetWorkByGitHubUserID and UpdateBaseRepoInitialized).
backend/internal/handlers/, github/ Refactors webhook handling and GitHub client calls to use common shared functions and improve repository initialization.
Files not reviewed (1)
  • backend/database/migrations/001_khouryclassroom.sql: Language not supported
Comments suppressed due to low confidence (1)

frontend/src/pages/Classrooms/Create/index.tsx:27

  • [nitpick] The variable name 'containsInvalidChars' is misleading since the validateRepoName function returns true for valid names. Consider renaming it to 'isValidRepoName' to more clearly indicate its purpose.
const containsInvalidChars = validateRepoName(name);

Copy link
Contributor

@alexangione419 alexangione419 left a comment

Choose a reason for hiding this comment

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

wonderful. see KHO-327 for work relating to this PR but not on this scope

@alexangione419 alexangione419 merged commit e91b5f4 into main Apr 1, 2025
2 checks passed
@alexangione419 alexangione419 deleted the feature/disallow-invalid-assignment-names branch April 1, 2025 16:42
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.

2 participants