Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

models.go 7.6KB

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