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.

369 lines
9.6 KiB

10 years ago
10 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>
4 years ago
10 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>
6 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>
5 years ago
10 years ago
10 years ago
8 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
  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(Project),
  121. new(ProjectBoard),
  122. new(ProjectIssue),
  123. )
  124. gonicNames := []string{"SSL", "UID"}
  125. for _, name := range gonicNames {
  126. names.LintGonicMapper[name] = true
  127. }
  128. }
  129. func getEngine() (*xorm.Engine, error) {
  130. connStr, err := setting.DBConnStr()
  131. if err != nil {
  132. return nil, err
  133. }
  134. engine, err := xorm.NewEngine(setting.Database.Type, connStr)
  135. if err != nil {
  136. return nil, err
  137. }
  138. if setting.Database.Type == "mysql" {
  139. engine.Dialect().SetParams(map[string]string{"rowFormat": "DYNAMIC"})
  140. } else if setting.Database.Type == "mssql" {
  141. engine.Dialect().SetParams(map[string]string{"DEFAULT_VARCHAR": "nvarchar"})
  142. }
  143. engine.SetSchema(setting.Database.Schema)
  144. if setting.Database.UsePostgreSQL && len(setting.Database.Schema) > 0 {
  145. // Add the schema to the search path
  146. if _, err := engine.Exec(`SELECT set_config(
  147. 'search_path',
  148. ? || ',' || current_setting('search_path'),
  149. false)`,
  150. setting.Database.Schema); err != nil {
  151. return nil, err
  152. }
  153. }
  154. return engine, nil
  155. }
  156. // NewTestEngine sets a new test xorm.Engine
  157. func NewTestEngine() (err error) {
  158. x, err = getEngine()
  159. if err != nil {
  160. return fmt.Errorf("Connect to database: %v", err)
  161. }
  162. x.SetMapper(names.GonicMapper{})
  163. x.SetLogger(NewXORMLogger(!setting.ProdMode))
  164. x.ShowSQL(!setting.ProdMode)
  165. return x.StoreEngine("InnoDB").Sync2(tables...)
  166. }
  167. // SetEngine sets the xorm.Engine
  168. func SetEngine() (err error) {
  169. x, err = getEngine()
  170. if err != nil {
  171. return fmt.Errorf("Failed to connect to database: %v", err)
  172. }
  173. x.SetMapper(names.GonicMapper{})
  174. // WARNING: for serv command, MUST remove the output to os.stdout,
  175. // so use log file to instead print to stdout.
  176. x.SetLogger(NewXORMLogger(setting.Database.LogSQL))
  177. x.ShowSQL(setting.Database.LogSQL)
  178. x.SetMaxOpenConns(setting.Database.MaxOpenConns)
  179. x.SetMaxIdleConns(setting.Database.MaxIdleConns)
  180. x.SetConnMaxLifetime(setting.Database.ConnMaxLifetime)
  181. return nil
  182. }
  183. // NewEngine initializes a new xorm.Engine
  184. // This function must never call .Sync2() if the provided migration function fails.
  185. // When called from the "doctor" command, the migration function is a version check
  186. // that prevents the doctor from fixing anything in the database if the migration level
  187. // is different from the expected value.
  188. func NewEngine(ctx context.Context, migrateFunc func(*xorm.Engine) error) (err error) {
  189. if err = SetEngine(); err != nil {
  190. return err
  191. }
  192. x.SetDefaultContext(ctx)
  193. if err = x.Ping(); err != nil {
  194. return err
  195. }
  196. if err = migrateFunc(x); err != nil {
  197. return fmt.Errorf("migrate: %v", err)
  198. }
  199. if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
  200. return fmt.Errorf("sync database struct error: %v", err)
  201. }
  202. return nil
  203. }
  204. // NamesToBean return a list of beans or an error
  205. func NamesToBean(names ...string) ([]interface{}, error) {
  206. beans := []interface{}{}
  207. if len(names) == 0 {
  208. beans = append(beans, tables...)
  209. return beans, nil
  210. }
  211. // Need to map provided names to beans...
  212. beanMap := make(map[string]interface{})
  213. for _, bean := range tables {
  214. beanMap[strings.ToLower(reflect.Indirect(reflect.ValueOf(bean)).Type().Name())] = bean
  215. beanMap[strings.ToLower(x.TableName(bean))] = bean
  216. beanMap[strings.ToLower(x.TableName(bean, true))] = bean
  217. }
  218. gotBean := make(map[interface{}]bool)
  219. for _, name := range names {
  220. bean, ok := beanMap[strings.ToLower(strings.TrimSpace(name))]
  221. if !ok {
  222. return nil, fmt.Errorf("No table found that matches: %s", name)
  223. }
  224. if !gotBean[bean] {
  225. beans = append(beans, bean)
  226. gotBean[bean] = true
  227. }
  228. }
  229. return beans, nil
  230. }
  231. // Statistic contains the database statistics
  232. type Statistic struct {
  233. Counter struct {
  234. User, Org, PublicKey,
  235. Repo, Watch, Star, Action, Access,
  236. Issue, Comment, Oauth, Follow,
  237. Mirror, Release, LoginSource, Webhook,
  238. Milestone, Label, HookTask,
  239. Team, UpdateTask, Attachment int64
  240. }
  241. }
  242. // GetStatistic returns the database statistics
  243. func GetStatistic() (stats Statistic) {
  244. stats.Counter.User = CountUsers()
  245. stats.Counter.Org = CountOrganizations()
  246. stats.Counter.PublicKey, _ = x.Count(new(PublicKey))
  247. stats.Counter.Repo = CountRepositories(true)
  248. stats.Counter.Watch, _ = x.Count(new(Watch))
  249. stats.Counter.Star, _ = x.Count(new(Star))
  250. stats.Counter.Action, _ = x.Count(new(Action))
  251. stats.Counter.Access, _ = x.Count(new(Access))
  252. stats.Counter.Issue, _ = x.Count(new(Issue))
  253. stats.Counter.Comment, _ = x.Count(new(Comment))
  254. stats.Counter.Oauth = 0
  255. stats.Counter.Follow, _ = x.Count(new(Follow))
  256. stats.Counter.Mirror, _ = x.Count(new(Mirror))
  257. stats.Counter.Release, _ = x.Count(new(Release))
  258. stats.Counter.LoginSource = CountLoginSources()
  259. stats.Counter.Webhook, _ = x.Count(new(Webhook))
  260. stats.Counter.Milestone, _ = x.Count(new(Milestone))
  261. stats.Counter.Label, _ = x.Count(new(Label))
  262. stats.Counter.HookTask, _ = x.Count(new(HookTask))
  263. stats.Counter.Team, _ = x.Count(new(Team))
  264. stats.Counter.Attachment, _ = x.Count(new(Attachment))
  265. return
  266. }
  267. // Ping tests if database is alive
  268. func Ping() error {
  269. if x != nil {
  270. return x.Ping()
  271. }
  272. return errors.New("database not configured")
  273. }
  274. // DumpDatabase dumps all data from database according the special database SQL syntax to file system.
  275. func DumpDatabase(filePath string, dbType string) error {
  276. var tbs []*schemas.Table
  277. for _, t := range tables {
  278. t, err := x.TableInfo(t)
  279. if err != nil {
  280. return err
  281. }
  282. tbs = append(tbs, t)
  283. }
  284. type Version struct {
  285. ID int64 `xorm:"pk autoincr"`
  286. Version int64
  287. }
  288. t, err := x.TableInfo(Version{})
  289. if err != nil {
  290. return err
  291. }
  292. tbs = append(tbs, t)
  293. if len(dbType) > 0 {
  294. return x.DumpTablesToFile(tbs, filePath, schemas.DBType(dbType))
  295. }
  296. return x.DumpTablesToFile(tbs, filePath)
  297. }
  298. // MaxBatchInsertSize returns the table's max batch insert size
  299. func MaxBatchInsertSize(bean interface{}) int {
  300. t, err := x.TableInfo(bean)
  301. if err != nil {
  302. return 50
  303. }
  304. return 999 / len(t.ColumnsSeq())
  305. }
  306. // Count returns records number according struct's fields as database query conditions
  307. func Count(bean interface{}) (int64, error) {
  308. return x.Count(bean)
  309. }
  310. // IsTableNotEmpty returns true if table has at least one record
  311. func IsTableNotEmpty(tableName string) (bool, error) {
  312. return x.Table(tableName).Exist()
  313. }
  314. // DeleteAllRecords will delete all the records of this table
  315. func DeleteAllRecords(tableName string) error {
  316. _, err := x.Exec(fmt.Sprintf("DELETE FROM %s", tableName))
  317. return err
  318. }
  319. // GetMaxID will return max id of the table
  320. func GetMaxID(beanOrTableName interface{}) (maxID int64, err error) {
  321. _, err = x.Select("MAX(id)").Table(beanOrTableName).Get(&maxID)
  322. return
  323. }
  324. // FindByMaxID filled results as the condition from database
  325. func FindByMaxID(maxID int64, limit int, results interface{}) error {
  326. return x.Where("id <= ?", maxID).
  327. OrderBy("id DESC").
  328. Limit(limit).
  329. Find(results)
  330. }