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 7.3KB

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