|
-
-
-
-
-
- package migrations
-
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "io/ioutil"
- "os"
- "path"
- "path/filepath"
- "regexp"
- "strings"
- "time"
-
- "code.gitea.io/gitea/modules/generate"
- "code.gitea.io/gitea/modules/log"
- "code.gitea.io/gitea/modules/setting"
-
- gouuid "github.com/satori/go.uuid"
- "github.com/unknwon/com"
- ini "gopkg.in/ini.v1"
- "xorm.io/xorm"
- )
-
- const minDBVersion = 4
-
-
- type Migration interface {
- Description() string
- Migrate(*xorm.Engine) error
- }
-
- type migration struct {
- description string
- migrate func(*xorm.Engine) error
- }
-
- // NewMigration creates a new migration
- func NewMigration(desc string, fn func(*xorm.Engine) error) Migration {
- return &migration{desc, fn}
- }
-
-
- func (m *migration) Description() string {
- return m.description
- }
-
-
- func (m *migration) Migrate(x *xorm.Engine) error {
- return m.migrate(x)
- }
-
-
- type Version struct {
- ID int64 `xorm:"pk autoincr"`
- Version int64
- }
-
- func emptyMigration(x *xorm.Engine) error {
- return nil
- }
-
-
-
-
- var migrations = []Migration{
-
- NewMigration("fix locale file load panic", fixLocaleFileLoadPanic),
- NewMigration("trim action compare URL prefix", trimCommitActionAppURLPrefix),
- NewMigration("generate issue-label from issue", issueToIssueLabel),
- NewMigration("refactor attachment table", attachmentRefactor),
- NewMigration("rename pull request fields", renamePullRequestFields),
- NewMigration("clean up migrate repo info", cleanUpMigrateRepoInfo),
- NewMigration("generate rands and salt for organizations", generateOrgRandsAndSalt),
- NewMigration("convert date to unix timestamp", convertDateToUnix),
- NewMigration("convert LDAP UseSSL option to SecurityProtocol", ldapUseSSLToSecurityProtocol),
-
-
- NewMigration("set comment updated with created", setCommentUpdatedWithCreated),
-
- NewMigration("create user column diff view style", createUserColumnDiffViewStyle),
-
- NewMigration("create user column allow create organization", createAllowCreateOrganizationColumn),
-
- NewMigration("create repo unit table and add units for all repos", addUnitsToTables),
-
- NewMigration("set protect branches updated with created", setProtectedBranchUpdatedWithCreated),
-
- NewMigration("add external login user", addExternalLoginUser),
-
- NewMigration("generate and migrate Git hooks", generateAndMigrateGitHooks),
-
- NewMigration("use new avatar path name for security reason", useNewNameAvatars),
-
- NewMigration("rewrite authorized_keys file via new format", useNewPublickeyFormat),
-
- NewMigration("generate and migrate wiki Git hooks", generateAndMigrateWikiGitHooks),
-
- NewMigration("add user openid table", addUserOpenID),
-
- NewMigration("change the key_id and primary_key_id type", changeGPGKeysColumns),
-
- NewMigration("add show field in user openid table", addUserOpenIDShow),
-
- NewMigration("generate and migrate repo and wiki Git hooks", generateAndMigrateGitHookChains),
-
- NewMigration("change mirror interval from hours to time.Duration", convertIntervalToDuration),
-
- NewMigration("add field for repo size", addRepoSize),
-
- NewMigration("add commit status table", addCommitStatus),
-
- NewMigration("add primary key to external login user", addExternalLoginUserPK),
-
- NewMigration("add field for login source synchronization", addLoginSourceSyncEnabledColumn),
-
- NewMigration("add units for team", addUnitsToRepoTeam),
-
- NewMigration("remove columns from action", removeActionColumns),
-
- NewMigration("give all units to owner teams", giveAllUnitsToOwnerTeams),
-
- NewMigration("adds comment to an action", addCommentIDToAction),
-
- NewMigration("regenerate git hooks", regenerateGitHooks36),
-
- NewMigration("unescape user full names", unescapeUserFullNames),
-
- NewMigration("remove commits and settings unit types", removeCommitsUnitType),
-
- NewMigration("add tags to releases and sync existing repositories", releaseAddColumnIsTagAndSyncTags),
-
- NewMigration("fix protected branch can push value to false", fixProtectedBranchCanPushValue),
-
- NewMigration("remove duplicate unit types", removeDuplicateUnitTypes),
-
- NewMigration("empty step", emptyMigration),
-
- NewMigration("empty step", emptyMigration),
-
- NewMigration("empty step", emptyMigration),
-
- NewMigration("remove index column from repo_unit table", removeIndexColumnFromRepoUnitTable),
-
- NewMigration("remove organization watch repositories", removeOrganizationWatchRepo),
-
- NewMigration("add deleted branches", addDeletedBranch),
-
- NewMigration("add repo indexer status", addRepoIndexerStatus),
-
- NewMigration("adds time tracking and stopwatches", addTimetracking),
-
- NewMigration("migrate protected branch struct", migrateProtectedBranchStruct),
-
- NewMigration("add default value to user prohibit_login", addDefaultValueToUserProhibitLogin),
-
- NewMigration("add lfs lock table", addLFSLock),
-
- NewMigration("add reactions", addReactions),
-
- NewMigration("add pull request options", addPullRequestOptions),
-
- NewMigration("add writable deploy keys", addModeToDeploKeys),
-
- NewMigration("remove is_owner, num_teams columns from org_user", removeIsOwnerColumnFromOrgUser),
-
- NewMigration("add closed_unix column for issues", addIssueClosedTime),
-
- NewMigration("add label descriptions", addLabelsDescriptions),
-
- NewMigration("add merge whitelist for protected branches", addProtectedBranchMergeWhitelist),
-
- NewMigration("add is_fsck_enabled column for repos", addFsckEnabledToRepo),
-
- NewMigration("add size column for attachments", addSizeToAttachment),
-
- NewMigration("add last used passcode column for TOTP", addLastUsedPasscodeTOTP),
-
- NewMigration("add language column for user setting", addLanguageSetting),
-
- NewMigration("add multiple assignees", addMultipleAssignees),
-
- NewMigration("add u2f", addU2FReg),
-
- NewMigration("add login source id column for public_key table", addLoginSourceIDToPublicKeyTable),
-
- NewMigration("remove stale watches", removeStaleWatches),
-
- NewMigration("Reformat and remove incorrect topics", reformatAndRemoveIncorrectTopics),
-
- NewMigration("move team units to team_unit table", moveTeamUnitsToTeamUnitTable),
-
- NewMigration("add issue_dependencies", addIssueDependencies),
-
- NewMigration("protect each scratch token", addScratchHash),
-
- NewMigration("add review", addReview),
-
- NewMigration("add must_change_password column for users table", addMustChangePassword),
-
- NewMigration("add approval whitelists to protected branches", addApprovalWhitelistsToProtectedBranches),
-
- NewMigration("clear nonused data which not deleted when user was deleted", clearNonusedData),
-
- NewMigration("add pull request rebase with merge commit", addPullRequestRebaseWithMerge),
-
- NewMigration("add theme to users", addUserDefaultTheme),
-
- NewMigration("rename repo is_bare to repo is_empty", renameRepoIsBareToIsEmpty),
-
- NewMigration("add can close issues via commit in any branch", addCanCloseIssuesViaCommitInAnyBranch),
-
- NewMigration("add is locked to issues", addIsLockedToIssues),
-
- NewMigration("update U2F counter type", changeU2FCounterType),
-
- NewMigration("hot fix for wrong release sha1 on release table", fixReleaseSha1OnReleaseTable),
-
- NewMigration("add uploader id for table attachment", addUploaderIDForAttachment),
-
- NewMigration("add table to store original imported gpg keys", addGPGKeyImport),
-
- NewMigration("hash application token", hashAppToken),
-
- NewMigration("add http method to webhook", addHTTPMethodToWebhook),
-
- NewMigration("add avatar field to repository", addAvatarFieldToRepository),
-
- NewMigration("add commit status context field to commit_status", addCommitStatusContext),
-
- NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo),
-
- NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo),
-
- NewMigration("add index on owner_id of repository and type, review_id of comment", addIndexOnRepositoryAndComment),
-
- NewMigration("remove orphaned repository index statuses", removeLingeringIndexStatus),
-
- NewMigration("add email notification enabled preference to user", addEmailNotificationEnabledToUser),
-
- NewMigration("add enable_status_check, status_check_contexts to protected_branch", addStatusCheckColumnsForProtectedBranches),
-
- NewMigration("add table columns for cross referencing issues", addCrossReferenceColumns),
-
- NewMigration("delete orphaned attachments", deleteOrphanedAttachments),
-
- NewMigration("add repo_admin_change_team_access to user", addRepoAdminChangeTeamAccessColumnForUser),
-
- NewMigration("add original author name and id on migrated release", addOriginalAuthorOnMigratedReleases),
-
- NewMigration("add task table and status column for repository table", addTaskTable),
-
- NewMigration("update migration repositories' service type", updateMigrationServiceTypes),
-
- NewMigration("change length of some external login users columns", changeSomeColumnsLengthOfExternalLoginUser),
-
- NewMigration("update migration repositories' service type", dropColumnHeadUserNameOnPullRequest),
-
- NewMigration("Add WhitelistDeployKeys to protected branch", addWhitelistDeployKeysToBranches),
-
- NewMigration("remove unnecessary columns from label", removeLabelUneededCols),
- }
-
-
- func Migrate(x *xorm.Engine) error {
- if err := x.Sync(new(Version)); err != nil {
- return fmt.Errorf("sync: %v", err)
- }
-
- currentVersion := &Version{ID: 1}
- has, err := x.Get(currentVersion)
- if err != nil {
- return fmt.Errorf("get: %v", err)
- } else if !has {
-
-
- currentVersion.ID = 0
- currentVersion.Version = int64(minDBVersion + len(migrations))
-
- if _, err = x.InsertOne(currentVersion); err != nil {
- return fmt.Errorf("insert: %v", err)
- }
- }
-
- v := currentVersion.Version
- if minDBVersion > v {
- log.Fatal(`Gitea no longer supports auto-migration from your previously installed version.
- Please try to upgrade to a lower version (>= v0.6.0) first, then upgrade to current version.`)
- return nil
- }
-
- if int(v-minDBVersion) > len(migrations) {
-
- currentVersion.Version = int64(len(migrations) + minDBVersion)
- _, err = x.ID(1).Update(currentVersion)
- return err
- }
- for i, m := range migrations[v-minDBVersion:] {
- log.Info("Migration[%d]: %s", v+int64(i), m.Description())
- if err = m.Migrate(x); err != nil {
- return fmt.Errorf("do migrate: %v", err)
- }
- currentVersion.Version = v + int64(i) + 1
- if _, err = x.ID(1).Update(currentVersion); err != nil {
- return err
- }
- }
- return nil
- }
-
- func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...string) (err error) {
- if tableName == "" || len(columnNames) == 0 {
- return nil
- }
-
-
- switch {
- case setting.Database.UseSQLite3:
-
- res, errIndex := sess.Query(fmt.Sprintf("PRAGMA index_list(`%s`)", tableName))
- if errIndex != nil {
- return errIndex
- }
- for _, row := range res {
- indexName := row["name"]
- indexRes, err := sess.Query(fmt.Sprintf("PRAGMA index_info(`%s`)", indexName))
- if err != nil {
- return err
- }
- if len(indexRes) != 1 {
- continue
- }
- indexColumn := string(indexRes[0]["name"])
- for _, name := range columnNames {
- if name == indexColumn {
- _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s`", indexName))
- if err != nil {
- return err
- }
- }
- }
- }
-
-
- sql := fmt.Sprintf("SELECT sql FROM sqlite_master WHERE tbl_name='%s' and type='table'", tableName)
- res, err := sess.Query(sql)
- if err != nil {
- return err
- }
- tableSQL := string(res[0]["sql"])
-
-
- tableSQL = tableSQL[strings.Index(tableSQL, "("):]
-
-
- for _, name := range columnNames {
- tableSQL = regexp.MustCompile(regexp.QuoteMeta("`"+name+"`")+"[^`,)]*?[,)]").ReplaceAllString(tableSQL, "")
- }
-
-
- tableSQL = strings.TrimSpace(tableSQL)
- if tableSQL[len(tableSQL)-1] != ')' {
- if tableSQL[len(tableSQL)-1] == ',' {
- tableSQL = tableSQL[:len(tableSQL)-1]
- }
- tableSQL += ")"
- }
-
-
- columns := regexp.MustCompile("`([^`]*)`").FindAllString(tableSQL, -1)
-
- tableSQL = fmt.Sprintf("CREATE TABLE `new_%s_new` ", tableName) + tableSQL
- if _, err := sess.Exec(tableSQL); err != nil {
- return err
- }
-
-
- columnsSeparated := strings.Join(columns, ",")
- insertSQL := fmt.Sprintf("INSERT INTO `new_%s_new` (%s) SELECT %s FROM %s", tableName, columnsSeparated, columnsSeparated, tableName)
- if _, err := sess.Exec(insertSQL); err != nil {
- return err
- }
-
-
- if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
- return err
- }
-
-
- if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `new_%s_new` RENAME TO `%s`", tableName, tableName)); err != nil {
- return err
- }
-
- case setting.Database.UsePostgreSQL:
- cols := ""
- for _, col := range columnNames {
- if cols != "" {
- cols += ", "
- }
- cols += "DROP COLUMN `" + col + "` CASCADE"
- }
- if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
- return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
- }
- case setting.Database.UseMySQL:
-
- sql := fmt.Sprintf("SHOW INDEX FROM %s WHERE column_name IN ('%s')", tableName, strings.Join(columnNames, "','"))
- res, err := sess.Query(sql)
- if err != nil {
- return err
- }
- for _, index := range res {
- indexName := index["column_name"]
- if len(indexName) > 0 {
- _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s` ON `%s`", indexName, tableName))
- if err != nil {
- return err
- }
- }
- }
-
-
- cols := ""
- for _, col := range columnNames {
- if cols != "" {
- cols += ", "
- }
- cols += "DROP COLUMN `" + col + "`"
- }
- if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
- return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
- }
- case setting.Database.UseMSSQL:
- cols := ""
- for _, col := range columnNames {
- if cols != "" {
- cols += ", "
- }
- cols += "`" + strings.ToLower(col) + "`"
- }
- 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'))",
- tableName, strings.Replace(cols, "`", "'", -1))
- constraints := make([]string, 0)
- if err := sess.SQL(sql).Find(&constraints); err != nil {
- sess.Rollback()
- return fmt.Errorf("Find constraints: %v", err)
- }
- for _, constraint := range constraints {
- if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP CONSTRAINT `%s`", tableName, constraint)); err != nil {
- sess.Rollback()
- return fmt.Errorf("Drop table `%s` constraint `%s`: %v", tableName, constraint, err)
- }
- }
- if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP COLUMN %s", tableName, cols)); err != nil {
- sess.Rollback()
- return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
- }
-
- return sess.Commit()
- default:
- log.Fatal("Unrecognized DB")
- }
-
- return nil
- }
-
- func fixLocaleFileLoadPanic(_ *xorm.Engine) error {
- cfg, err := ini.Load(setting.CustomConf)
- if err != nil {
- return fmt.Errorf("load custom config: %v", err)
- }
-
- cfg.DeleteSection("i18n")
- if err = cfg.SaveTo(setting.CustomConf); err != nil {
- return fmt.Errorf("save custom config: %v", err)
- }
-
- setting.Langs = strings.Split(strings.Replace(strings.Join(setting.Langs, ","), "fr-CA", "fr-FR", 1), ",")
- return nil
- }
-
- func trimCommitActionAppURLPrefix(x *xorm.Engine) error {
- type PushCommit struct {
- Sha1 string
- Message string
- AuthorEmail string
- AuthorName string
- }
-
- type PushCommits struct {
- Len int
- Commits []*PushCommit
- CompareURL string `json:"CompareUrl"`
- }
-
- type Action struct {
- ID int64 `xorm:"pk autoincr"`
- Content string `xorm:"TEXT"`
- }
-
- results, err := x.Query("SELECT `id`,`content` FROM `action` WHERE `op_type`=?", 5)
- if err != nil {
- return fmt.Errorf("select commit actions: %v", err)
- }
-
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
-
- var pushCommits *PushCommits
- for _, action := range results {
- actID := com.StrTo(string(action["id"])).MustInt64()
- if actID == 0 {
- continue
- }
-
- pushCommits = new(PushCommits)
- if err = json.Unmarshal(action["content"], pushCommits); err != nil {
- return fmt.Errorf("unmarshal action content[%d]: %v", actID, err)
- }
-
- infos := strings.Split(pushCommits.CompareURL, "/")
- if len(infos) <= 4 {
- continue
- }
- pushCommits.CompareURL = strings.Join(infos[len(infos)-4:], "/")
-
- p, err := json.Marshal(pushCommits)
- if err != nil {
- return fmt.Errorf("marshal action content[%d]: %v", actID, err)
- }
-
- if _, err = sess.ID(actID).Update(&Action{
- Content: string(p),
- }); err != nil {
- return fmt.Errorf("update action[%d]: %v", actID, err)
- }
- }
- return sess.Commit()
- }
-
- func issueToIssueLabel(x *xorm.Engine) error {
- type IssueLabel struct {
- ID int64 `xorm:"pk autoincr"`
- IssueID int64 `xorm:"UNIQUE(s)"`
- LabelID int64 `xorm:"UNIQUE(s)"`
- }
-
- issueLabels := make([]*IssueLabel, 0, 50)
- results, err := x.Query("SELECT `id`,`label_ids` FROM `issue`")
- if err != nil {
- if strings.Contains(err.Error(), "no such column") ||
- strings.Contains(err.Error(), "Unknown column") {
- return nil
- }
- return fmt.Errorf("select issues: %v", err)
- }
- for _, issue := range results {
- issueID := com.StrTo(issue["id"]).MustInt64()
-
-
- mark := make(map[int64]bool)
- for _, idStr := range strings.Split(string(issue["label_ids"]), "|") {
- labelID := com.StrTo(strings.TrimPrefix(idStr, "$")).MustInt64()
- if labelID == 0 || mark[labelID] {
- continue
- }
-
- mark[labelID] = true
- issueLabels = append(issueLabels, &IssueLabel{
- IssueID: issueID,
- LabelID: labelID,
- })
- }
- }
-
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
-
- if err = sess.Sync2(new(IssueLabel)); err != nil {
- return fmt.Errorf("Sync2: %v", err)
- } else if _, err = sess.Insert(issueLabels); err != nil {
- return fmt.Errorf("insert issue-labels: %v", err)
- }
-
- return sess.Commit()
- }
-
- func attachmentRefactor(x *xorm.Engine) error {
- type Attachment struct {
- ID int64 `xorm:"pk autoincr"`
- UUID string `xorm:"uuid INDEX"`
-
-
- Path string `xorm:"-"`
- NewPath string `xorm:"-"`
- }
-
- results, err := x.Query("SELECT * FROM `attachment`")
- if err != nil {
- return fmt.Errorf("select attachments: %v", err)
- }
-
- attachments := make([]*Attachment, 0, len(results))
- for _, attach := range results {
- if !com.IsExist(string(attach["path"])) {
-
- continue
- }
- attachments = append(attachments, &Attachment{
- ID: com.StrTo(attach["id"]).MustInt64(),
- UUID: gouuid.NewV4().String(),
- Path: string(attach["path"]),
- })
- }
-
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
-
- if err = sess.Sync2(new(Attachment)); err != nil {
- return fmt.Errorf("Sync2: %v", err)
- }
-
-
-
- var buf bytes.Buffer
- buf.WriteString("# old path -> new path\n")
-
-
- for _, attach := range attachments {
- if _, err = sess.ID(attach.ID).Update(attach); err != nil {
- return err
- }
-
- attach.NewPath = path.Join(setting.AttachmentPath, attach.UUID[0:1], attach.UUID[1:2], attach.UUID)
- buf.WriteString(attach.Path)
- buf.WriteString("\t")
- buf.WriteString(attach.NewPath)
- buf.WriteString("\n")
- }
-
-
- isSucceed := true
- defer func() {
- if isSucceed {
- return
- }
-
- dumpPath := path.Join(setting.LogRootPath, "attachment_path.dump")
- ioutil.WriteFile(dumpPath, buf.Bytes(), 0666)
- log.Info("Failed to rename some attachments, old and new paths are saved into: %s", dumpPath)
- }()
- for _, attach := range attachments {
- if err = os.MkdirAll(path.Dir(attach.NewPath), os.ModePerm); err != nil {
- isSucceed = false
- return err
- }
-
- if err = os.Rename(attach.Path, attach.NewPath); err != nil {
- isSucceed = false
- return err
- }
- }
-
- return sess.Commit()
- }
-
- func renamePullRequestFields(x *xorm.Engine) (err error) {
- type PullRequest struct {
- ID int64 `xorm:"pk autoincr"`
- PullID int64 `xorm:"INDEX"`
- PullIndex int64
- HeadBarcnh string
-
- IssueID int64 `xorm:"INDEX"`
- Index int64
- HeadBranch string
- }
-
- if err = x.Sync(new(PullRequest)); err != nil {
- return fmt.Errorf("sync: %v", err)
- }
-
- results, err := x.Query("SELECT `id`,`pull_id`,`pull_index`,`head_barcnh` FROM `pull_request`")
- if err != nil {
- if strings.Contains(err.Error(), "no such column") {
- return nil
- }
- return fmt.Errorf("select pull requests: %v", err)
- }
-
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
-
- var pull *PullRequest
- for _, pr := range results {
- pull = &PullRequest{
- ID: com.StrTo(pr["id"]).MustInt64(),
- IssueID: com.StrTo(pr["pull_id"]).MustInt64(),
- Index: com.StrTo(pr["pull_index"]).MustInt64(),
- HeadBranch: string(pr["head_barcnh"]),
- }
- if pull.Index == 0 {
- continue
- }
- if _, err = sess.ID(pull.ID).Update(pull); err != nil {
- return err
- }
- }
-
- return sess.Commit()
- }
-
- func cleanUpMigrateRepoInfo(x *xorm.Engine) (err error) {
- type (
- User struct {
- ID int64 `xorm:"pk autoincr"`
- LowerName string
- }
- Repository struct {
- ID int64 `xorm:"pk autoincr"`
- OwnerID int64
- LowerName string
- }
- )
-
- repos := make([]*Repository, 0, 25)
- if err = x.Where("is_mirror=?", false).Find(&repos); err != nil {
- return fmt.Errorf("select all non-mirror repositories: %v", err)
- }
- var user *User
- for _, repo := range repos {
- user = &User{ID: repo.OwnerID}
- has, err := x.Get(user)
- if err != nil {
- return fmt.Errorf("get owner of repository[%d - %d]: %v", repo.ID, repo.OwnerID, err)
- } else if !has {
- continue
- }
-
- configPath := filepath.Join(setting.RepoRootPath, user.LowerName, repo.LowerName+".git/config")
-
-
- if !com.IsFile(configPath) {
- continue
- }
-
- cfg, err := ini.Load(configPath)
- if err != nil {
- return fmt.Errorf("open config file: %v", err)
- }
- cfg.DeleteSection("remote \"origin\"")
- if err = cfg.SaveToIndent(configPath, "\t"); err != nil {
- return fmt.Errorf("save config file: %v", err)
- }
- }
-
- return nil
- }
-
- func generateOrgRandsAndSalt(x *xorm.Engine) (err error) {
- type User struct {
- ID int64 `xorm:"pk autoincr"`
- Rands string `xorm:"VARCHAR(10)"`
- Salt string `xorm:"VARCHAR(10)"`
- }
-
- orgs := make([]*User, 0, 10)
- if err = x.Where("type=1").And("rands=''").Find(&orgs); err != nil {
- return fmt.Errorf("select all organizations: %v", err)
- }
-
- sess := x.NewSession()
- defer sess.Close()
- if err = sess.Begin(); err != nil {
- return err
- }
-
- for _, org := range orgs {
- if org.Rands, err = generate.GetRandomString(10); err != nil {
- return err
- }
- if org.Salt, err = generate.GetRandomString(10); err != nil {
- return err
- }
- if _, err = sess.ID(org.ID).Update(org); err != nil {
- return err
- }
- }
-
- return sess.Commit()
- }
-
-
- type TAction struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- }
-
-
- func (t *TAction) TableName() string { return "action" }
-
-
- type TNotice struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- }
-
-
- func (t *TNotice) TableName() string { return "notice" }
-
-
- type TComment struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- }
-
-
- func (t *TComment) TableName() string { return "comment" }
-
-
- type TIssue struct {
- ID int64 `xorm:"pk autoincr"`
- DeadlineUnix int64
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TIssue) TableName() string { return "issue" }
-
-
- type TMilestone struct {
- ID int64 `xorm:"pk autoincr"`
- DeadlineUnix int64
- ClosedDateUnix int64
- }
-
-
- func (t *TMilestone) TableName() string { return "milestone" }
-
-
- type TAttachment struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- }
-
-
- func (t *TAttachment) TableName() string { return "attachment" }
-
-
- type TLoginSource struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TLoginSource) TableName() string { return "login_source" }
-
-
- type TPull struct {
- ID int64 `xorm:"pk autoincr"`
- MergedUnix int64
- }
-
-
- func (t *TPull) TableName() string { return "pull_request" }
-
-
- type TRelease struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- }
-
-
- func (t *TRelease) TableName() string { return "release" }
-
-
- type TRepo struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TRepo) TableName() string { return "repository" }
-
-
- type TMirror struct {
- ID int64 `xorm:"pk autoincr"`
- UpdatedUnix int64
- NextUpdateUnix int64
- }
-
-
- func (t *TMirror) TableName() string { return "mirror" }
-
-
- type TPublicKey struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TPublicKey) TableName() string { return "public_key" }
-
-
- type TDeployKey struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TDeployKey) TableName() string { return "deploy_key" }
-
-
- type TAccessToken struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TAccessToken) TableName() string { return "access_token" }
-
-
- type TUser struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TUser) TableName() string { return "user" }
-
-
- type TWebhook struct {
- ID int64 `xorm:"pk autoincr"`
- CreatedUnix int64
- UpdatedUnix int64
- }
-
-
- func (t *TWebhook) TableName() string { return "webhook" }
-
- func convertDateToUnix(x *xorm.Engine) (err error) {
- log.Info("This migration could take up to minutes, please be patient.")
- type Bean struct {
- ID int64 `xorm:"pk autoincr"`
- Created time.Time
- Updated time.Time
- Merged time.Time
- Deadline time.Time
- ClosedDate time.Time
- NextUpdate time.Time
- }
-
- var tables = []struct {
- name string
- cols []string
- bean interface{}
- }{
- {"action", []string{"created"}, new(TAction)},
- {"notice", []string{"created"}, new(TNotice)},
- {"comment", []string{"created"}, new(TComment)},
- {"issue", []string{"deadline", "created", "updated"}, new(TIssue)},
- {"milestone", []string{"deadline", "closed_date"}, new(TMilestone)},
- {"attachment", []string{"created"}, new(TAttachment)},
- {"login_source", []string{"created", "updated"}, new(TLoginSource)},
- {"pull_request", []string{"merged"}, new(TPull)},
- {"release", []string{"created"}, new(TRelease)},
- {"repository", []string{"created", "updated"}, new(TRepo)},
- {"mirror", []string{"updated", "next_update"}, new(TMirror)},
- {"public_key", []string{"created", "updated"}, new(TPublicKey)},
- {"deploy_key", []string{"created", "updated"}, new(TDeployKey)},
- {"access_token", []string{"created", "updated"}, new(TAccessToken)},
- {"user", []string{"created", "updated"}, new(TUser)},
- {"webhook", []string{"created", "updated"}, new(TWebhook)},
- }
-
- for _, table := range tables {
- log.Info("Converting table: %s", table.name)
- if err = x.Sync2(table.bean); err != nil {
- return fmt.Errorf("Sync [table: %s]: %v", table.name, err)
- }
-
- offset := 0
- for {
- beans := make([]*Bean, 0, 100)
- if err = x.Table(table.name).Asc("id").Limit(100, offset).Find(&beans); err != nil {
- return fmt.Errorf("select beans [table: %s, offset: %d]: %v", table.name, offset, err)
- }
- log.Trace("Table [%s]: offset: %d, beans: %d", table.name, offset, len(beans))
- if len(beans) == 0 {
- break
- }
- offset += 100
-
- baseSQL := "UPDATE `" + table.name + "` SET "
- for _, bean := range beans {
- valSQLs := make([]string, 0, len(table.cols))
- for _, col := range table.cols {
- fieldSQL := ""
- fieldSQL += col + "_unix = "
-
- switch col {
- case "deadline":
- if bean.Deadline.IsZero() {
- continue
- }
- fieldSQL += com.ToStr(bean.Deadline.Unix())
- case "created":
- fieldSQL += com.ToStr(bean.Created.Unix())
- case "updated":
- fieldSQL += com.ToStr(bean.Updated.Unix())
- case "closed_date":
- fieldSQL += com.ToStr(bean.ClosedDate.Unix())
- case "merged":
- fieldSQL += com.ToStr(bean.Merged.Unix())
- case "next_update":
- fieldSQL += com.ToStr(bean.NextUpdate.Unix())
- }
-
- valSQLs = append(valSQLs, fieldSQL)
- }
-
- if len(valSQLs) == 0 {
- continue
- }
-
- if _, err = x.Exec(baseSQL + strings.Join(valSQLs, ",") + " WHERE id = " + com.ToStr(bean.ID)); err != nil {
- return fmt.Errorf("update bean [table: %s, id: %d]: %v", table.name, bean.ID, err)
- }
- }
- }
- }
-
- return nil
- }
|