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.

models.go 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2018 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 models
  6. import (
  7. "context"
  8. "database/sql"
  9. "errors"
  10. "fmt"
  11. "code.gitea.io/gitea/modules/setting"
  12. // Needed for the MySQL driver
  13. _ "github.com/go-sql-driver/mysql"
  14. "xorm.io/xorm"
  15. "xorm.io/xorm/names"
  16. "xorm.io/xorm/schemas"
  17. // Needed for the Postgresql driver
  18. _ "github.com/lib/pq"
  19. // Needed for the MSSQL driver
  20. _ "github.com/denisenkom/go-mssqldb"
  21. )
  22. // Engine represents a xorm engine or session.
  23. type Engine interface {
  24. Table(tableNameOrBean interface{}) *xorm.Session
  25. Count(...interface{}) (int64, error)
  26. Decr(column string, arg ...interface{}) *xorm.Session
  27. Delete(interface{}) (int64, error)
  28. Exec(...interface{}) (sql.Result, error)
  29. Find(interface{}, ...interface{}) error
  30. Get(interface{}) (bool, error)
  31. ID(interface{}) *xorm.Session
  32. In(string, ...interface{}) *xorm.Session
  33. Incr(column string, arg ...interface{}) *xorm.Session
  34. Insert(...interface{}) (int64, error)
  35. InsertOne(interface{}) (int64, error)
  36. Iterate(interface{}, xorm.IterFunc) error
  37. Join(joinOperator string, tablename interface{}, condition string, args ...interface{}) *xorm.Session
  38. SQL(interface{}, ...interface{}) *xorm.Session
  39. Where(interface{}, ...interface{}) *xorm.Session
  40. Asc(colNames ...string) *xorm.Session
  41. Limit(limit int, start ...int) *xorm.Session
  42. SumInt(bean interface{}, columnName string) (res int64, err error)
  43. }
  44. const (
  45. // When queries are broken down in parts because of the number
  46. // of parameters, attempt to break by this amount
  47. maxQueryParameters = 300
  48. )
  49. var (
  50. x *xorm.Engine
  51. tables []interface{}
  52. // HasEngine specifies if we have a xorm.Engine
  53. HasEngine bool
  54. )
  55. func init() {
  56. tables = append(tables,
  57. new(User),
  58. new(PublicKey),
  59. new(AccessToken),
  60. new(Repository),
  61. new(DeployKey),
  62. new(Collaboration),
  63. new(Access),
  64. new(Upload),
  65. new(Watch),
  66. new(Star),
  67. new(Follow),
  68. new(Action),
  69. new(Issue),
  70. new(PullRequest),
  71. new(Comment),
  72. new(Attachment),
  73. new(Label),
  74. new(IssueLabel),
  75. new(Milestone),
  76. new(Mirror),
  77. new(Release),
  78. new(LoginSource),
  79. new(Webhook),
  80. new(HookTask),
  81. new(Team),
  82. new(OrgUser),
  83. new(TeamUser),
  84. new(TeamRepo),
  85. new(Notice),
  86. new(EmailAddress),
  87. new(Notification),
  88. new(IssueUser),
  89. new(LFSMetaObject),
  90. new(TwoFactor),
  91. new(GPGKey),
  92. new(GPGKeyImport),
  93. new(RepoUnit),
  94. new(RepoRedirect),
  95. new(ExternalLoginUser),
  96. new(ProtectedBranch),
  97. new(UserOpenID),
  98. new(IssueWatch),
  99. new(CommitStatus),
  100. new(Stopwatch),
  101. new(TrackedTime),
  102. new(DeletedBranch),
  103. new(RepoIndexerStatus),
  104. new(IssueDependency),
  105. new(LFSLock),
  106. new(Reaction),
  107. new(IssueAssignees),
  108. new(U2FRegistration),
  109. new(TeamUnit),
  110. new(Review),
  111. new(OAuth2Application),
  112. new(OAuth2AuthorizationCode),
  113. new(OAuth2Grant),
  114. new(Task),
  115. new(LanguageStat),
  116. new(EmailHash),
  117. )
  118. gonicNames := []string{"SSL", "UID"}
  119. for _, name := range gonicNames {
  120. names.LintGonicMapper[name] = true
  121. }
  122. }
  123. func getEngine() (*xorm.Engine, error) {
  124. connStr, err := setting.DBConnStr()
  125. if err != nil {
  126. return nil, err
  127. }
  128. engine, err := xorm.NewEngine(setting.Database.Type, connStr)
  129. if err != nil {
  130. return nil, err
  131. }
  132. if setting.Database.Type == "mysql" {
  133. engine.Dialect().SetParams(map[string]string{"rowFormat": "DYNAMIC"})
  134. }
  135. engine.SetSchema(setting.Database.Schema)
  136. return engine, nil
  137. }
  138. // NewTestEngine sets a new test xorm.Engine
  139. func NewTestEngine(x *xorm.Engine) (err error) {
  140. x, err = getEngine()
  141. if err != nil {
  142. return fmt.Errorf("Connect to database: %v", err)
  143. }
  144. x.SetMapper(names.GonicMapper{})
  145. x.SetLogger(NewXORMLogger(!setting.ProdMode))
  146. x.ShowSQL(!setting.ProdMode)
  147. return x.StoreEngine("InnoDB").Sync2(tables...)
  148. }
  149. // SetEngine sets the xorm.Engine
  150. func SetEngine() (err error) {
  151. x, err = getEngine()
  152. if err != nil {
  153. return fmt.Errorf("Failed to connect to database: %v", err)
  154. }
  155. x.SetMapper(names.GonicMapper{})
  156. // WARNING: for serv command, MUST remove the output to os.stdout,
  157. // so use log file to instead print to stdout.
  158. x.SetLogger(NewXORMLogger(setting.Database.LogSQL))
  159. x.ShowSQL(setting.Database.LogSQL)
  160. x.SetMaxOpenConns(setting.Database.MaxOpenConns)
  161. x.SetMaxIdleConns(setting.Database.MaxIdleConns)
  162. x.SetConnMaxLifetime(setting.Database.ConnMaxLifetime)
  163. return nil
  164. }
  165. // NewEngine initializes a new xorm.Engine
  166. // This function must never call .Sync2() if the provided migration function fails.
  167. // When called from the "doctor" command, the migration function is a version check
  168. // that prevents the doctor from fixing anything in the database if the migration level
  169. // is different from the expected value.
  170. func NewEngine(ctx context.Context, migrateFunc func(*xorm.Engine) error) (err error) {
  171. if err = SetEngine(); err != nil {
  172. return err
  173. }
  174. x.SetDefaultContext(ctx)
  175. if err = x.Ping(); err != nil {
  176. return err
  177. }
  178. if err = migrateFunc(x); err != nil {
  179. return fmt.Errorf("migrate: %v", err)
  180. }
  181. if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
  182. return fmt.Errorf("sync database struct error: %v", err)
  183. }
  184. return nil
  185. }
  186. // Statistic contains the database statistics
  187. type Statistic struct {
  188. Counter struct {
  189. User, Org, PublicKey,
  190. Repo, Watch, Star, Action, Access,
  191. Issue, Comment, Oauth, Follow,
  192. Mirror, Release, LoginSource, Webhook,
  193. Milestone, Label, HookTask,
  194. Team, UpdateTask, Attachment int64
  195. }
  196. }
  197. // GetStatistic returns the database statistics
  198. func GetStatistic() (stats Statistic) {
  199. stats.Counter.User = CountUsers()
  200. stats.Counter.Org = CountOrganizations()
  201. stats.Counter.PublicKey, _ = x.Count(new(PublicKey))
  202. stats.Counter.Repo = CountRepositories(true)
  203. stats.Counter.Watch, _ = x.Count(new(Watch))
  204. stats.Counter.Star, _ = x.Count(new(Star))
  205. stats.Counter.Action, _ = x.Count(new(Action))
  206. stats.Counter.Access, _ = x.Count(new(Access))
  207. stats.Counter.Issue, _ = x.Count(new(Issue))
  208. stats.Counter.Comment, _ = x.Count(new(Comment))
  209. stats.Counter.Oauth = 0
  210. stats.Counter.Follow, _ = x.Count(new(Follow))
  211. stats.Counter.Mirror, _ = x.Count(new(Mirror))
  212. stats.Counter.Release, _ = x.Count(new(Release))
  213. stats.Counter.LoginSource = CountLoginSources()
  214. stats.Counter.Webhook, _ = x.Count(new(Webhook))
  215. stats.Counter.Milestone, _ = x.Count(new(Milestone))
  216. stats.Counter.Label, _ = x.Count(new(Label))
  217. stats.Counter.HookTask, _ = x.Count(new(HookTask))
  218. stats.Counter.Team, _ = x.Count(new(Team))
  219. stats.Counter.Attachment, _ = x.Count(new(Attachment))
  220. return
  221. }
  222. // Ping tests if database is alive
  223. func Ping() error {
  224. if x != nil {
  225. return x.Ping()
  226. }
  227. return errors.New("database not configured")
  228. }
  229. // DumpDatabase dumps all data from database according the special database SQL syntax to file system.
  230. func DumpDatabase(filePath string, dbType string) error {
  231. var tbs []*schemas.Table
  232. for _, t := range tables {
  233. t, err := x.TableInfo(t)
  234. if err != nil {
  235. return err
  236. }
  237. tbs = append(tbs, t)
  238. }
  239. if len(dbType) > 0 {
  240. return x.DumpTablesToFile(tbs, filePath, schemas.DBType(dbType))
  241. }
  242. return x.DumpTablesToFile(tbs, filePath)
  243. }
  244. // MaxBatchInsertSize returns the table's max batch insert size
  245. func MaxBatchInsertSize(bean interface{}) int {
  246. t, err := x.TableInfo(bean)
  247. if err != nil {
  248. return 50
  249. }
  250. return 999 / len(t.ColumnsSeq())
  251. }
  252. // Count returns records number according struct's fields as database query conditions
  253. func Count(bean interface{}) (int64, error) {
  254. return x.Count(bean)
  255. }
  256. // IsTableNotEmpty returns true if table has at least one record
  257. func IsTableNotEmpty(tableName string) (bool, error) {
  258. return x.Table(tableName).Exist()
  259. }
  260. // DeleteAllRecords will delete all the records of this table
  261. func DeleteAllRecords(tableName string) error {
  262. _, err := x.Exec(fmt.Sprintf("DELETE FROM %s", tableName))
  263. return err
  264. }
  265. // GetMaxID will return max id of the table
  266. func GetMaxID(beanOrTableName interface{}) (maxID int64, err error) {
  267. _, err = x.Select("MAX(id)").Table(beanOrTableName).Get(&maxID)
  268. return
  269. }
  270. // FindByMaxID filled results as the condition from database
  271. func FindByMaxID(maxID int64, limit int, results interface{}) error {
  272. return x.Where("id <= ?", maxID).
  273. OrderBy("id DESC").
  274. Limit(limit).
  275. Find(results)
  276. }