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.

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