You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

migrations.go 30 kB

Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Repository avatars (#6986) * Repository avatars - first variant of code from old work for gogs - add migration 87 - add new option in app.ini - add en-US locale string - add new class in repository.less * Add changed index.css, remove unused template name * Update en-us doc about configuration options * Add comments to new functions, add new option to docker app.ini * Add comment for lint * Remove variable, not needed * Fix formatting * Update swagger api template * Check if avatar exists * Fix avatar link/path checks * Typo * TEXT column can't have a default value * Fixes: - remove old avatar file on upload - use ID in name of avatar file - users may upload same files - add simple tests * Fix fmt check * Generate PNG instead of "static" GIF * More informative comment * Fix error message * Update avatar upload checks: - add file size check - add new option - update config docs - add new string to en-us locale * Fixes: - use FileHEader field for check file size - add new test - upload big image * Fix formatting * Update comments * Update log message * Removed wrong style - not needed * Use Sync2 to migrate * Update repos list view - bigger avatar - fix html blocks alignment * A little adjust avatar size * Use small icons for explore/repo list * Use new cool avatar preparation func by @lafriks * Missing changes for new function * Remove unused import, move imports * Missed new option definition in app.ini Add file size check in user/profile avatar upload * Use smaller field length for Avatar * Use session to update repo DB data, update DeleteAvatar - use session too * Fix err variable definition * As suggested @lafriks - return as soon as possible, code readability
6 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
5 years ago
Change target branch for pull request (#6488) * Adds functionality to change target branch of created pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use const instead of var in JavaScript additions Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Check if branches are equal and if PR already exists before changing target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Make sure to check all commits Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Print error messages for user as error flash message Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Disallow changing target branch of closed or merged pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Resolve conflicts after merge of upstream/master Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Change order of branch select fields Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes duplicate check Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use ctx.Tr for translations Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Recompile JS Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use correct translation namespace Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove redundant if condition Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves most change branch logic into pull service Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Completes comment Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Add Ref to ChangesPayload for logging changed target branches instead of creating a new struct Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Revert changes to go.mod Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Directly use createComment method Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return 404 if pull request is not found. Move written check up Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove variable declaration Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return client errors on change pull request target errors Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return error in commit.HasPreviousCommit Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds blank line Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Test patch before persisting new target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update patch before testing (not working) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes patch calls when changeing pull request target Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes unneeded check for base name Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves ChangeTargetBranch completely to pull service. Update patch status. Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Set webhook mode after errors were validated Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update PR in one transaction Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Move logic for check if head is equal with branch to pull model Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds missing comment and simplify return Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adjust CreateComment method call Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
5 years ago
Restricted users (#6274) * Restricted users (#4334): initial implementation * Add User.IsRestricted & UI to edit it * Pass user object instead of user id to places where IsRestricted flag matters * Restricted users: maintain access rows for all referenced repos (incl public) * Take logged in user & IsRestricted flag into account in org/repo listings, searches and accesses * Add basic repo access tests for restricted users Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Mention restricted users in the faq Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert unnecessary change `.isUserPartOfOrg` -> `.IsUserPartOfOrg` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Remove unnecessary `org.IsOrganization()` call Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert to an `int64` keyed `accessMap` * Add type `userAccess` * Add convenience func updateUserAccess() * Turn accessMap into a `map[int64]userAccess` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * or even better: `map[int64]*userAccess` * updateUserAccess(): use tighter syntax as suggested by lafriks * even tighter * Avoid extra loop * Don't disclose limited orgs to unauthenticated users * Don't assume block only applies to orgs * Use an array of `VisibleType` for filtering * fix yet another thinko * Ok - no need for u * Revert "Ok - no need for u" This reverts commit 5c3e886aabd5acd997a3b35687d322439732c200. Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv>
5 years ago
Add Organization Wide Labels (#10814) * Add organization wide labels Implement organization wide labels similar to organization wide webhooks. This lets you create individual labels for organizations that can be used for all repos under that organization (so being able to reuse the same label across multiple repos). This makes it possible for small organizations with many repos to use labels effectively. Fixes #7406 * Add migration * remove comments * fix tests * Update options/locale/locale_en-US.ini Removed unused translation string * show org labels in issue search label filter * Use more clear var name * rename migration after merge from master * comment typo * update migration again after rebase with master * check for orgID <=0 per guillep2k review * fmt * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * remove unused code * Make sure RepoID is 0 when searching orgID per code review * more changes/code review requests * More descriptive translation var per code review * func description/delete comment when issue label deleted instead of hiding it * remove comment * only use issues in that repo when calculating number of open issues for org label on repo label page * Add integration test for IssuesSearch API with labels * remove unused function * Update models/issue_label.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Use subquery in GetLabelIDsInReposByNames * Fix tests to use correct orgID * fix more tests * IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well * update comment for clarity * Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition * Don't sort repos by date in IssuesSearch API After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45 Returns different results for MySQL than other engines. However, the similar query: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30 Returns the same results. This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function. * linter is back! * code review * remove now unused option * Fix newline at end of files * more unused code * update to master * check for matching ids before query * Update models/issue_label.go Co-Authored-By: 6543 <6543@obermui.de> * Update models/issue_label.go * update comments * Update routers/org/setting.go Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: 6543 <6543@obermui.de>
5 years ago
Add configurable Trust Models (#11712) * Add configurable Trust Models Gitea's default signature verification model differs from GitHub. GitHub uses signatures to verify that the committer is who they say they are - meaning that when GitHub makes a signed commit it must be the committer. The GitHub model prevents re-publishing of commits after revocation of a key and prevents re-signing of other people's commits to create a completely trusted repository signed by one key or a set of trusted keys. The default behaviour of Gitea in contrast is to always display the avatar and information related to a signature. This allows signatures to be decoupled from the committer. That being said, allowing arbitary users to present other peoples commits as theirs is not necessarily desired therefore we have a trust model whereby signatures from collaborators are marked trusted, signatures matching the commit line are marked untrusted and signatures that match a user in the db but not the committer line are marked unmatched. The problem with this model is that this conflicts with Github therefore we need to provide an option to allow users to choose the Github model should they wish to. Signed-off-by: Andrew Thornton <art27@cantab.net> * Adjust locale strings Signed-off-by: Andrew Thornton <art27@cantab.net> * as per @6543 Co-authored-by: 6543 <6543@obermui.de> * Update models/gpg_key.go * Add migration for repository Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
[Enhancement] Allow admin to merge pr with protected file changes (#12078) * [Enhancement] Allow admin to merge pr with protected file changes As tilte, show protected message in diff page and merge box. Signed-off-by: a1012112796 <1012112796@qq.com> * remove unused ver * Update options/locale/locale_en-US.ini Co-authored-by: Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> * Add TrN * Apply suggestions from code review * fix lint * Update options/locale/locale_en-US.ini Co-authored-by: zeripath <art27@cantab.net> * Apply suggestions from code review * move pr proteced files check to TestPatch * Call TestPatch when protected branches settings changed * Apply review suggestion @CirnoT * move to service @lunny * slightly restructure routers/private/hook.go Adds a lot of comments and simplifies the logic Signed-off-by: Andrew Thornton <art27@cantab.net> * placate lint Signed-off-by: Andrew Thornton <art27@cantab.net> * skip duplicate protected files check * fix check logic * slight refactor of TestPatch Signed-off-by: Andrew Thornton <art27@cantab.net> * When checking for protected files changes in TestPatch use the temporary repository Signed-off-by: Andrew Thornton <art27@cantab.net> * fix introduced issue with hook Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove the check on PR index being greater than 0 as it unnecessary Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
4 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Copyright 2017 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package migrations
  6. import (
  7. "context"
  8. "fmt"
  9. "os"
  10. "reflect"
  11. "regexp"
  12. "strings"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/setting"
  15. "xorm.io/xorm"
  16. "xorm.io/xorm/names"
  17. "xorm.io/xorm/schemas"
  18. )
  19. const minDBVersion = 70 // Gitea 1.5.3
  20. // Migration describes on migration from lower version to high version
  21. type Migration interface {
  22. Description() string
  23. Migrate(*xorm.Engine) error
  24. }
  25. type migration struct {
  26. description string
  27. migrate func(*xorm.Engine) error
  28. }
  29. // NewMigration creates a new migration
  30. func NewMigration(desc string, fn func(*xorm.Engine) error) Migration {
  31. return &migration{desc, fn}
  32. }
  33. // Description returns the migration's description
  34. func (m *migration) Description() string {
  35. return m.description
  36. }
  37. // Migrate executes the migration
  38. func (m *migration) Migrate(x *xorm.Engine) error {
  39. return m.migrate(x)
  40. }
  41. // Version describes the version table. Should have only one row with id==1
  42. type Version struct {
  43. ID int64 `xorm:"pk autoincr"`
  44. Version int64
  45. }
  46. // This is a sequence of migrations. Add new migrations to the bottom of the list.
  47. // If you want to "retire" a migration, remove it from the top of the list and
  48. // update minDBVersion accordingly
  49. var migrations = []Migration{
  50. // Gitea 1.5.0 ends at v69
  51. // v70 -> v71
  52. NewMigration("add issue_dependencies", addIssueDependencies),
  53. // v71 -> v72
  54. NewMigration("protect each scratch token", addScratchHash),
  55. // v72 -> v73
  56. NewMigration("add review", addReview),
  57. // Gitea 1.6.0 ends at v73
  58. // v73 -> v74
  59. NewMigration("add must_change_password column for users table", addMustChangePassword),
  60. // v74 -> v75
  61. NewMigration("add approval whitelists to protected branches", addApprovalWhitelistsToProtectedBranches),
  62. // v75 -> v76
  63. NewMigration("clear nonused data which not deleted when user was deleted", clearNonusedData),
  64. // Gitea 1.7.0 ends at v76
  65. // v76 -> v77
  66. NewMigration("add pull request rebase with merge commit", addPullRequestRebaseWithMerge),
  67. // v77 -> v78
  68. NewMigration("add theme to users", addUserDefaultTheme),
  69. // v78 -> v79
  70. NewMigration("rename repo is_bare to repo is_empty", renameRepoIsBareToIsEmpty),
  71. // v79 -> v80
  72. NewMigration("add can close issues via commit in any branch", addCanCloseIssuesViaCommitInAnyBranch),
  73. // v80 -> v81
  74. NewMigration("add is locked to issues", addIsLockedToIssues),
  75. // v81 -> v82
  76. NewMigration("update U2F counter type", changeU2FCounterType),
  77. // Gitea 1.8.0 ends at v82
  78. // v82 -> v83
  79. NewMigration("hot fix for wrong release sha1 on release table", fixReleaseSha1OnReleaseTable),
  80. // v83 -> v84
  81. NewMigration("add uploader id for table attachment", addUploaderIDForAttachment),
  82. // v84 -> v85
  83. NewMigration("add table to store original imported gpg keys", addGPGKeyImport),
  84. // v85 -> v86
  85. NewMigration("hash application token", hashAppToken),
  86. // v86 -> v87
  87. NewMigration("add http method to webhook", addHTTPMethodToWebhook),
  88. // v87 -> v88
  89. NewMigration("add avatar field to repository", addAvatarFieldToRepository),
  90. // Gitea 1.9.0 ends at v88
  91. // v88 -> v89
  92. NewMigration("add commit status context field to commit_status", addCommitStatusContext),
  93. // v89 -> v90
  94. NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo),
  95. // v90 -> v91
  96. NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo),
  97. // v91 -> v92
  98. NewMigration("add index on owner_id of repository and type, review_id of comment", addIndexOnRepositoryAndComment),
  99. // v92 -> v93
  100. NewMigration("remove orphaned repository index statuses", removeLingeringIndexStatus),
  101. // v93 -> v94
  102. NewMigration("add email notification enabled preference to user", addEmailNotificationEnabledToUser),
  103. // v94 -> v95
  104. NewMigration("add enable_status_check, status_check_contexts to protected_branch", addStatusCheckColumnsForProtectedBranches),
  105. // v95 -> v96
  106. NewMigration("add table columns for cross referencing issues", addCrossReferenceColumns),
  107. // v96 -> v97
  108. NewMigration("delete orphaned attachments", deleteOrphanedAttachments),
  109. // v97 -> v98
  110. NewMigration("add repo_admin_change_team_access to user", addRepoAdminChangeTeamAccessColumnForUser),
  111. // v98 -> v99
  112. NewMigration("add original author name and id on migrated release", addOriginalAuthorOnMigratedReleases),
  113. // v99 -> v100
  114. NewMigration("add task table and status column for repository table", addTaskTable),
  115. // v100 -> v101
  116. NewMigration("update migration repositories' service type", updateMigrationServiceTypes),
  117. // v101 -> v102
  118. NewMigration("change length of some external login users columns", changeSomeColumnsLengthOfExternalLoginUser),
  119. // Gitea 1.10.0 ends at v102
  120. // v102 -> v103
  121. NewMigration("update migration repositories' service type", dropColumnHeadUserNameOnPullRequest),
  122. // v103 -> v104
  123. NewMigration("Add WhitelistDeployKeys to protected branch", addWhitelistDeployKeysToBranches),
  124. // v104 -> v105
  125. NewMigration("remove unnecessary columns from label", removeLabelUneededCols),
  126. // v105 -> v106
  127. NewMigration("add includes_all_repositories to teams", addTeamIncludesAllRepositories),
  128. // v106 -> v107
  129. NewMigration("add column `mode` to table watch", addModeColumnToWatch),
  130. // v107 -> v108
  131. NewMigration("Add template options to repository", addTemplateToRepo),
  132. // v108 -> v109
  133. NewMigration("Add comment_id on table notification", addCommentIDOnNotification),
  134. // v109 -> v110
  135. NewMigration("add can_create_org_repo to team", addCanCreateOrgRepoColumnForTeam),
  136. // v110 -> v111
  137. NewMigration("change review content type to text", changeReviewContentToText),
  138. // v111 -> v112
  139. NewMigration("update branch protection for can push and whitelist enable", addBranchProtectionCanPushAndEnableWhitelist),
  140. // v112 -> v113
  141. NewMigration("remove release attachments which repository deleted", removeAttachmentMissedRepo),
  142. // v113 -> v114
  143. NewMigration("new feature: change target branch of pull requests", featureChangeTargetBranch),
  144. // v114 -> v115
  145. NewMigration("Remove authentication credentials from stored URL", sanitizeOriginalURL),
  146. // v115 -> v116
  147. NewMigration("add user_id prefix to existing user avatar name", renameExistingUserAvatarName),
  148. // v116 -> v117
  149. NewMigration("Extend TrackedTimes", extendTrackedTimes),
  150. // Gitea 1.11.0 ends at v117
  151. // v117 -> v118
  152. NewMigration("Add block on rejected reviews branch protection", addBlockOnRejectedReviews),
  153. // v118 -> v119
  154. NewMigration("Add commit id and stale to reviews", addReviewCommitAndStale),
  155. // v119 -> v120
  156. NewMigration("Fix migrated repositories' git service type", fixMigratedRepositoryServiceType),
  157. // v120 -> v121
  158. NewMigration("Add owner_name on table repository", addOwnerNameOnRepository),
  159. // v121 -> v122
  160. NewMigration("add is_restricted column for users table", addIsRestricted),
  161. // v122 -> v123
  162. NewMigration("Add Require Signed Commits to ProtectedBranch", addRequireSignedCommits),
  163. // v123 -> v124
  164. NewMigration("Add original informations for reactions", addReactionOriginals),
  165. // v124 -> v125
  166. NewMigration("Add columns to user and repository", addUserRepoMissingColumns),
  167. // v125 -> v126
  168. NewMigration("Add some columns on review for migration", addReviewMigrateInfo),
  169. // v126 -> v127
  170. NewMigration("Fix topic repository count", fixTopicRepositoryCount),
  171. // v127 -> v128
  172. NewMigration("add repository code language statistics", addLanguageStats),
  173. // v128 -> v129
  174. NewMigration("fix merge base for pull requests", fixMergeBase),
  175. // v129 -> v130
  176. NewMigration("remove dependencies from deleted repositories", purgeUnusedDependencies),
  177. // v130 -> v131
  178. NewMigration("Expand webhooks for more granularity", expandWebhooks),
  179. // v131 -> v132
  180. NewMigration("Add IsSystemWebhook column to webhooks table", addSystemWebhookColumn),
  181. // v132 -> v133
  182. NewMigration("Add Branch Protection Protected Files Column", addBranchProtectionProtectedFilesColumn),
  183. // v133 -> v134
  184. NewMigration("Add EmailHash Table", addEmailHashTable),
  185. // v134 -> v135
  186. NewMigration("Refix merge base for merged pull requests", refixMergeBase),
  187. // v135 -> v136
  188. NewMigration("Add OrgID column to Labels table", addOrgIDLabelColumn),
  189. // v136 -> v137
  190. NewMigration("Add CommitsAhead and CommitsBehind Column to PullRequest Table", addCommitDivergenceToPulls),
  191. // v137 -> v138
  192. NewMigration("Add Branch Protection Block Outdated Branch", addBlockOnOutdatedBranch),
  193. // v138 -> v139
  194. NewMigration("Add ResolveDoerID to Comment table", addResolveDoerIDCommentColumn),
  195. // v139 -> v140
  196. NewMigration("prepend refs/heads/ to issue refs", prependRefsHeadsToIssueRefs),
  197. // Gitea 1.12.0 ends at v140
  198. // v140 -> v141
  199. NewMigration("Save detected language file size to database instead of percent", fixLanguageStatsToSaveSize),
  200. // v141 -> v142
  201. NewMigration("Add KeepActivityPrivate to User table", addKeepActivityPrivateUserColumn),
  202. // v142 -> v143
  203. NewMigration("Ensure Repository.IsArchived is not null", setIsArchivedToFalse),
  204. // v143 -> v144
  205. NewMigration("recalculate Stars number for all user", recalculateStars),
  206. // v144 -> v145
  207. NewMigration("update Matrix Webhook http method to 'PUT'", updateMatrixWebhookHTTPMethod),
  208. // v145 -> v146
  209. NewMigration("Increase Language field to 50 in LanguageStats", increaseLanguageField),
  210. // v146 -> v147
  211. NewMigration("Add projects info to repository table", addProjectsInfo),
  212. // v147 -> v148
  213. NewMigration("create review for 0 review id code comments", createReviewsForCodeComments),
  214. // v148 -> v149
  215. NewMigration("remove issue dependency comments who refer to non existing issues", purgeInvalidDependenciesComments),
  216. // v149 -> v150
  217. NewMigration("Add Created and Updated to Milestone table", addCreatedAndUpdatedToMilestones),
  218. // v150 -> v151
  219. NewMigration("add primary key to repo_topic", addPrimaryKeyToRepoTopic),
  220. // v151 -> v152
  221. NewMigration("set default password algorithm to Argon2", setDefaultPasswordToArgon2),
  222. // v152 -> v153
  223. NewMigration("add TrustModel field to Repository", addTrustModelToRepository),
  224. // v153 > v154
  225. NewMigration("add Team review request support", addTeamReviewRequestSupport),
  226. // v154 > v155
  227. NewMigration("add timestamps to Star, Label, Follow, Watch and Collaboration", addTimeStamps),
  228. // Gitea 1.13.0 ends at v155
  229. // v155 -> v156
  230. NewMigration("add changed_protected_files column for pull_request table", addChangedProtectedFilesPullRequestColumn),
  231. // v156 -> v157
  232. NewMigration("fix publisher ID for tag releases", fixPublisherIDforTagReleases),
  233. // v157 -> v158
  234. NewMigration("ensure repo topics are up-to-date", fixRepoTopics),
  235. // v158 -> v159
  236. NewMigration("code comment replies should have the commitID of the review they are replying to", updateCodeCommentReplies),
  237. // v159 -> v160
  238. NewMigration("update reactions constraint", updateReactionConstraint),
  239. // v160 -> v161
  240. NewMigration("Add block on official review requests branch protection", addBlockOnOfficialReviewRequests),
  241. // v161 -> v162
  242. NewMigration("Convert task type from int to string", convertTaskTypeToString),
  243. // v162 -> v163
  244. NewMigration("Convert webhook task type from int to string", convertWebhookTaskTypeToString),
  245. // v163 -> v164
  246. NewMigration("Convert topic name from 25 to 50", convertTopicNameFrom25To50),
  247. // v164 -> v165
  248. NewMigration("Add scope and nonce columns to oauth2_grant table", addScopeAndNonceColumnsToOAuth2Grant),
  249. // v165 -> v166
  250. NewMigration("Convert hook task type from char(16) to varchar(16) and trim the column", convertHookTaskTypeToVarcharAndTrim),
  251. // v166 -> v167
  252. NewMigration("Where Password is Valid with Empty String delete it", recalculateUserEmptyPWD),
  253. // v167 -> v168
  254. NewMigration("Add user redirect", addUserRedirect),
  255. // v168 -> v169
  256. NewMigration("Recreate user table to fix default values", recreateUserTableToFixDefaultValues),
  257. // v169 -> v170
  258. NewMigration("Update DeleteBranch comments to set the old_ref to the commit_sha", commentTypeDeleteBranchUseOldRef),
  259. // v170 -> v171
  260. NewMigration("Add Dismissed to Review table", addDismissedReviewColumn),
  261. // v171 -> v172
  262. NewMigration("Add Sorting to ProjectBoard table", addSortingColToProjectBoard),
  263. // v172 -> v173
  264. NewMigration("Add sessions table for go-chi/session", addSessionTable),
  265. // v173 -> v174
  266. NewMigration("Add time_id column to Comment", addTimeIDCommentColumn),
  267. // v174 -> v175
  268. NewMigration("create repo transfer table", addRepoTransfer),
  269. }
  270. // GetCurrentDBVersion returns the current db version
  271. func GetCurrentDBVersion(x *xorm.Engine) (int64, error) {
  272. if err := x.Sync(new(Version)); err != nil {
  273. return -1, fmt.Errorf("sync: %v", err)
  274. }
  275. currentVersion := &Version{ID: 1}
  276. has, err := x.Get(currentVersion)
  277. if err != nil {
  278. return -1, fmt.Errorf("get: %v", err)
  279. }
  280. if !has {
  281. return -1, nil
  282. }
  283. return currentVersion.Version, nil
  284. }
  285. // ExpectedVersion returns the expected db version
  286. func ExpectedVersion() int64 {
  287. return int64(minDBVersion + len(migrations))
  288. }
  289. // EnsureUpToDate will check if the db is at the correct version
  290. func EnsureUpToDate(x *xorm.Engine) error {
  291. currentDB, err := GetCurrentDBVersion(x)
  292. if err != nil {
  293. return err
  294. }
  295. if currentDB < 0 {
  296. return fmt.Errorf("Database has not been initialised")
  297. }
  298. if minDBVersion > currentDB {
  299. return fmt.Errorf("DB version %d (<= %d) is too old for auto-migration. Upgrade to Gitea 1.6.4 first then upgrade to this version", currentDB, minDBVersion)
  300. }
  301. expected := ExpectedVersion()
  302. if currentDB != expected {
  303. return fmt.Errorf(`Current database version %d is not equal to the expected version %d. Please run "gitea [--config /path/to/app.ini] migrate" to update the database version`, currentDB, expected)
  304. }
  305. return nil
  306. }
  307. // Migrate database to current version
  308. func Migrate(x *xorm.Engine) error {
  309. // Set a new clean the default mapper to GonicMapper as that is the default for Gitea.
  310. x.SetMapper(names.GonicMapper{})
  311. if err := x.Sync(new(Version)); err != nil {
  312. return fmt.Errorf("sync: %v", err)
  313. }
  314. currentVersion := &Version{ID: 1}
  315. has, err := x.Get(currentVersion)
  316. if err != nil {
  317. return fmt.Errorf("get: %v", err)
  318. } else if !has {
  319. // If the version record does not exist we think
  320. // it is a fresh installation and we can skip all migrations.
  321. currentVersion.ID = 0
  322. currentVersion.Version = int64(minDBVersion + len(migrations))
  323. if _, err = x.InsertOne(currentVersion); err != nil {
  324. return fmt.Errorf("insert: %v", err)
  325. }
  326. }
  327. v := currentVersion.Version
  328. if minDBVersion > v {
  329. log.Fatal(`Gitea no longer supports auto-migration from your previously installed version.
  330. Please try upgrading to a lower version first (suggested v1.6.4), then upgrade to this version.`)
  331. return nil
  332. }
  333. // Downgrading Gitea's database version not supported
  334. if int(v-minDBVersion) > len(migrations) {
  335. msg := fmt.Sprintf("Downgrading database version from '%d' to '%d' is not supported and may result in loss of data integrity.\nIf you really know what you're doing, execute `UPDATE version SET version=%d WHERE id=1;`\n",
  336. v, minDBVersion+len(migrations), minDBVersion+len(migrations))
  337. fmt.Fprint(os.Stderr, msg)
  338. log.Fatal(msg)
  339. return nil
  340. }
  341. // Migrate
  342. for i, m := range migrations[v-minDBVersion:] {
  343. log.Info("Migration[%d]: %s", v+int64(i), m.Description())
  344. // Reset the mapper between each migration - migrations are not supposed to depend on each other
  345. x.SetMapper(names.GonicMapper{})
  346. if err = m.Migrate(x); err != nil {
  347. return fmt.Errorf("do migrate: %v", err)
  348. }
  349. currentVersion.Version = v + int64(i) + 1
  350. if _, err = x.ID(1).Update(currentVersion); err != nil {
  351. return err
  352. }
  353. }
  354. return nil
  355. }
  356. // RecreateTables will recreate the tables for the provided beans using the newly provided bean definition and move all data to that new table
  357. // WARNING: YOU MUST PROVIDE THE FULL BEAN DEFINITION
  358. func RecreateTables(beans ...interface{}) func(*xorm.Engine) error {
  359. return func(x *xorm.Engine) error {
  360. sess := x.NewSession()
  361. defer sess.Close()
  362. if err := sess.Begin(); err != nil {
  363. return err
  364. }
  365. sess = sess.StoreEngine("InnoDB")
  366. for _, bean := range beans {
  367. log.Info("Recreating Table: %s for Bean: %s", x.TableName(bean), reflect.Indirect(reflect.ValueOf(bean)).Type().Name())
  368. if err := recreateTable(sess, bean); err != nil {
  369. return err
  370. }
  371. }
  372. return sess.Commit()
  373. }
  374. }
  375. // recreateTable will recreate the table using the newly provided bean definition and move all data to that new table
  376. // WARNING: YOU MUST PROVIDE THE FULL BEAN DEFINITION
  377. // WARNING: YOU MUST COMMIT THE SESSION AT THE END
  378. func recreateTable(sess *xorm.Session, bean interface{}) error {
  379. // TODO: This will not work if there are foreign keys
  380. tableName := sess.Engine().TableName(bean)
  381. tempTableName := fmt.Sprintf("tmp_recreate__%s", tableName)
  382. // We need to move the old table away and create a new one with the correct columns
  383. // We will need to do this in stages to prevent data loss
  384. //
  385. // First create the temporary table
  386. if err := sess.Table(tempTableName).CreateTable(bean); err != nil {
  387. log.Error("Unable to create table %s. Error: %v", tempTableName, err)
  388. return err
  389. }
  390. if err := sess.Table(tempTableName).CreateUniques(bean); err != nil {
  391. log.Error("Unable to create uniques for table %s. Error: %v", tempTableName, err)
  392. return err
  393. }
  394. if err := sess.Table(tempTableName).CreateIndexes(bean); err != nil {
  395. log.Error("Unable to create indexes for table %s. Error: %v", tempTableName, err)
  396. return err
  397. }
  398. // Work out the column names from the bean - these are the columns to select from the old table and install into the new table
  399. table, err := sess.Engine().TableInfo(bean)
  400. if err != nil {
  401. log.Error("Unable to get table info. Error: %v", err)
  402. return err
  403. }
  404. newTableColumns := table.Columns()
  405. if len(newTableColumns) == 0 {
  406. return fmt.Errorf("no columns in new table")
  407. }
  408. hasID := false
  409. for _, column := range newTableColumns {
  410. hasID = hasID || (column.IsPrimaryKey && column.IsAutoIncrement)
  411. }
  412. if hasID && setting.Database.UseMSSQL {
  413. if _, err := sess.Exec(fmt.Sprintf("SET IDENTITY_INSERT `%s` ON", tempTableName)); err != nil {
  414. log.Error("Unable to set identity insert for table %s. Error: %v", tempTableName, err)
  415. return err
  416. }
  417. }
  418. sqlStringBuilder := &strings.Builder{}
  419. _, _ = sqlStringBuilder.WriteString("INSERT INTO `")
  420. _, _ = sqlStringBuilder.WriteString(tempTableName)
  421. _, _ = sqlStringBuilder.WriteString("` (`")
  422. _, _ = sqlStringBuilder.WriteString(newTableColumns[0].Name)
  423. _, _ = sqlStringBuilder.WriteString("`")
  424. for _, column := range newTableColumns[1:] {
  425. _, _ = sqlStringBuilder.WriteString(", `")
  426. _, _ = sqlStringBuilder.WriteString(column.Name)
  427. _, _ = sqlStringBuilder.WriteString("`")
  428. }
  429. _, _ = sqlStringBuilder.WriteString(")")
  430. _, _ = sqlStringBuilder.WriteString(" SELECT ")
  431. if newTableColumns[0].Default != "" {
  432. _, _ = sqlStringBuilder.WriteString("COALESCE(`")
  433. _, _ = sqlStringBuilder.WriteString(newTableColumns[0].Name)
  434. _, _ = sqlStringBuilder.WriteString("`, ")
  435. _, _ = sqlStringBuilder.WriteString(newTableColumns[0].Default)
  436. _, _ = sqlStringBuilder.WriteString(")")
  437. } else {
  438. _, _ = sqlStringBuilder.WriteString("`")
  439. _, _ = sqlStringBuilder.WriteString(newTableColumns[0].Name)
  440. _, _ = sqlStringBuilder.WriteString("`")
  441. }
  442. for _, column := range newTableColumns[1:] {
  443. if column.Default != "" {
  444. _, _ = sqlStringBuilder.WriteString(", COALESCE(`")
  445. _, _ = sqlStringBuilder.WriteString(column.Name)
  446. _, _ = sqlStringBuilder.WriteString("`, ")
  447. _, _ = sqlStringBuilder.WriteString(column.Default)
  448. _, _ = sqlStringBuilder.WriteString(")")
  449. } else {
  450. _, _ = sqlStringBuilder.WriteString(", `")
  451. _, _ = sqlStringBuilder.WriteString(column.Name)
  452. _, _ = sqlStringBuilder.WriteString("`")
  453. }
  454. }
  455. _, _ = sqlStringBuilder.WriteString(" FROM `")
  456. _, _ = sqlStringBuilder.WriteString(tableName)
  457. _, _ = sqlStringBuilder.WriteString("`")
  458. if _, err := sess.Exec(sqlStringBuilder.String()); err != nil {
  459. log.Error("Unable to set copy data in to temp table %s. Error: %v", tempTableName, err)
  460. return err
  461. }
  462. if hasID && setting.Database.UseMSSQL {
  463. if _, err := sess.Exec(fmt.Sprintf("SET IDENTITY_INSERT `%s` OFF", tempTableName)); err != nil {
  464. log.Error("Unable to switch off identity insert for table %s. Error: %v", tempTableName, err)
  465. return err
  466. }
  467. }
  468. switch {
  469. case setting.Database.UseSQLite3:
  470. // SQLite will drop all the constraints on the old table
  471. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
  472. log.Error("Unable to drop old table %s. Error: %v", tableName, err)
  473. return err
  474. }
  475. if err := sess.Table(tempTableName).DropIndexes(bean); err != nil {
  476. log.Error("Unable to drop indexes on temporary table %s. Error: %v", tempTableName, err)
  477. return err
  478. }
  479. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` RENAME TO `%s`", tempTableName, tableName)); err != nil {
  480. log.Error("Unable to rename %s to %s. Error: %v", tempTableName, tableName, err)
  481. return err
  482. }
  483. if err := sess.Table(tableName).CreateIndexes(bean); err != nil {
  484. log.Error("Unable to recreate indexes on table %s. Error: %v", tableName, err)
  485. return err
  486. }
  487. if err := sess.Table(tableName).CreateUniques(bean); err != nil {
  488. log.Error("Unable to recreate uniques on table %s. Error: %v", tableName, err)
  489. return err
  490. }
  491. case setting.Database.UseMySQL:
  492. // MySQL will drop all the constraints on the old table
  493. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
  494. log.Error("Unable to drop old table %s. Error: %v", tableName, err)
  495. return err
  496. }
  497. // SQLite and MySQL will move all the constraints from the temporary table to the new table
  498. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` RENAME TO `%s`", tempTableName, tableName)); err != nil {
  499. log.Error("Unable to rename %s to %s. Error: %v", tempTableName, tableName, err)
  500. return err
  501. }
  502. case setting.Database.UsePostgreSQL:
  503. // CASCADE causes postgres to drop all the constraints on the old table
  504. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s` CASCADE", tableName)); err != nil {
  505. log.Error("Unable to drop old table %s. Error: %v", tableName, err)
  506. return err
  507. }
  508. // CASCADE causes postgres to move all the constraints from the temporary table to the new table
  509. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` RENAME TO `%s`", tempTableName, tableName)); err != nil {
  510. log.Error("Unable to rename %s to %s. Error: %v", tempTableName, tableName, err)
  511. return err
  512. }
  513. var indices []string
  514. schema := sess.Engine().Dialect().URI().Schema
  515. sess.Engine().SetSchema("")
  516. if err := sess.Table("pg_indexes").Cols("indexname").Where("tablename = ? ", tableName).Find(&indices); err != nil {
  517. log.Error("Unable to rename %s to %s. Error: %v", tempTableName, tableName, err)
  518. return err
  519. }
  520. sess.Engine().SetSchema(schema)
  521. for _, index := range indices {
  522. newIndexName := strings.Replace(index, "tmp_recreate__", "", 1)
  523. if _, err := sess.Exec(fmt.Sprintf("ALTER INDEX `%s` RENAME TO `%s`", index, newIndexName)); err != nil {
  524. log.Error("Unable to rename %s to %s. Error: %v", index, newIndexName, err)
  525. return err
  526. }
  527. }
  528. case setting.Database.UseMSSQL:
  529. // MSSQL will drop all the constraints on the old table
  530. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
  531. log.Error("Unable to drop old table %s. Error: %v", tableName, err)
  532. return err
  533. }
  534. // MSSQL sp_rename will move all the constraints from the temporary table to the new table
  535. if _, err := sess.Exec(fmt.Sprintf("sp_rename `%s`,`%s`", tempTableName, tableName)); err != nil {
  536. log.Error("Unable to rename %s to %s. Error: %v", tempTableName, tableName, err)
  537. return err
  538. }
  539. default:
  540. log.Fatal("Unrecognized DB")
  541. }
  542. return nil
  543. }
  544. // WARNING: YOU MUST COMMIT THE SESSION AT THE END
  545. func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...string) (err error) {
  546. if tableName == "" || len(columnNames) == 0 {
  547. return nil
  548. }
  549. // TODO: This will not work if there are foreign keys
  550. switch {
  551. case setting.Database.UseSQLite3:
  552. // First drop the indexes on the columns
  553. res, errIndex := sess.Query(fmt.Sprintf("PRAGMA index_list(`%s`)", tableName))
  554. if errIndex != nil {
  555. return errIndex
  556. }
  557. for _, row := range res {
  558. indexName := row["name"]
  559. indexRes, err := sess.Query(fmt.Sprintf("PRAGMA index_info(`%s`)", indexName))
  560. if err != nil {
  561. return err
  562. }
  563. if len(indexRes) != 1 {
  564. continue
  565. }
  566. indexColumn := string(indexRes[0]["name"])
  567. for _, name := range columnNames {
  568. if name == indexColumn {
  569. _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s`", indexName))
  570. if err != nil {
  571. return err
  572. }
  573. }
  574. }
  575. }
  576. // Here we need to get the columns from the original table
  577. sql := fmt.Sprintf("SELECT sql FROM sqlite_master WHERE tbl_name='%s' and type='table'", tableName)
  578. res, err := sess.Query(sql)
  579. if err != nil {
  580. return err
  581. }
  582. tableSQL := string(res[0]["sql"])
  583. // Separate out the column definitions
  584. tableSQL = tableSQL[strings.Index(tableSQL, "("):]
  585. // Remove the required columnNames
  586. for _, name := range columnNames {
  587. tableSQL = regexp.MustCompile(regexp.QuoteMeta("`"+name+"`")+"[^`,)]*?[,)]").ReplaceAllString(tableSQL, "")
  588. }
  589. // Ensure the query is ended properly
  590. tableSQL = strings.TrimSpace(tableSQL)
  591. if tableSQL[len(tableSQL)-1] != ')' {
  592. if tableSQL[len(tableSQL)-1] == ',' {
  593. tableSQL = tableSQL[:len(tableSQL)-1]
  594. }
  595. tableSQL += ")"
  596. }
  597. // Find all the columns in the table
  598. columns := regexp.MustCompile("`([^`]*)`").FindAllString(tableSQL, -1)
  599. tableSQL = fmt.Sprintf("CREATE TABLE `new_%s_new` ", tableName) + tableSQL
  600. if _, err := sess.Exec(tableSQL); err != nil {
  601. return err
  602. }
  603. // Now restore the data
  604. columnsSeparated := strings.Join(columns, ",")
  605. insertSQL := fmt.Sprintf("INSERT INTO `new_%s_new` (%s) SELECT %s FROM %s", tableName, columnsSeparated, columnsSeparated, tableName)
  606. if _, err := sess.Exec(insertSQL); err != nil {
  607. return err
  608. }
  609. // Now drop the old table
  610. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
  611. return err
  612. }
  613. // Rename the table
  614. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `new_%s_new` RENAME TO `%s`", tableName, tableName)); err != nil {
  615. return err
  616. }
  617. case setting.Database.UsePostgreSQL:
  618. cols := ""
  619. for _, col := range columnNames {
  620. if cols != "" {
  621. cols += ", "
  622. }
  623. cols += "DROP COLUMN `" + col + "` CASCADE"
  624. }
  625. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
  626. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  627. }
  628. case setting.Database.UseMySQL:
  629. // Drop indexes on columns first
  630. sql := fmt.Sprintf("SHOW INDEX FROM %s WHERE column_name IN ('%s')", tableName, strings.Join(columnNames, "','"))
  631. res, err := sess.Query(sql)
  632. if err != nil {
  633. return err
  634. }
  635. for _, index := range res {
  636. indexName := index["column_name"]
  637. if len(indexName) > 0 {
  638. _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s` ON `%s`", indexName, tableName))
  639. if err != nil {
  640. return err
  641. }
  642. }
  643. }
  644. // Now drop the columns
  645. cols := ""
  646. for _, col := range columnNames {
  647. if cols != "" {
  648. cols += ", "
  649. }
  650. cols += "DROP COLUMN `" + col + "`"
  651. }
  652. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
  653. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  654. }
  655. case setting.Database.UseMSSQL:
  656. cols := ""
  657. for _, col := range columnNames {
  658. if cols != "" {
  659. cols += ", "
  660. }
  661. cols += "`" + strings.ToLower(col) + "`"
  662. }
  663. sql := fmt.Sprintf("SELECT Name FROM SYS.DEFAULT_CONSTRAINTS WHERE PARENT_OBJECT_ID = OBJECT_ID('%[1]s') AND PARENT_COLUMN_ID IN (SELECT column_id FROM sys.columns WHERE lower(NAME) IN (%[2]s) AND object_id = OBJECT_ID('%[1]s'))",
  664. tableName, strings.ReplaceAll(cols, "`", "'"))
  665. constraints := make([]string, 0)
  666. if err := sess.SQL(sql).Find(&constraints); err != nil {
  667. return fmt.Errorf("Find constraints: %v", err)
  668. }
  669. for _, constraint := range constraints {
  670. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP CONSTRAINT `%s`", tableName, constraint)); err != nil {
  671. return fmt.Errorf("Drop table `%s` constraint `%s`: %v", tableName, constraint, err)
  672. }
  673. }
  674. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP COLUMN %s", tableName, cols)); err != nil {
  675. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  676. }
  677. default:
  678. log.Fatal("Unrecognized DB")
  679. }
  680. return nil
  681. }
  682. // modifyColumn will modify column's type or other propertity. SQLITE is not supported
  683. func modifyColumn(x *xorm.Engine, tableName string, col *schemas.Column) error {
  684. var indexes map[string]*schemas.Index
  685. var err error
  686. // MSSQL have to remove index at first, otherwise alter column will fail
  687. // ref. https://sqlzealots.com/2018/05/09/error-message-the-index-is-dependent-on-column-alter-table-alter-column-failed-because-one-or-more-objects-access-this-column/
  688. if x.Dialect().URI().DBType == schemas.MSSQL {
  689. indexes, err = x.Dialect().GetIndexes(x.DB(), context.Background(), tableName)
  690. if err != nil {
  691. return err
  692. }
  693. for _, index := range indexes {
  694. _, err = x.Exec(x.Dialect().DropIndexSQL(tableName, index))
  695. if err != nil {
  696. return err
  697. }
  698. }
  699. }
  700. defer func() {
  701. for _, index := range indexes {
  702. _, err = x.Exec(x.Dialect().CreateIndexSQL(tableName, index))
  703. if err != nil {
  704. log.Error("Create index %s on table %s failed: %v", index.Name, tableName, err)
  705. }
  706. }
  707. }()
  708. alterSQL := x.Dialect().ModifyColumnSQL(tableName, col)
  709. if _, err := x.Exec(alterSQL); err != nil {
  710. return err
  711. }
  712. return nil
  713. }