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

models.go 11 kB

11 years ago
11 years ago
API add/generalize pagination (#9452) * paginate results * fixed deadlock * prevented breaking change * updated swagger * go fmt * fixed find topic * go mod tidy * go mod vendor with go1.13.5 * fixed repo find topics * fixed unit test * added Limit method to Engine struct; use engine variable when provided; fixed gitignore * use ItemsPerPage for default pagesize; fix GetWatchers, getOrgUsersByOrgID and GetStargazers; fix GetAllCommits headers; reverted some changed behaviors * set Page value on Home route * improved memory allocations * fixed response headers * removed logfiles * fixed import order * import order * improved swagger * added function to get models.ListOptions from context * removed pagesize diff on unit test * fixed imports * removed unnecessary struct field * fixed go fmt * scoped PR * code improvements * code improvements * go mod tidy * fixed import order * fixed commit statuses session * fixed files headers * fixed headers; added pagination for notifications * go mod tidy * go fmt * removed Private from user search options; added setting.UI.IssuePagingNum as default valeu on repo's issues list * Apply suggestions from code review Co-Authored-By: 6543 <6543@obermui.de> Co-Authored-By: zeripath <art27@cantab.net> * fixed build error * CI.restart() * fixed merge conflicts resolve * fixed conflicts resolve * improved FindTrackedTimesOptions.ToOptions() method * added backwards compatibility on ListReleases request; fixed issue tracked time ToSession * fixed build error; fixed swagger template * fixed swagger template * fixed ListReleases backwards compatibility * added page to user search route Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net>
5 years ago
11 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
7 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
3 years ago
3 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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. xStatistic *xorm.Engine
  53. tablesStatistic []interface{}
  54. // HasEngine specifies if we have a xorm.Engine
  55. HasEngine bool
  56. )
  57. func init() {
  58. tables = append(tables,
  59. new(User),
  60. new(PublicKey),
  61. new(AccessToken),
  62. new(Repository),
  63. new(DeployKey),
  64. new(Collaboration),
  65. new(Access),
  66. new(Upload),
  67. new(Watch),
  68. new(Star),
  69. new(Follow),
  70. new(Action),
  71. new(Issue),
  72. new(PullRequest),
  73. new(Comment),
  74. new(Attachment),
  75. new(Label),
  76. new(IssueLabel),
  77. new(Milestone),
  78. new(Mirror),
  79. new(Release),
  80. new(LoginSource),
  81. new(Webhook),
  82. new(HookTask),
  83. new(Team),
  84. new(OrgUser),
  85. new(TeamUser),
  86. new(TeamRepo),
  87. new(Notice),
  88. new(EmailAddress),
  89. new(Notification),
  90. new(IssueUser),
  91. new(LFSMetaObject),
  92. new(TwoFactor),
  93. new(GPGKey),
  94. new(GPGKeyImport),
  95. new(RepoUnit),
  96. new(RepoRedirect),
  97. new(ExternalLoginUser),
  98. new(ProtectedBranch),
  99. new(UserOpenID),
  100. new(IssueWatch),
  101. new(CommitStatus),
  102. new(Stopwatch),
  103. new(TrackedTime),
  104. new(DeletedBranch),
  105. new(RepoIndexerStatus),
  106. new(IssueDependency),
  107. new(LFSLock),
  108. new(Reaction),
  109. new(IssueAssignees),
  110. new(U2FRegistration),
  111. new(TeamUnit),
  112. new(Review),
  113. new(OAuth2Application),
  114. new(OAuth2AuthorizationCode),
  115. new(OAuth2Grant),
  116. new(Task),
  117. new(LanguageStat),
  118. new(EmailHash),
  119. new(Dataset),
  120. new(DatasetStar),
  121. new(Cloudbrain),
  122. new(Image),
  123. new(ImageStar),
  124. new(ImageTopic),
  125. new(ImageTopicRelation),
  126. new(FileChunk),
  127. new(ModelFileChunk),
  128. new(BlockChain),
  129. new(RecommendOrg),
  130. new(AiModelManage),
  131. new(OfficialTag),
  132. new(OfficialTagRepos),
  133. new(WechatBindLog),
  134. new(OrgStatistic),
  135. new(SearchRecord),
  136. new(TaskConfig),
  137. new(TaskAccomplishLog),
  138. new(RewardOperateRecord),
  139. new(LimitConfig),
  140. new(RewardPeriodicTask),
  141. new(PointAccountLog),
  142. new(PointAccount),
  143. new(RewardAdminLog),
  144. new(AiModelConvert),
  145. new(ResourceQueue),
  146. new(ResourceSpecification),
  147. new(ResourceScene),
  148. new(ResourceSceneSpec),
  149. new(AdminOperateLog),
  150. new(CloudbrainSpec),
  151. new(CloudbrainTemp),
  152. new(DatasetReference),
  153. new(ScheduleRecord),
  154. new(BadgeCategory),
  155. new(Badge),
  156. new(BadgeUser),
  157. new(BadgeUserLog),
  158. new(TechConvergeBaseInfo),
  159. new(RepoConvergeInfo),
  160. )
  161. tablesStatistic = append(tablesStatistic,
  162. new(RepoStatistic),
  163. new(SummaryStatistic),
  164. new(UserBusinessAnalysis),
  165. new(UserBusinessAnalysisAll),
  166. new(UserBusinessAnalysisCurrentYear),
  167. new(UserBusinessAnalysisLast30Day),
  168. new(UserBusinessAnalysisLastMonth),
  169. new(UserBusinessAnalysisCurrentMonth),
  170. new(UserBusinessAnalysisCurrentWeek),
  171. new(UserBusinessAnalysisYesterday),
  172. new(UserBusinessAnalysisLastWeek),
  173. new(UserLoginLog),
  174. new(UserMetrics),
  175. new(UserAnalysisPara),
  176. new(Invitation),
  177. new(CloudbrainDurationStatistic),
  178. new(UserSummaryCurrentYear),
  179. )
  180. gonicNames := []string{"SSL", "UID"}
  181. for _, name := range gonicNames {
  182. names.LintGonicMapper[name] = true
  183. }
  184. }
  185. func getEngine(database *setting.DBInfo) (*xorm.Engine, error) {
  186. connStr, err := setting.DBConnStr(database)
  187. if err != nil {
  188. return nil, err
  189. }
  190. engine, err := xorm.NewEngine(setting.Database.Type, connStr)
  191. if err != nil {
  192. return nil, err
  193. }
  194. if setting.Database.Type == "mysql" {
  195. engine.Dialect().SetParams(map[string]string{"rowFormat": "DYNAMIC"})
  196. }
  197. engine.SetSchema(setting.Database.Schema)
  198. return engine, nil
  199. }
  200. // NewTestEngine sets a new test xorm.Engine
  201. func NewTestEngine(x *xorm.Engine) (err error) {
  202. x, err = getEngine(setting.Database)
  203. if err != nil {
  204. return fmt.Errorf("Connect to database: %v", err)
  205. }
  206. x.SetMapper(names.GonicMapper{})
  207. x.SetLogger(NewXORMLogger(!setting.ProdMode))
  208. x.ShowSQL(!setting.ProdMode)
  209. return x.StoreEngine("InnoDB").Sync2(tables...)
  210. }
  211. // setEngine sets the xorm.Engine
  212. func setEngine(engine *xorm.Engine, table []interface{}, database *setting.DBInfo) (err error) {
  213. engine.SetMapper(names.GonicMapper{})
  214. // WARNING: for serv command, MUST remove the output to os.stdout,
  215. // so use log file to instead print to stdout.
  216. engine.SetLogger(NewXORMLogger(setting.Database.LogSQL))
  217. engine.ShowSQL(setting.Database.LogSQL)
  218. engine.SetMaxOpenConns(setting.Database.MaxOpenConns)
  219. engine.SetMaxIdleConns(setting.Database.MaxIdleConns)
  220. engine.SetConnMaxLifetime(setting.Database.ConnMaxLifetime)
  221. engine.Sync2(table...)
  222. return nil
  223. }
  224. func SetEngine() (err error) {
  225. x, err = getEngine(setting.Database)
  226. if err != nil {
  227. return fmt.Errorf("Failed to connect to database: %v", err)
  228. }
  229. if err = setEngine(x, tables, setting.Database); err != nil {
  230. return err
  231. }
  232. xStatistic, err = getEngine(setting.DatabaseStatistic)
  233. if err != nil {
  234. return fmt.Errorf("Failed to connect to database: %v", err)
  235. }
  236. if err = setEngine(xStatistic, tablesStatistic, setting.DatabaseStatistic); err != nil {
  237. return err
  238. }
  239. return nil
  240. }
  241. func NewEngine(ctx context.Context, migrateFunc func(*xorm.Engine) error) (err error) {
  242. x, err = getEngine(setting.Database)
  243. if err != nil {
  244. return fmt.Errorf("Failed to connect to database: %v", err)
  245. }
  246. if err = newEngine(ctx, migrateFunc, x, tables, setting.Database); err != nil {
  247. return fmt.Errorf("newEngine failed: %v", err)
  248. }
  249. MigrateCustom(x)
  250. xStatistic, err = getEngine(setting.DatabaseStatistic)
  251. if err != nil {
  252. return fmt.Errorf("Failed to connect to database: %v", err)
  253. }
  254. if err = newEngine(ctx, migrateFunc, xStatistic, tablesStatistic, setting.DatabaseStatistic); err != nil {
  255. return fmt.Errorf("newEngine statistic failed: %v", err)
  256. }
  257. MigrateCustomStatic(x, xStatistic)
  258. HasEngine = true
  259. return nil
  260. }
  261. // newEngine initializes a new xorm.Engine
  262. func newEngine(ctx context.Context, migrateFunc func(*xorm.Engine) error, engine *xorm.Engine, table []interface{}, database *setting.DBInfo) (err error) {
  263. if err = setEngine(engine, table, database); err != nil {
  264. return err
  265. }
  266. engine.SetDefaultContext(ctx)
  267. if err = engine.Ping(); err != nil {
  268. return err
  269. }
  270. if err = migrateFunc(engine); err != nil {
  271. return fmt.Errorf("migrate: %v", err)
  272. }
  273. if err = engine.StoreEngine("InnoDB").Sync2(table...); err != nil {
  274. return fmt.Errorf("sync database struct error: %v", err)
  275. }
  276. return nil
  277. }
  278. // Statistic contains the database statistics
  279. type Statistic struct {
  280. Counter struct {
  281. User, Org, PublicKey,
  282. Repo, Watch, Star, Action, Access,
  283. Issue, Comment, Oauth, Follow,
  284. Mirror, Release, LoginSource, Webhook,
  285. Milestone, Label, HookTask,
  286. Team, UpdateTask, Attachment int64
  287. }
  288. }
  289. // GetStatistic returns the database statistics
  290. func GetStatistic() (stats Statistic) {
  291. stats.Counter.User = CountUsers()
  292. stats.Counter.Org = CountOrganizations()
  293. stats.Counter.PublicKey, _ = x.Count(new(PublicKey))
  294. stats.Counter.Repo = CountRepositories(true)
  295. stats.Counter.Watch, _ = x.Count(new(Watch))
  296. stats.Counter.Star, _ = x.Count(new(Star))
  297. stats.Counter.Action, _ = x.Count(new(Action))
  298. stats.Counter.Access, _ = x.Count(new(Access))
  299. stats.Counter.Issue, _ = x.Count(new(Issue))
  300. stats.Counter.Comment, _ = x.Count(new(Comment))
  301. stats.Counter.Oauth = 0
  302. stats.Counter.Follow, _ = x.Count(new(Follow))
  303. stats.Counter.Mirror, _ = x.Count(new(Mirror))
  304. stats.Counter.Release, _ = x.Count(new(Release))
  305. stats.Counter.LoginSource = CountLoginSources()
  306. stats.Counter.Webhook, _ = x.Count(new(Webhook))
  307. stats.Counter.Milestone, _ = x.Count(new(Milestone))
  308. stats.Counter.Label, _ = x.Count(new(Label))
  309. stats.Counter.HookTask, _ = x.Count(new(HookTask))
  310. stats.Counter.Team, _ = x.Count(new(Team))
  311. stats.Counter.Attachment, _ = x.Count(new(Attachment))
  312. return
  313. }
  314. // Ping tests if database is alive
  315. func Ping() error {
  316. if x != nil {
  317. return x.Ping()
  318. }
  319. if xStatistic != nil {
  320. return xStatistic.Ping()
  321. }
  322. return errors.New("database not configured")
  323. }
  324. // DumpDatabase dumps all data from database according the special database SQL syntax to file system.
  325. func DumpDatabase(filePath string, dbType string) error {
  326. var tbs []*schemas.Table
  327. for _, t := range tables {
  328. t, err := x.TableInfo(t)
  329. if err != nil {
  330. return err
  331. }
  332. tbs = append(tbs, t)
  333. }
  334. if len(dbType) > 0 {
  335. return x.DumpTablesToFile(tbs, filePath, schemas.DBType(dbType))
  336. }
  337. return x.DumpTablesToFile(tbs, filePath)
  338. }
  339. // MaxBatchInsertSize returns the table's max batch insert size
  340. func MaxBatchInsertSize(bean interface{}) int {
  341. t, err := x.TableInfo(bean)
  342. if err != nil {
  343. return 50
  344. }
  345. return 999 / len(t.ColumnsSeq())
  346. }
  347. // Count returns records number according struct's fields as database query conditions
  348. func Count(bean interface{}) (int64, error) {
  349. return x.Count(bean)
  350. }
  351. // IsTableNotEmpty returns true if table has at least one record
  352. func IsTableNotEmpty(tableName string) (bool, error) {
  353. return x.Table(tableName).Exist()
  354. }
  355. // DeleteAllRecords will delete all the records of this table
  356. func DeleteAllRecords(tableName string) error {
  357. _, err := x.Exec(fmt.Sprintf("DELETE FROM %s", tableName))
  358. return err
  359. }
  360. // GetMaxID will return max id of the table
  361. func GetMaxID(beanOrTableName interface{}) (maxID int64, err error) {
  362. _, err = x.Select("MAX(id)").Table(beanOrTableName).Get(&maxID)
  363. return
  364. }
  365. // FindByMaxID filled results as the condition from database
  366. func FindByMaxID(maxID int64, limit int, results interface{}) error {
  367. return x.Where("id <= ?", maxID).
  368. OrderBy("id DESC").
  369. Limit(limit).
  370. Find(results)
  371. }