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

migrations.go 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  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. "bytes"
  8. "encoding/json"
  9. "fmt"
  10. "io/ioutil"
  11. "os"
  12. "path"
  13. "path/filepath"
  14. "regexp"
  15. "strings"
  16. "time"
  17. "code.gitea.io/gitea/modules/generate"
  18. "code.gitea.io/gitea/modules/log"
  19. "code.gitea.io/gitea/modules/setting"
  20. gouuid "github.com/satori/go.uuid"
  21. "github.com/unknwon/com"
  22. ini "gopkg.in/ini.v1"
  23. "xorm.io/xorm"
  24. )
  25. const minDBVersion = 4
  26. // Migration describes on migration from lower version to high version
  27. type Migration interface {
  28. Description() string
  29. Migrate(*xorm.Engine) error
  30. }
  31. type migration struct {
  32. description string
  33. migrate func(*xorm.Engine) error
  34. }
  35. // NewMigration creates a new migration
  36. func NewMigration(desc string, fn func(*xorm.Engine) error) Migration {
  37. return &migration{desc, fn}
  38. }
  39. // Description returns the migration's description
  40. func (m *migration) Description() string {
  41. return m.description
  42. }
  43. // Migrate executes the migration
  44. func (m *migration) Migrate(x *xorm.Engine) error {
  45. return m.migrate(x)
  46. }
  47. // Version describes the version table. Should have only one row with id==1
  48. type Version struct {
  49. ID int64 `xorm:"pk autoincr"`
  50. Version int64
  51. }
  52. func emptyMigration(x *xorm.Engine) error {
  53. return nil
  54. }
  55. // This is a sequence of migrations. Add new migrations to the bottom of the list.
  56. // If you want to "retire" a migration, remove it from the top of the list and
  57. // update minDBVersion accordingly
  58. var migrations = []Migration{
  59. // v0 -> v4: before 0.6.0 -> 0.7.33
  60. NewMigration("fix locale file load panic", fixLocaleFileLoadPanic), // V4 -> V5:v0.6.0
  61. NewMigration("trim action compare URL prefix", trimCommitActionAppURLPrefix), // V5 -> V6:v0.6.3
  62. NewMigration("generate issue-label from issue", issueToIssueLabel), // V6 -> V7:v0.6.4
  63. NewMigration("refactor attachment table", attachmentRefactor), // V7 -> V8:v0.6.4
  64. NewMigration("rename pull request fields", renamePullRequestFields), // V8 -> V9:v0.6.16
  65. NewMigration("clean up migrate repo info", cleanUpMigrateRepoInfo), // V9 -> V10:v0.6.20
  66. NewMigration("generate rands and salt for organizations", generateOrgRandsAndSalt), // V10 -> V11:v0.8.5
  67. NewMigration("convert date to unix timestamp", convertDateToUnix), // V11 -> V12:v0.9.2
  68. NewMigration("convert LDAP UseSSL option to SecurityProtocol", ldapUseSSLToSecurityProtocol), // V12 -> V13:v0.9.37
  69. // v13 -> v14:v0.9.87
  70. NewMigration("set comment updated with created", setCommentUpdatedWithCreated),
  71. // v14 -> v15
  72. NewMigration("create user column diff view style", createUserColumnDiffViewStyle),
  73. // v15 -> v16
  74. NewMigration("create user column allow create organization", createAllowCreateOrganizationColumn),
  75. // V16 -> v17
  76. NewMigration("create repo unit table and add units for all repos", addUnitsToTables),
  77. // v17 -> v18
  78. NewMigration("set protect branches updated with created", setProtectedBranchUpdatedWithCreated),
  79. // v18 -> v19
  80. NewMigration("add external login user", addExternalLoginUser),
  81. // v19 -> v20
  82. NewMigration("generate and migrate Git hooks", generateAndMigrateGitHooks),
  83. // v20 -> v21
  84. NewMigration("use new avatar path name for security reason", useNewNameAvatars),
  85. // v21 -> v22
  86. NewMigration("rewrite authorized_keys file via new format", useNewPublickeyFormat),
  87. // v22 -> v23
  88. NewMigration("generate and migrate wiki Git hooks", generateAndMigrateWikiGitHooks),
  89. // v23 -> v24
  90. NewMigration("add user openid table", addUserOpenID),
  91. // v24 -> v25
  92. NewMigration("change the key_id and primary_key_id type", changeGPGKeysColumns),
  93. // v25 -> v26
  94. NewMigration("add show field in user openid table", addUserOpenIDShow),
  95. // v26 -> v27
  96. NewMigration("generate and migrate repo and wiki Git hooks", generateAndMigrateGitHookChains),
  97. // v27 -> v28
  98. NewMigration("change mirror interval from hours to time.Duration", convertIntervalToDuration),
  99. // v28 -> v29
  100. NewMigration("add field for repo size", addRepoSize),
  101. // v29 -> v30
  102. NewMigration("add commit status table", addCommitStatus),
  103. // v30 -> 31
  104. NewMigration("add primary key to external login user", addExternalLoginUserPK),
  105. // v31 -> 32
  106. NewMigration("add field for login source synchronization", addLoginSourceSyncEnabledColumn),
  107. // v32 -> v33
  108. NewMigration("add units for team", addUnitsToRepoTeam),
  109. // v33 -> v34
  110. NewMigration("remove columns from action", removeActionColumns),
  111. // v34 -> v35
  112. NewMigration("give all units to owner teams", giveAllUnitsToOwnerTeams),
  113. // v35 -> v36
  114. NewMigration("adds comment to an action", addCommentIDToAction),
  115. // v36 -> v37
  116. NewMigration("regenerate git hooks", regenerateGitHooks36),
  117. // v37 -> v38
  118. NewMigration("unescape user full names", unescapeUserFullNames),
  119. // v38 -> v39
  120. NewMigration("remove commits and settings unit types", removeCommitsUnitType),
  121. // v39 -> v40
  122. NewMigration("add tags to releases and sync existing repositories", releaseAddColumnIsTagAndSyncTags),
  123. // v40 -> v41
  124. NewMigration("fix protected branch can push value to false", fixProtectedBranchCanPushValue),
  125. // v41 -> v42
  126. NewMigration("remove duplicate unit types", removeDuplicateUnitTypes),
  127. // v42 -> v43
  128. NewMigration("empty step", emptyMigration),
  129. // v43 -> v44
  130. NewMigration("empty step", emptyMigration),
  131. // v44 -> v45
  132. NewMigration("empty step", emptyMigration),
  133. // v45 -> v46
  134. NewMigration("remove index column from repo_unit table", removeIndexColumnFromRepoUnitTable),
  135. // v46 -> v47
  136. NewMigration("remove organization watch repositories", removeOrganizationWatchRepo),
  137. // v47 -> v48
  138. NewMigration("add deleted branches", addDeletedBranch),
  139. // v48 -> v49
  140. NewMigration("add repo indexer status", addRepoIndexerStatus),
  141. // v49 -> v50
  142. NewMigration("adds time tracking and stopwatches", addTimetracking),
  143. // v50 -> v51
  144. NewMigration("migrate protected branch struct", migrateProtectedBranchStruct),
  145. // v51 -> v52
  146. NewMigration("add default value to user prohibit_login", addDefaultValueToUserProhibitLogin),
  147. // v52 -> v53
  148. NewMigration("add lfs lock table", addLFSLock),
  149. // v53 -> v54
  150. NewMigration("add reactions", addReactions),
  151. // v54 -> v55
  152. NewMigration("add pull request options", addPullRequestOptions),
  153. // v55 -> v56
  154. NewMigration("add writable deploy keys", addModeToDeploKeys),
  155. // v56 -> v57
  156. NewMigration("remove is_owner, num_teams columns from org_user", removeIsOwnerColumnFromOrgUser),
  157. // v57 -> v58
  158. NewMigration("add closed_unix column for issues", addIssueClosedTime),
  159. // v58 -> v59
  160. NewMigration("add label descriptions", addLabelsDescriptions),
  161. // v59 -> v60
  162. NewMigration("add merge whitelist for protected branches", addProtectedBranchMergeWhitelist),
  163. // v60 -> v61
  164. NewMigration("add is_fsck_enabled column for repos", addFsckEnabledToRepo),
  165. // v61 -> v62
  166. NewMigration("add size column for attachments", addSizeToAttachment),
  167. // v62 -> v63
  168. NewMigration("add last used passcode column for TOTP", addLastUsedPasscodeTOTP),
  169. // v63 -> v64
  170. NewMigration("add language column for user setting", addLanguageSetting),
  171. // v64 -> v65
  172. NewMigration("add multiple assignees", addMultipleAssignees),
  173. // v65 -> v66
  174. NewMigration("add u2f", addU2FReg),
  175. // v66 -> v67
  176. NewMigration("add login source id column for public_key table", addLoginSourceIDToPublicKeyTable),
  177. // v67 -> v68
  178. NewMigration("remove stale watches", removeStaleWatches),
  179. // v68 -> V69
  180. NewMigration("Reformat and remove incorrect topics", reformatAndRemoveIncorrectTopics),
  181. // v69 -> v70
  182. NewMigration("move team units to team_unit table", moveTeamUnitsToTeamUnitTable),
  183. // v70 -> v71
  184. NewMigration("add issue_dependencies", addIssueDependencies),
  185. // v71 -> v72
  186. NewMigration("protect each scratch token", addScratchHash),
  187. // v72 -> v73
  188. NewMigration("add review", addReview),
  189. // v73 -> v74
  190. NewMigration("add must_change_password column for users table", addMustChangePassword),
  191. // v74 -> v75
  192. NewMigration("add approval whitelists to protected branches", addApprovalWhitelistsToProtectedBranches),
  193. // v75 -> v76
  194. NewMigration("clear nonused data which not deleted when user was deleted", clearNonusedData),
  195. // v76 -> v77
  196. NewMigration("add pull request rebase with merge commit", addPullRequestRebaseWithMerge),
  197. // v77 -> v78
  198. NewMigration("add theme to users", addUserDefaultTheme),
  199. // v78 -> v79
  200. NewMigration("rename repo is_bare to repo is_empty", renameRepoIsBareToIsEmpty),
  201. // v79 -> v80
  202. NewMigration("add can close issues via commit in any branch", addCanCloseIssuesViaCommitInAnyBranch),
  203. // v80 -> v81
  204. NewMigration("add is locked to issues", addIsLockedToIssues),
  205. // v81 -> v82
  206. NewMigration("update U2F counter type", changeU2FCounterType),
  207. // v82 -> v83
  208. NewMigration("hot fix for wrong release sha1 on release table", fixReleaseSha1OnReleaseTable),
  209. // v83 -> v84
  210. NewMigration("add uploader id for table attachment", addUploaderIDForAttachment),
  211. // v84 -> v85
  212. NewMigration("add table to store original imported gpg keys", addGPGKeyImport),
  213. // v85 -> v86
  214. NewMigration("hash application token", hashAppToken),
  215. // v86 -> v87
  216. NewMigration("add http method to webhook", addHTTPMethodToWebhook),
  217. // v87 -> v88
  218. NewMigration("add avatar field to repository", addAvatarFieldToRepository),
  219. // v88 -> v89
  220. NewMigration("add commit status context field to commit_status", addCommitStatusContext),
  221. // v89 -> v90
  222. NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo),
  223. // v90 -> v91
  224. NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo),
  225. // v91 -> v92
  226. NewMigration("add index on owner_id of repository and type, review_id of comment", addIndexOnRepositoryAndComment),
  227. // v92 -> v93
  228. NewMigration("remove orphaned repository index statuses", removeLingeringIndexStatus),
  229. // v93 -> v94
  230. NewMigration("add email notification enabled preference to user", addEmailNotificationEnabledToUser),
  231. // v94 -> v95
  232. NewMigration("add enable_status_check, status_check_contexts to protected_branch", addStatusCheckColumnsForProtectedBranches),
  233. // v95 -> v96
  234. NewMigration("add table columns for cross referencing issues", addCrossReferenceColumns),
  235. // v96 -> v97
  236. NewMigration("delete orphaned attachments", deleteOrphanedAttachments),
  237. // v97 -> v98
  238. NewMigration("add repo_admin_change_team_access to user", addRepoAdminChangeTeamAccessColumnForUser),
  239. // v98 -> v99
  240. NewMigration("add original author name and id on migrated release", addOriginalAuthorOnMigratedReleases),
  241. // v99 -> v100
  242. NewMigration("add task table and status column for repository table", addTaskTable),
  243. // v100 -> v101
  244. NewMigration("update migration repositories' service type", updateMigrationServiceTypes),
  245. }
  246. // Migrate database to current version
  247. func Migrate(x *xorm.Engine) error {
  248. if err := x.Sync(new(Version)); err != nil {
  249. return fmt.Errorf("sync: %v", err)
  250. }
  251. currentVersion := &Version{ID: 1}
  252. has, err := x.Get(currentVersion)
  253. if err != nil {
  254. return fmt.Errorf("get: %v", err)
  255. } else if !has {
  256. // If the version record does not exist we think
  257. // it is a fresh installation and we can skip all migrations.
  258. currentVersion.ID = 0
  259. currentVersion.Version = int64(minDBVersion + len(migrations))
  260. if _, err = x.InsertOne(currentVersion); err != nil {
  261. return fmt.Errorf("insert: %v", err)
  262. }
  263. }
  264. v := currentVersion.Version
  265. if minDBVersion > v {
  266. log.Fatal(`Gitea no longer supports auto-migration from your previously installed version.
  267. Please try to upgrade to a lower version (>= v0.6.0) first, then upgrade to current version.`)
  268. return nil
  269. }
  270. if int(v-minDBVersion) > len(migrations) {
  271. // User downgraded Gitea.
  272. currentVersion.Version = int64(len(migrations) + minDBVersion)
  273. _, err = x.ID(1).Update(currentVersion)
  274. return err
  275. }
  276. for i, m := range migrations[v-minDBVersion:] {
  277. log.Info("Migration[%d]: %s", v+int64(i), m.Description())
  278. if err = m.Migrate(x); err != nil {
  279. return fmt.Errorf("do migrate: %v", err)
  280. }
  281. currentVersion.Version = v + int64(i) + 1
  282. if _, err = x.ID(1).Update(currentVersion); err != nil {
  283. return err
  284. }
  285. }
  286. return nil
  287. }
  288. func dropTableColumns(sess *xorm.Session, tableName string, columnNames ...string) (err error) {
  289. if tableName == "" || len(columnNames) == 0 {
  290. return nil
  291. }
  292. // TODO: This will not work if there are foreign keys
  293. switch {
  294. case setting.Database.UseSQLite3:
  295. // First drop the indexes on the columns
  296. res, errIndex := sess.Query(fmt.Sprintf("PRAGMA index_list(`%s`)", tableName))
  297. if errIndex != nil {
  298. return errIndex
  299. }
  300. for _, row := range res {
  301. indexName := row["name"]
  302. indexRes, err := sess.Query(fmt.Sprintf("PRAGMA index_info(`%s`)", indexName))
  303. if err != nil {
  304. return err
  305. }
  306. if len(indexRes) != 1 {
  307. continue
  308. }
  309. indexColumn := string(indexRes[0]["name"])
  310. for _, name := range columnNames {
  311. if name == indexColumn {
  312. _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s`", indexName))
  313. if err != nil {
  314. return err
  315. }
  316. }
  317. }
  318. }
  319. // Here we need to get the columns from the original table
  320. sql := fmt.Sprintf("SELECT sql FROM sqlite_master WHERE tbl_name='%s' and type='table'", tableName)
  321. res, err := sess.Query(sql)
  322. if err != nil {
  323. return err
  324. }
  325. tableSQL := string(res[0]["sql"])
  326. // Separate out the column definitions
  327. tableSQL = tableSQL[strings.Index(tableSQL, "("):]
  328. // Remove the required columnNames
  329. for _, name := range columnNames {
  330. tableSQL = regexp.MustCompile(regexp.QuoteMeta("`"+name+"`")+"[^`,)]*?[,)]").ReplaceAllString(tableSQL, "")
  331. }
  332. // Ensure the query is ended properly
  333. tableSQL = strings.TrimSpace(tableSQL)
  334. if tableSQL[len(tableSQL)-1] != ')' {
  335. if tableSQL[len(tableSQL)-1] == ',' {
  336. tableSQL = tableSQL[:len(tableSQL)-1]
  337. }
  338. tableSQL += ")"
  339. }
  340. // Find all the columns in the table
  341. columns := regexp.MustCompile("`([^`]*)`").FindAllString(tableSQL, -1)
  342. tableSQL = fmt.Sprintf("CREATE TABLE `new_%s_new` ", tableName) + tableSQL
  343. if _, err := sess.Exec(tableSQL); err != nil {
  344. return err
  345. }
  346. // Now restore the data
  347. columnsSeparated := strings.Join(columns, ",")
  348. insertSQL := fmt.Sprintf("INSERT INTO `new_%s_new` (%s) SELECT %s FROM %s", tableName, columnsSeparated, columnsSeparated, tableName)
  349. if _, err := sess.Exec(insertSQL); err != nil {
  350. return err
  351. }
  352. // Now drop the old table
  353. if _, err := sess.Exec(fmt.Sprintf("DROP TABLE `%s`", tableName)); err != nil {
  354. return err
  355. }
  356. // Rename the table
  357. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `new_%s_new` RENAME TO `%s`", tableName, tableName)); err != nil {
  358. return err
  359. }
  360. case setting.Database.UsePostgreSQL:
  361. cols := ""
  362. for _, col := range columnNames {
  363. if cols != "" {
  364. cols += ", "
  365. }
  366. cols += "DROP COLUMN `" + col + "` CASCADE"
  367. }
  368. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
  369. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  370. }
  371. case setting.Database.UseMySQL:
  372. // Drop indexes on columns first
  373. sql := fmt.Sprintf("SHOW INDEX FROM %s WHERE column_name IN ('%s')", tableName, strings.Join(columnNames, "','"))
  374. res, err := sess.Query(sql)
  375. if err != nil {
  376. return err
  377. }
  378. for _, index := range res {
  379. indexName := index["column_name"]
  380. if len(indexName) > 0 {
  381. _, err := sess.Exec(fmt.Sprintf("DROP INDEX `%s` ON `%s`", indexName, tableName))
  382. if err != nil {
  383. return err
  384. }
  385. }
  386. }
  387. // Now drop the columns
  388. cols := ""
  389. for _, col := range columnNames {
  390. if cols != "" {
  391. cols += ", "
  392. }
  393. cols += "DROP COLUMN `" + col + "`"
  394. }
  395. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` %s", tableName, cols)); err != nil {
  396. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  397. }
  398. case setting.Database.UseMSSQL:
  399. cols := ""
  400. for _, col := range columnNames {
  401. if cols != "" {
  402. cols += ", "
  403. }
  404. cols += "`" + strings.ToLower(col) + "`"
  405. }
  406. 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'))",
  407. tableName, strings.Replace(cols, "`", "'", -1))
  408. constraints := make([]string, 0)
  409. if err := sess.SQL(sql).Find(&constraints); err != nil {
  410. sess.Rollback()
  411. return fmt.Errorf("Find constraints: %v", err)
  412. }
  413. for _, constraint := range constraints {
  414. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP CONSTRAINT `%s`", tableName, constraint)); err != nil {
  415. sess.Rollback()
  416. return fmt.Errorf("Drop table `%s` constraint `%s`: %v", tableName, constraint, err)
  417. }
  418. }
  419. if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE `%s` DROP COLUMN %s", tableName, cols)); err != nil {
  420. sess.Rollback()
  421. return fmt.Errorf("Drop table `%s` columns %v: %v", tableName, columnNames, err)
  422. }
  423. return sess.Commit()
  424. default:
  425. log.Fatal("Unrecognized DB")
  426. }
  427. return nil
  428. }
  429. func fixLocaleFileLoadPanic(_ *xorm.Engine) error {
  430. cfg, err := ini.Load(setting.CustomConf)
  431. if err != nil {
  432. return fmt.Errorf("load custom config: %v", err)
  433. }
  434. cfg.DeleteSection("i18n")
  435. if err = cfg.SaveTo(setting.CustomConf); err != nil {
  436. return fmt.Errorf("save custom config: %v", err)
  437. }
  438. setting.Langs = strings.Split(strings.Replace(strings.Join(setting.Langs, ","), "fr-CA", "fr-FR", 1), ",")
  439. return nil
  440. }
  441. func trimCommitActionAppURLPrefix(x *xorm.Engine) error {
  442. type PushCommit struct {
  443. Sha1 string
  444. Message string
  445. AuthorEmail string
  446. AuthorName string
  447. }
  448. type PushCommits struct {
  449. Len int
  450. Commits []*PushCommit
  451. CompareURL string `json:"CompareUrl"`
  452. }
  453. type Action struct {
  454. ID int64 `xorm:"pk autoincr"`
  455. Content string `xorm:"TEXT"`
  456. }
  457. results, err := x.Query("SELECT `id`,`content` FROM `action` WHERE `op_type`=?", 5)
  458. if err != nil {
  459. return fmt.Errorf("select commit actions: %v", err)
  460. }
  461. sess := x.NewSession()
  462. defer sess.Close()
  463. if err = sess.Begin(); err != nil {
  464. return err
  465. }
  466. var pushCommits *PushCommits
  467. for _, action := range results {
  468. actID := com.StrTo(string(action["id"])).MustInt64()
  469. if actID == 0 {
  470. continue
  471. }
  472. pushCommits = new(PushCommits)
  473. if err = json.Unmarshal(action["content"], pushCommits); err != nil {
  474. return fmt.Errorf("unmarshal action content[%d]: %v", actID, err)
  475. }
  476. infos := strings.Split(pushCommits.CompareURL, "/")
  477. if len(infos) <= 4 {
  478. continue
  479. }
  480. pushCommits.CompareURL = strings.Join(infos[len(infos)-4:], "/")
  481. p, err := json.Marshal(pushCommits)
  482. if err != nil {
  483. return fmt.Errorf("marshal action content[%d]: %v", actID, err)
  484. }
  485. if _, err = sess.ID(actID).Update(&Action{
  486. Content: string(p),
  487. }); err != nil {
  488. return fmt.Errorf("update action[%d]: %v", actID, err)
  489. }
  490. }
  491. return sess.Commit()
  492. }
  493. func issueToIssueLabel(x *xorm.Engine) error {
  494. type IssueLabel struct {
  495. ID int64 `xorm:"pk autoincr"`
  496. IssueID int64 `xorm:"UNIQUE(s)"`
  497. LabelID int64 `xorm:"UNIQUE(s)"`
  498. }
  499. issueLabels := make([]*IssueLabel, 0, 50)
  500. results, err := x.Query("SELECT `id`,`label_ids` FROM `issue`")
  501. if err != nil {
  502. if strings.Contains(err.Error(), "no such column") ||
  503. strings.Contains(err.Error(), "Unknown column") {
  504. return nil
  505. }
  506. return fmt.Errorf("select issues: %v", err)
  507. }
  508. for _, issue := range results {
  509. issueID := com.StrTo(issue["id"]).MustInt64()
  510. // Just in case legacy code can have duplicated IDs for same label.
  511. mark := make(map[int64]bool)
  512. for _, idStr := range strings.Split(string(issue["label_ids"]), "|") {
  513. labelID := com.StrTo(strings.TrimPrefix(idStr, "$")).MustInt64()
  514. if labelID == 0 || mark[labelID] {
  515. continue
  516. }
  517. mark[labelID] = true
  518. issueLabels = append(issueLabels, &IssueLabel{
  519. IssueID: issueID,
  520. LabelID: labelID,
  521. })
  522. }
  523. }
  524. sess := x.NewSession()
  525. defer sess.Close()
  526. if err = sess.Begin(); err != nil {
  527. return err
  528. }
  529. if err = sess.Sync2(new(IssueLabel)); err != nil {
  530. return fmt.Errorf("Sync2: %v", err)
  531. } else if _, err = sess.Insert(issueLabels); err != nil {
  532. return fmt.Errorf("insert issue-labels: %v", err)
  533. }
  534. return sess.Commit()
  535. }
  536. func attachmentRefactor(x *xorm.Engine) error {
  537. type Attachment struct {
  538. ID int64 `xorm:"pk autoincr"`
  539. UUID string `xorm:"uuid INDEX"`
  540. // For rename purpose.
  541. Path string `xorm:"-"`
  542. NewPath string `xorm:"-"`
  543. }
  544. results, err := x.Query("SELECT * FROM `attachment`")
  545. if err != nil {
  546. return fmt.Errorf("select attachments: %v", err)
  547. }
  548. attachments := make([]*Attachment, 0, len(results))
  549. for _, attach := range results {
  550. if !com.IsExist(string(attach["path"])) {
  551. // If the attachment is already missing, there is no point to update it.
  552. continue
  553. }
  554. attachments = append(attachments, &Attachment{
  555. ID: com.StrTo(attach["id"]).MustInt64(),
  556. UUID: gouuid.NewV4().String(),
  557. Path: string(attach["path"]),
  558. })
  559. }
  560. sess := x.NewSession()
  561. defer sess.Close()
  562. if err = sess.Begin(); err != nil {
  563. return err
  564. }
  565. if err = sess.Sync2(new(Attachment)); err != nil {
  566. return fmt.Errorf("Sync2: %v", err)
  567. }
  568. // Note: Roll back for rename can be a dead loop,
  569. // so produces a backup file.
  570. var buf bytes.Buffer
  571. buf.WriteString("# old path -> new path\n")
  572. // Update database first because this is where error happens the most often.
  573. for _, attach := range attachments {
  574. if _, err = sess.ID(attach.ID).Update(attach); err != nil {
  575. return err
  576. }
  577. attach.NewPath = path.Join(setting.AttachmentPath, attach.UUID[0:1], attach.UUID[1:2], attach.UUID)
  578. buf.WriteString(attach.Path)
  579. buf.WriteString("\t")
  580. buf.WriteString(attach.NewPath)
  581. buf.WriteString("\n")
  582. }
  583. // Then rename attachments.
  584. isSucceed := true
  585. defer func() {
  586. if isSucceed {
  587. return
  588. }
  589. dumpPath := path.Join(setting.LogRootPath, "attachment_path.dump")
  590. ioutil.WriteFile(dumpPath, buf.Bytes(), 0666)
  591. log.Info("Failed to rename some attachments, old and new paths are saved into: %s", dumpPath)
  592. }()
  593. for _, attach := range attachments {
  594. if err = os.MkdirAll(path.Dir(attach.NewPath), os.ModePerm); err != nil {
  595. isSucceed = false
  596. return err
  597. }
  598. if err = os.Rename(attach.Path, attach.NewPath); err != nil {
  599. isSucceed = false
  600. return err
  601. }
  602. }
  603. return sess.Commit()
  604. }
  605. func renamePullRequestFields(x *xorm.Engine) (err error) {
  606. type PullRequest struct {
  607. ID int64 `xorm:"pk autoincr"`
  608. PullID int64 `xorm:"INDEX"`
  609. PullIndex int64
  610. HeadBarcnh string
  611. IssueID int64 `xorm:"INDEX"`
  612. Index int64
  613. HeadBranch string
  614. }
  615. if err = x.Sync(new(PullRequest)); err != nil {
  616. return fmt.Errorf("sync: %v", err)
  617. }
  618. results, err := x.Query("SELECT `id`,`pull_id`,`pull_index`,`head_barcnh` FROM `pull_request`")
  619. if err != nil {
  620. if strings.Contains(err.Error(), "no such column") {
  621. return nil
  622. }
  623. return fmt.Errorf("select pull requests: %v", err)
  624. }
  625. sess := x.NewSession()
  626. defer sess.Close()
  627. if err = sess.Begin(); err != nil {
  628. return err
  629. }
  630. var pull *PullRequest
  631. for _, pr := range results {
  632. pull = &PullRequest{
  633. ID: com.StrTo(pr["id"]).MustInt64(),
  634. IssueID: com.StrTo(pr["pull_id"]).MustInt64(),
  635. Index: com.StrTo(pr["pull_index"]).MustInt64(),
  636. HeadBranch: string(pr["head_barcnh"]),
  637. }
  638. if pull.Index == 0 {
  639. continue
  640. }
  641. if _, err = sess.ID(pull.ID).Update(pull); err != nil {
  642. return err
  643. }
  644. }
  645. return sess.Commit()
  646. }
  647. func cleanUpMigrateRepoInfo(x *xorm.Engine) (err error) {
  648. type (
  649. User struct {
  650. ID int64 `xorm:"pk autoincr"`
  651. LowerName string
  652. }
  653. Repository struct {
  654. ID int64 `xorm:"pk autoincr"`
  655. OwnerID int64
  656. LowerName string
  657. }
  658. )
  659. repos := make([]*Repository, 0, 25)
  660. if err = x.Where("is_mirror=?", false).Find(&repos); err != nil {
  661. return fmt.Errorf("select all non-mirror repositories: %v", err)
  662. }
  663. var user *User
  664. for _, repo := range repos {
  665. user = &User{ID: repo.OwnerID}
  666. has, err := x.Get(user)
  667. if err != nil {
  668. return fmt.Errorf("get owner of repository[%d - %d]: %v", repo.ID, repo.OwnerID, err)
  669. } else if !has {
  670. continue
  671. }
  672. configPath := filepath.Join(setting.RepoRootPath, user.LowerName, repo.LowerName+".git/config")
  673. // In case repository file is somehow missing.
  674. if !com.IsFile(configPath) {
  675. continue
  676. }
  677. cfg, err := ini.Load(configPath)
  678. if err != nil {
  679. return fmt.Errorf("open config file: %v", err)
  680. }
  681. cfg.DeleteSection("remote \"origin\"")
  682. if err = cfg.SaveToIndent(configPath, "\t"); err != nil {
  683. return fmt.Errorf("save config file: %v", err)
  684. }
  685. }
  686. return nil
  687. }
  688. func generateOrgRandsAndSalt(x *xorm.Engine) (err error) {
  689. type User struct {
  690. ID int64 `xorm:"pk autoincr"`
  691. Rands string `xorm:"VARCHAR(10)"`
  692. Salt string `xorm:"VARCHAR(10)"`
  693. }
  694. orgs := make([]*User, 0, 10)
  695. if err = x.Where("type=1").And("rands=''").Find(&orgs); err != nil {
  696. return fmt.Errorf("select all organizations: %v", err)
  697. }
  698. sess := x.NewSession()
  699. defer sess.Close()
  700. if err = sess.Begin(); err != nil {
  701. return err
  702. }
  703. for _, org := range orgs {
  704. if org.Rands, err = generate.GetRandomString(10); err != nil {
  705. return err
  706. }
  707. if org.Salt, err = generate.GetRandomString(10); err != nil {
  708. return err
  709. }
  710. if _, err = sess.ID(org.ID).Update(org); err != nil {
  711. return err
  712. }
  713. }
  714. return sess.Commit()
  715. }
  716. // TAction defines the struct for migrating table action
  717. type TAction struct {
  718. ID int64 `xorm:"pk autoincr"`
  719. CreatedUnix int64
  720. }
  721. // TableName will be invoked by XORM to customrize the table name
  722. func (t *TAction) TableName() string { return "action" }
  723. // TNotice defines the struct for migrating table notice
  724. type TNotice struct {
  725. ID int64 `xorm:"pk autoincr"`
  726. CreatedUnix int64
  727. }
  728. // TableName will be invoked by XORM to customrize the table name
  729. func (t *TNotice) TableName() string { return "notice" }
  730. // TComment defines the struct for migrating table comment
  731. type TComment struct {
  732. ID int64 `xorm:"pk autoincr"`
  733. CreatedUnix int64
  734. }
  735. // TableName will be invoked by XORM to customrize the table name
  736. func (t *TComment) TableName() string { return "comment" }
  737. // TIssue defines the struct for migrating table issue
  738. type TIssue struct {
  739. ID int64 `xorm:"pk autoincr"`
  740. DeadlineUnix int64
  741. CreatedUnix int64
  742. UpdatedUnix int64
  743. }
  744. // TableName will be invoked by XORM to customrize the table name
  745. func (t *TIssue) TableName() string { return "issue" }
  746. // TMilestone defines the struct for migrating table milestone
  747. type TMilestone struct {
  748. ID int64 `xorm:"pk autoincr"`
  749. DeadlineUnix int64
  750. ClosedDateUnix int64
  751. }
  752. // TableName will be invoked by XORM to customrize the table name
  753. func (t *TMilestone) TableName() string { return "milestone" }
  754. // TAttachment defines the struct for migrating table attachment
  755. type TAttachment struct {
  756. ID int64 `xorm:"pk autoincr"`
  757. CreatedUnix int64
  758. }
  759. // TableName will be invoked by XORM to customrize the table name
  760. func (t *TAttachment) TableName() string { return "attachment" }
  761. // TLoginSource defines the struct for migrating table login_source
  762. type TLoginSource struct {
  763. ID int64 `xorm:"pk autoincr"`
  764. CreatedUnix int64
  765. UpdatedUnix int64
  766. }
  767. // TableName will be invoked by XORM to customrize the table name
  768. func (t *TLoginSource) TableName() string { return "login_source" }
  769. // TPull defines the struct for migrating table pull_request
  770. type TPull struct {
  771. ID int64 `xorm:"pk autoincr"`
  772. MergedUnix int64
  773. }
  774. // TableName will be invoked by XORM to customrize the table name
  775. func (t *TPull) TableName() string { return "pull_request" }
  776. // TRelease defines the struct for migrating table release
  777. type TRelease struct {
  778. ID int64 `xorm:"pk autoincr"`
  779. CreatedUnix int64
  780. }
  781. // TableName will be invoked by XORM to customrize the table name
  782. func (t *TRelease) TableName() string { return "release" }
  783. // TRepo defines the struct for migrating table repository
  784. type TRepo struct {
  785. ID int64 `xorm:"pk autoincr"`
  786. CreatedUnix int64
  787. UpdatedUnix int64
  788. }
  789. // TableName will be invoked by XORM to customrize the table name
  790. func (t *TRepo) TableName() string { return "repository" }
  791. // TMirror defines the struct for migrating table mirror
  792. type TMirror struct {
  793. ID int64 `xorm:"pk autoincr"`
  794. UpdatedUnix int64
  795. NextUpdateUnix int64
  796. }
  797. // TableName will be invoked by XORM to customrize the table name
  798. func (t *TMirror) TableName() string { return "mirror" }
  799. // TPublicKey defines the struct for migrating table public_key
  800. type TPublicKey struct {
  801. ID int64 `xorm:"pk autoincr"`
  802. CreatedUnix int64
  803. UpdatedUnix int64
  804. }
  805. // TableName will be invoked by XORM to customrize the table name
  806. func (t *TPublicKey) TableName() string { return "public_key" }
  807. // TDeployKey defines the struct for migrating table deploy_key
  808. type TDeployKey struct {
  809. ID int64 `xorm:"pk autoincr"`
  810. CreatedUnix int64
  811. UpdatedUnix int64
  812. }
  813. // TableName will be invoked by XORM to customrize the table name
  814. func (t *TDeployKey) TableName() string { return "deploy_key" }
  815. // TAccessToken defines the struct for migrating table access_token
  816. type TAccessToken struct {
  817. ID int64 `xorm:"pk autoincr"`
  818. CreatedUnix int64
  819. UpdatedUnix int64
  820. }
  821. // TableName will be invoked by XORM to customrize the table name
  822. func (t *TAccessToken) TableName() string { return "access_token" }
  823. // TUser defines the struct for migrating table user
  824. type TUser struct {
  825. ID int64 `xorm:"pk autoincr"`
  826. CreatedUnix int64
  827. UpdatedUnix int64
  828. }
  829. // TableName will be invoked by XORM to customrize the table name
  830. func (t *TUser) TableName() string { return "user" }
  831. // TWebhook defines the struct for migrating table webhook
  832. type TWebhook struct {
  833. ID int64 `xorm:"pk autoincr"`
  834. CreatedUnix int64
  835. UpdatedUnix int64
  836. }
  837. // TableName will be invoked by XORM to customrize the table name
  838. func (t *TWebhook) TableName() string { return "webhook" }
  839. func convertDateToUnix(x *xorm.Engine) (err error) {
  840. log.Info("This migration could take up to minutes, please be patient.")
  841. type Bean struct {
  842. ID int64 `xorm:"pk autoincr"`
  843. Created time.Time
  844. Updated time.Time
  845. Merged time.Time
  846. Deadline time.Time
  847. ClosedDate time.Time
  848. NextUpdate time.Time
  849. }
  850. var tables = []struct {
  851. name string
  852. cols []string
  853. bean interface{}
  854. }{
  855. {"action", []string{"created"}, new(TAction)},
  856. {"notice", []string{"created"}, new(TNotice)},
  857. {"comment", []string{"created"}, new(TComment)},
  858. {"issue", []string{"deadline", "created", "updated"}, new(TIssue)},
  859. {"milestone", []string{"deadline", "closed_date"}, new(TMilestone)},
  860. {"attachment", []string{"created"}, new(TAttachment)},
  861. {"login_source", []string{"created", "updated"}, new(TLoginSource)},
  862. {"pull_request", []string{"merged"}, new(TPull)},
  863. {"release", []string{"created"}, new(TRelease)},
  864. {"repository", []string{"created", "updated"}, new(TRepo)},
  865. {"mirror", []string{"updated", "next_update"}, new(TMirror)},
  866. {"public_key", []string{"created", "updated"}, new(TPublicKey)},
  867. {"deploy_key", []string{"created", "updated"}, new(TDeployKey)},
  868. {"access_token", []string{"created", "updated"}, new(TAccessToken)},
  869. {"user", []string{"created", "updated"}, new(TUser)},
  870. {"webhook", []string{"created", "updated"}, new(TWebhook)},
  871. }
  872. for _, table := range tables {
  873. log.Info("Converting table: %s", table.name)
  874. if err = x.Sync2(table.bean); err != nil {
  875. return fmt.Errorf("Sync [table: %s]: %v", table.name, err)
  876. }
  877. offset := 0
  878. for {
  879. beans := make([]*Bean, 0, 100)
  880. if err = x.Table(table.name).Asc("id").Limit(100, offset).Find(&beans); err != nil {
  881. return fmt.Errorf("select beans [table: %s, offset: %d]: %v", table.name, offset, err)
  882. }
  883. log.Trace("Table [%s]: offset: %d, beans: %d", table.name, offset, len(beans))
  884. if len(beans) == 0 {
  885. break
  886. }
  887. offset += 100
  888. baseSQL := "UPDATE `" + table.name + "` SET "
  889. for _, bean := range beans {
  890. valSQLs := make([]string, 0, len(table.cols))
  891. for _, col := range table.cols {
  892. fieldSQL := ""
  893. fieldSQL += col + "_unix = "
  894. switch col {
  895. case "deadline":
  896. if bean.Deadline.IsZero() {
  897. continue
  898. }
  899. fieldSQL += com.ToStr(bean.Deadline.Unix())
  900. case "created":
  901. fieldSQL += com.ToStr(bean.Created.Unix())
  902. case "updated":
  903. fieldSQL += com.ToStr(bean.Updated.Unix())
  904. case "closed_date":
  905. fieldSQL += com.ToStr(bean.ClosedDate.Unix())
  906. case "merged":
  907. fieldSQL += com.ToStr(bean.Merged.Unix())
  908. case "next_update":
  909. fieldSQL += com.ToStr(bean.NextUpdate.Unix())
  910. }
  911. valSQLs = append(valSQLs, fieldSQL)
  912. }
  913. if len(valSQLs) == 0 {
  914. continue
  915. }
  916. if _, err = x.Exec(baseSQL + strings.Join(valSQLs, ",") + " WHERE id = " + com.ToStr(bean.ID)); err != nil {
  917. return fmt.Errorf("update bean [table: %s, id: %d]: %v", table.name, bean.ID, err)
  918. }
  919. }
  920. }
  921. }
  922. return nil
  923. }