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.

error.go 33KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099
  1. // Copyright 2015 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import "fmt"
  6. // ErrNameReserved represents a "reserved name" error.
  7. type ErrNameReserved struct {
  8. Name string
  9. }
  10. // IsErrNameReserved checks if an error is a ErrNameReserved.
  11. func IsErrNameReserved(err error) bool {
  12. _, ok := err.(ErrNameReserved)
  13. return ok
  14. }
  15. func (err ErrNameReserved) Error() string {
  16. return fmt.Sprintf("name is reserved [name: %s]", err.Name)
  17. }
  18. // ErrNamePatternNotAllowed represents a "pattern not allowed" error.
  19. type ErrNamePatternNotAllowed struct {
  20. Pattern string
  21. }
  22. // IsErrNamePatternNotAllowed checks if an error is an
  23. // ErrNamePatternNotAllowed.
  24. func IsErrNamePatternNotAllowed(err error) bool {
  25. _, ok := err.(ErrNamePatternNotAllowed)
  26. return ok
  27. }
  28. func (err ErrNamePatternNotAllowed) Error() string {
  29. return fmt.Sprintf("name pattern is not allowed [pattern: %s]", err.Pattern)
  30. }
  31. // ErrSSHDisabled represents an "SSH disabled" error.
  32. type ErrSSHDisabled struct {
  33. }
  34. // IsErrSSHDisabled checks if an error is a ErrSSHDisabled.
  35. func IsErrSSHDisabled(err error) bool {
  36. _, ok := err.(ErrSSHDisabled)
  37. return ok
  38. }
  39. func (err ErrSSHDisabled) Error() string {
  40. return "SSH is disabled"
  41. }
  42. // ____ ___
  43. // | | \______ ___________
  44. // | | / ___// __ \_ __ \
  45. // | | /\___ \\ ___/| | \/
  46. // |______//____ >\___ >__|
  47. // \/ \/
  48. // ErrUserAlreadyExist represents a "user already exists" error.
  49. type ErrUserAlreadyExist struct {
  50. Name string
  51. }
  52. // IsErrUserAlreadyExist checks if an error is a ErrUserAlreadyExists.
  53. func IsErrUserAlreadyExist(err error) bool {
  54. _, ok := err.(ErrUserAlreadyExist)
  55. return ok
  56. }
  57. func (err ErrUserAlreadyExist) Error() string {
  58. return fmt.Sprintf("user already exists [name: %s]", err.Name)
  59. }
  60. // ErrUserNotExist represents a "UserNotExist" kind of error.
  61. type ErrUserNotExist struct {
  62. UID int64
  63. Name string
  64. KeyID int64
  65. }
  66. // IsErrUserNotExist checks if an error is a ErrUserNotExist.
  67. func IsErrUserNotExist(err error) bool {
  68. _, ok := err.(ErrUserNotExist)
  69. return ok
  70. }
  71. func (err ErrUserNotExist) Error() string {
  72. return fmt.Sprintf("user does not exist [uid: %d, name: %s, keyid: %d]", err.UID, err.Name, err.KeyID)
  73. }
  74. // ErrEmailAlreadyUsed represents a "EmailAlreadyUsed" kind of error.
  75. type ErrEmailAlreadyUsed struct {
  76. Email string
  77. }
  78. // IsErrEmailAlreadyUsed checks if an error is a ErrEmailAlreadyUsed.
  79. func IsErrEmailAlreadyUsed(err error) bool {
  80. _, ok := err.(ErrEmailAlreadyUsed)
  81. return ok
  82. }
  83. func (err ErrEmailAlreadyUsed) Error() string {
  84. return fmt.Sprintf("e-mail has been used [email: %s]", err.Email)
  85. }
  86. // ErrOpenIDAlreadyUsed represents a "OpenIDAlreadyUsed" kind of error.
  87. type ErrOpenIDAlreadyUsed struct {
  88. OpenID string
  89. }
  90. // IsErrOpenIDAlreadyUsed checks if an error is a ErrOpenIDAlreadyUsed.
  91. func IsErrOpenIDAlreadyUsed(err error) bool {
  92. _, ok := err.(ErrOpenIDAlreadyUsed)
  93. return ok
  94. }
  95. func (err ErrOpenIDAlreadyUsed) Error() string {
  96. return fmt.Sprintf("OpenID has been used [oid: %s]", err.OpenID)
  97. }
  98. // ErrUserOwnRepos represents a "UserOwnRepos" kind of error.
  99. type ErrUserOwnRepos struct {
  100. UID int64
  101. }
  102. // IsErrUserOwnRepos checks if an error is a ErrUserOwnRepos.
  103. func IsErrUserOwnRepos(err error) bool {
  104. _, ok := err.(ErrUserOwnRepos)
  105. return ok
  106. }
  107. func (err ErrUserOwnRepos) Error() string {
  108. return fmt.Sprintf("user still has ownership of repositories [uid: %d]", err.UID)
  109. }
  110. // ErrUserHasOrgs represents a "UserHasOrgs" kind of error.
  111. type ErrUserHasOrgs struct {
  112. UID int64
  113. }
  114. // IsErrUserHasOrgs checks if an error is a ErrUserHasOrgs.
  115. func IsErrUserHasOrgs(err error) bool {
  116. _, ok := err.(ErrUserHasOrgs)
  117. return ok
  118. }
  119. func (err ErrUserHasOrgs) Error() string {
  120. return fmt.Sprintf("user still has membership of organizations [uid: %d]", err.UID)
  121. }
  122. // ErrUserNotAllowedCreateOrg represents a "UserNotAllowedCreateOrg" kind of error.
  123. type ErrUserNotAllowedCreateOrg struct {
  124. }
  125. // IsErrUserNotAllowedCreateOrg checks if an error is an ErrUserNotAllowedCreateOrg.
  126. func IsErrUserNotAllowedCreateOrg(err error) bool {
  127. _, ok := err.(ErrUserNotAllowedCreateOrg)
  128. return ok
  129. }
  130. func (err ErrUserNotAllowedCreateOrg) Error() string {
  131. return fmt.Sprintf("user is not allowed to create organizations")
  132. }
  133. // ErrReachLimitOfRepo represents a "ReachLimitOfRepo" kind of error.
  134. type ErrReachLimitOfRepo struct {
  135. Limit int
  136. }
  137. // IsErrReachLimitOfRepo checks if an error is a ErrReachLimitOfRepo.
  138. func IsErrReachLimitOfRepo(err error) bool {
  139. _, ok := err.(ErrReachLimitOfRepo)
  140. return ok
  141. }
  142. func (err ErrReachLimitOfRepo) Error() string {
  143. return fmt.Sprintf("user has reached maximum limit of repositories [limit: %d]", err.Limit)
  144. }
  145. // __ __.__ __ .__
  146. // / \ / \__| | _|__|
  147. // \ \/\/ / | |/ / |
  148. // \ /| | <| |
  149. // \__/\ / |__|__|_ \__|
  150. // \/ \/
  151. // ErrWikiAlreadyExist represents a "WikiAlreadyExist" kind of error.
  152. type ErrWikiAlreadyExist struct {
  153. Title string
  154. }
  155. // IsErrWikiAlreadyExist checks if an error is a ErrWikiAlreadyExist.
  156. func IsErrWikiAlreadyExist(err error) bool {
  157. _, ok := err.(ErrWikiAlreadyExist)
  158. return ok
  159. }
  160. func (err ErrWikiAlreadyExist) Error() string {
  161. return fmt.Sprintf("wiki page already exists [title: %s]", err.Title)
  162. }
  163. // __________ ___. .__ .__ ____ __.
  164. // \______ \__ _\_ |__ | | |__| ____ | |/ _|____ ___.__.
  165. // | ___/ | \ __ \| | | |/ ___\ | <_/ __ < | |
  166. // | | | | / \_\ \ |_| \ \___ | | \ ___/\___ |
  167. // |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
  168. // \/ \/ \/ \/\/
  169. // ErrKeyUnableVerify represents a "KeyUnableVerify" kind of error.
  170. type ErrKeyUnableVerify struct {
  171. Result string
  172. }
  173. // IsErrKeyUnableVerify checks if an error is a ErrKeyUnableVerify.
  174. func IsErrKeyUnableVerify(err error) bool {
  175. _, ok := err.(ErrKeyUnableVerify)
  176. return ok
  177. }
  178. func (err ErrKeyUnableVerify) Error() string {
  179. return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
  180. }
  181. // ErrKeyNotExist represents a "KeyNotExist" kind of error.
  182. type ErrKeyNotExist struct {
  183. ID int64
  184. }
  185. // IsErrKeyNotExist checks if an error is a ErrKeyNotExist.
  186. func IsErrKeyNotExist(err error) bool {
  187. _, ok := err.(ErrKeyNotExist)
  188. return ok
  189. }
  190. func (err ErrKeyNotExist) Error() string {
  191. return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
  192. }
  193. // ErrKeyAlreadyExist represents a "KeyAlreadyExist" kind of error.
  194. type ErrKeyAlreadyExist struct {
  195. OwnerID int64
  196. Fingerprint string
  197. Content string
  198. }
  199. // IsErrKeyAlreadyExist checks if an error is a ErrKeyAlreadyExist.
  200. func IsErrKeyAlreadyExist(err error) bool {
  201. _, ok := err.(ErrKeyAlreadyExist)
  202. return ok
  203. }
  204. func (err ErrKeyAlreadyExist) Error() string {
  205. return fmt.Sprintf("public key already exists [owner_id: %d, finter_print: %s, content: %s]",
  206. err.OwnerID, err.Fingerprint, err.Content)
  207. }
  208. // ErrKeyNameAlreadyUsed represents a "KeyNameAlreadyUsed" kind of error.
  209. type ErrKeyNameAlreadyUsed struct {
  210. OwnerID int64
  211. Name string
  212. }
  213. // IsErrKeyNameAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
  214. func IsErrKeyNameAlreadyUsed(err error) bool {
  215. _, ok := err.(ErrKeyNameAlreadyUsed)
  216. return ok
  217. }
  218. func (err ErrKeyNameAlreadyUsed) Error() string {
  219. return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
  220. }
  221. // ErrGPGNoEmailFound represents a "ErrGPGNoEmailFound" kind of error.
  222. type ErrGPGNoEmailFound struct {
  223. FailedEmails []string
  224. }
  225. // IsErrGPGNoEmailFound checks if an error is a ErrGPGNoEmailFound.
  226. func IsErrGPGNoEmailFound(err error) bool {
  227. _, ok := err.(ErrGPGNoEmailFound)
  228. return ok
  229. }
  230. func (err ErrGPGNoEmailFound) Error() string {
  231. return fmt.Sprintf("none of the emails attached to the GPG key could be found: %v", err.FailedEmails)
  232. }
  233. // ErrGPGKeyParsing represents a "ErrGPGKeyParsing" kind of error.
  234. type ErrGPGKeyParsing struct {
  235. ParseError error
  236. }
  237. // IsErrGPGKeyParsing checks if an error is a ErrGPGKeyParsing.
  238. func IsErrGPGKeyParsing(err error) bool {
  239. _, ok := err.(ErrGPGKeyParsing)
  240. return ok
  241. }
  242. func (err ErrGPGKeyParsing) Error() string {
  243. return fmt.Sprintf("failed to parse gpg key %s", err.ParseError.Error())
  244. }
  245. // ErrGPGKeyNotExist represents a "GPGKeyNotExist" kind of error.
  246. type ErrGPGKeyNotExist struct {
  247. ID int64
  248. }
  249. // IsErrGPGKeyNotExist checks if an error is a ErrGPGKeyNotExist.
  250. func IsErrGPGKeyNotExist(err error) bool {
  251. _, ok := err.(ErrGPGKeyNotExist)
  252. return ok
  253. }
  254. func (err ErrGPGKeyNotExist) Error() string {
  255. return fmt.Sprintf("public gpg key does not exist [id: %d]", err.ID)
  256. }
  257. // ErrGPGKeyIDAlreadyUsed represents a "GPGKeyIDAlreadyUsed" kind of error.
  258. type ErrGPGKeyIDAlreadyUsed struct {
  259. KeyID string
  260. }
  261. // IsErrGPGKeyIDAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
  262. func IsErrGPGKeyIDAlreadyUsed(err error) bool {
  263. _, ok := err.(ErrGPGKeyIDAlreadyUsed)
  264. return ok
  265. }
  266. func (err ErrGPGKeyIDAlreadyUsed) Error() string {
  267. return fmt.Sprintf("public key already exists [key_id: %s]", err.KeyID)
  268. }
  269. // ErrGPGKeyAccessDenied represents a "GPGKeyAccessDenied" kind of Error.
  270. type ErrGPGKeyAccessDenied struct {
  271. UserID int64
  272. KeyID int64
  273. }
  274. // IsErrGPGKeyAccessDenied checks if an error is a ErrGPGKeyAccessDenied.
  275. func IsErrGPGKeyAccessDenied(err error) bool {
  276. _, ok := err.(ErrGPGKeyAccessDenied)
  277. return ok
  278. }
  279. // Error pretty-prints an error of type ErrGPGKeyAccessDenied.
  280. func (err ErrGPGKeyAccessDenied) Error() string {
  281. return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d]",
  282. err.UserID, err.KeyID)
  283. }
  284. // ErrKeyAccessDenied represents a "KeyAccessDenied" kind of error.
  285. type ErrKeyAccessDenied struct {
  286. UserID int64
  287. KeyID int64
  288. Note string
  289. }
  290. // IsErrKeyAccessDenied checks if an error is a ErrKeyAccessDenied.
  291. func IsErrKeyAccessDenied(err error) bool {
  292. _, ok := err.(ErrKeyAccessDenied)
  293. return ok
  294. }
  295. func (err ErrKeyAccessDenied) Error() string {
  296. return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d, note: %s]",
  297. err.UserID, err.KeyID, err.Note)
  298. }
  299. // ErrDeployKeyNotExist represents a "DeployKeyNotExist" kind of error.
  300. type ErrDeployKeyNotExist struct {
  301. ID int64
  302. KeyID int64
  303. RepoID int64
  304. }
  305. // IsErrDeployKeyNotExist checks if an error is a ErrDeployKeyNotExist.
  306. func IsErrDeployKeyNotExist(err error) bool {
  307. _, ok := err.(ErrDeployKeyNotExist)
  308. return ok
  309. }
  310. func (err ErrDeployKeyNotExist) Error() string {
  311. return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID)
  312. }
  313. // ErrDeployKeyAlreadyExist represents a "DeployKeyAlreadyExist" kind of error.
  314. type ErrDeployKeyAlreadyExist struct {
  315. KeyID int64
  316. RepoID int64
  317. }
  318. // IsErrDeployKeyAlreadyExist checks if an error is a ErrDeployKeyAlreadyExist.
  319. func IsErrDeployKeyAlreadyExist(err error) bool {
  320. _, ok := err.(ErrDeployKeyAlreadyExist)
  321. return ok
  322. }
  323. func (err ErrDeployKeyAlreadyExist) Error() string {
  324. return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
  325. }
  326. // ErrDeployKeyNameAlreadyUsed represents a "DeployKeyNameAlreadyUsed" kind of error.
  327. type ErrDeployKeyNameAlreadyUsed struct {
  328. RepoID int64
  329. Name string
  330. }
  331. // IsErrDeployKeyNameAlreadyUsed checks if an error is a ErrDeployKeyNameAlreadyUsed.
  332. func IsErrDeployKeyNameAlreadyUsed(err error) bool {
  333. _, ok := err.(ErrDeployKeyNameAlreadyUsed)
  334. return ok
  335. }
  336. func (err ErrDeployKeyNameAlreadyUsed) Error() string {
  337. return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name)
  338. }
  339. // _____ ___________ __
  340. // / _ \ ____ ____ ____ ______ _____\__ ___/___ | | __ ____ ____
  341. // / /_\ \_/ ___\/ ___\/ __ \ / ___// ___/ | | / _ \| |/ // __ \ / \
  342. // / | \ \__\ \__\ ___/ \___ \ \___ \ | |( <_> ) <\ ___/| | \
  343. // \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
  344. // \/ \/ \/ \/ \/ \/ \/ \/ \/
  345. // ErrAccessTokenNotExist represents a "AccessTokenNotExist" kind of error.
  346. type ErrAccessTokenNotExist struct {
  347. SHA string
  348. }
  349. // IsErrAccessTokenNotExist checks if an error is a ErrAccessTokenNotExist.
  350. func IsErrAccessTokenNotExist(err error) bool {
  351. _, ok := err.(ErrAccessTokenNotExist)
  352. return ok
  353. }
  354. func (err ErrAccessTokenNotExist) Error() string {
  355. return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
  356. }
  357. // ErrAccessTokenEmpty represents a "AccessTokenEmpty" kind of error.
  358. type ErrAccessTokenEmpty struct {
  359. }
  360. // IsErrAccessTokenEmpty checks if an error is a ErrAccessTokenEmpty.
  361. func IsErrAccessTokenEmpty(err error) bool {
  362. _, ok := err.(ErrAccessTokenEmpty)
  363. return ok
  364. }
  365. func (err ErrAccessTokenEmpty) Error() string {
  366. return fmt.Sprintf("access token is empty")
  367. }
  368. // ________ .__ __ .__
  369. // \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____
  370. // / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \
  371. // / | \ | \/ /_/ > __ \| | \ |/ / / __ \| | | ( <_> ) | \
  372. // \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
  373. // \/ /_____/ \/ \/ \/ \/ \/
  374. // ErrOrgNotExist represents a "OrgNotExist" kind of error.
  375. type ErrOrgNotExist struct {
  376. ID int64
  377. Name string
  378. }
  379. // IsErrOrgNotExist checks if an error is a ErrOrgNotExist.
  380. func IsErrOrgNotExist(err error) bool {
  381. _, ok := err.(ErrOrgNotExist)
  382. return ok
  383. }
  384. func (err ErrOrgNotExist) Error() string {
  385. return fmt.Sprintf("org does not exist [id: %d, name: %s]", err.ID, err.Name)
  386. }
  387. // ErrLastOrgOwner represents a "LastOrgOwner" kind of error.
  388. type ErrLastOrgOwner struct {
  389. UID int64
  390. }
  391. // IsErrLastOrgOwner checks if an error is a ErrLastOrgOwner.
  392. func IsErrLastOrgOwner(err error) bool {
  393. _, ok := err.(ErrLastOrgOwner)
  394. return ok
  395. }
  396. func (err ErrLastOrgOwner) Error() string {
  397. return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID)
  398. }
  399. // __________ .__ __
  400. // \______ \ ____ ______ ____ _____|__|/ |_ ___________ ___.__.
  401. // | _// __ \\____ \ / _ \/ ___/ \ __\/ _ \_ __ < | |
  402. // | | \ ___/| |_> > <_> )___ \| || | ( <_> ) | \/\___ |
  403. // |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
  404. // \/ \/|__| \/ \/
  405. // ErrRepoNotExist represents a "RepoNotExist" kind of error.
  406. type ErrRepoNotExist struct {
  407. ID int64
  408. UID int64
  409. Name string
  410. }
  411. // IsErrRepoNotExist checks if an error is a ErrRepoNotExist.
  412. func IsErrRepoNotExist(err error) bool {
  413. _, ok := err.(ErrRepoNotExist)
  414. return ok
  415. }
  416. func (err ErrRepoNotExist) Error() string {
  417. return fmt.Sprintf("repository does not exist [id: %d, uid: %d, name: %s]", err.ID, err.UID, err.Name)
  418. }
  419. // ErrRepoAlreadyExist represents a "RepoAlreadyExist" kind of error.
  420. type ErrRepoAlreadyExist struct {
  421. Uname string
  422. Name string
  423. }
  424. // IsErrRepoAlreadyExist checks if an error is a ErrRepoAlreadyExist.
  425. func IsErrRepoAlreadyExist(err error) bool {
  426. _, ok := err.(ErrRepoAlreadyExist)
  427. return ok
  428. }
  429. func (err ErrRepoAlreadyExist) Error() string {
  430. return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
  431. }
  432. // ErrRepoRedirectNotExist represents a "RepoRedirectNotExist" kind of error.
  433. type ErrRepoRedirectNotExist struct {
  434. OwnerID int64
  435. RepoName string
  436. }
  437. // IsErrRepoRedirectNotExist check if an error is an ErrRepoRedirectNotExist
  438. func IsErrRepoRedirectNotExist(err error) bool {
  439. _, ok := err.(ErrRepoRedirectNotExist)
  440. return ok
  441. }
  442. func (err ErrRepoRedirectNotExist) Error() string {
  443. return fmt.Sprintf("repository redirect does not exist [uid: %d, name: %s]", err.OwnerID, err.RepoName)
  444. }
  445. // ErrInvalidCloneAddr represents a "InvalidCloneAddr" kind of error.
  446. type ErrInvalidCloneAddr struct {
  447. IsURLError bool
  448. IsInvalidPath bool
  449. IsPermissionDenied bool
  450. }
  451. // IsErrInvalidCloneAddr checks if an error is a ErrInvalidCloneAddr.
  452. func IsErrInvalidCloneAddr(err error) bool {
  453. _, ok := err.(ErrInvalidCloneAddr)
  454. return ok
  455. }
  456. func (err ErrInvalidCloneAddr) Error() string {
  457. return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]",
  458. err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
  459. }
  460. // ErrUpdateTaskNotExist represents a "UpdateTaskNotExist" kind of error.
  461. type ErrUpdateTaskNotExist struct {
  462. UUID string
  463. }
  464. // IsErrUpdateTaskNotExist checks if an error is a ErrUpdateTaskNotExist.
  465. func IsErrUpdateTaskNotExist(err error) bool {
  466. _, ok := err.(ErrUpdateTaskNotExist)
  467. return ok
  468. }
  469. func (err ErrUpdateTaskNotExist) Error() string {
  470. return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
  471. }
  472. // ErrReleaseAlreadyExist represents a "ReleaseAlreadyExist" kind of error.
  473. type ErrReleaseAlreadyExist struct {
  474. TagName string
  475. }
  476. // IsErrReleaseAlreadyExist checks if an error is a ErrReleaseAlreadyExist.
  477. func IsErrReleaseAlreadyExist(err error) bool {
  478. _, ok := err.(ErrReleaseAlreadyExist)
  479. return ok
  480. }
  481. func (err ErrReleaseAlreadyExist) Error() string {
  482. return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName)
  483. }
  484. // ErrReleaseNotExist represents a "ReleaseNotExist" kind of error.
  485. type ErrReleaseNotExist struct {
  486. ID int64
  487. TagName string
  488. }
  489. // IsErrReleaseNotExist checks if an error is a ErrReleaseNotExist.
  490. func IsErrReleaseNotExist(err error) bool {
  491. _, ok := err.(ErrReleaseNotExist)
  492. return ok
  493. }
  494. func (err ErrReleaseNotExist) Error() string {
  495. return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName)
  496. }
  497. // ErrInvalidTagName represents a "InvalidTagName" kind of error.
  498. type ErrInvalidTagName struct {
  499. TagName string
  500. }
  501. // IsErrInvalidTagName checks if an error is a ErrInvalidTagName.
  502. func IsErrInvalidTagName(err error) bool {
  503. _, ok := err.(ErrInvalidTagName)
  504. return ok
  505. }
  506. func (err ErrInvalidTagName) Error() string {
  507. return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName)
  508. }
  509. // ErrRepoFileAlreadyExist represents a "RepoFileAlreadyExist" kind of error.
  510. type ErrRepoFileAlreadyExist struct {
  511. FileName string
  512. }
  513. // IsErrRepoFileAlreadyExist checks if an error is a ErrRepoFileAlreadyExist.
  514. func IsErrRepoFileAlreadyExist(err error) bool {
  515. _, ok := err.(ErrRepoFileAlreadyExist)
  516. return ok
  517. }
  518. func (err ErrRepoFileAlreadyExist) Error() string {
  519. return fmt.Sprintf("repository file already exists [file_name: %s]", err.FileName)
  520. }
  521. // __________ .__
  522. // \______ \____________ ____ ____ | |__
  523. // | | _/\_ __ \__ \ / \_/ ___\| | \
  524. // | | \ | | \// __ \| | \ \___| Y \
  525. // |______ / |__| (____ /___| /\___ >___| /
  526. // \/ \/ \/ \/ \/
  527. // ErrBranchNotExist represents a "BranchNotExist" kind of error.
  528. type ErrBranchNotExist struct {
  529. Name string
  530. }
  531. // IsErrBranchNotExist checks if an error is a ErrBranchNotExist.
  532. func IsErrBranchNotExist(err error) bool {
  533. _, ok := err.(ErrBranchNotExist)
  534. return ok
  535. }
  536. func (err ErrBranchNotExist) Error() string {
  537. return fmt.Sprintf("branch does not exist [name: %s]", err.Name)
  538. }
  539. // ErrBranchAlreadyExists represents an error that branch with such name already exists
  540. type ErrBranchAlreadyExists struct {
  541. BranchName string
  542. }
  543. // IsErrBranchAlreadyExists checks if an error is an ErrBranchAlreadyExists.
  544. func IsErrBranchAlreadyExists(err error) bool {
  545. _, ok := err.(ErrBranchAlreadyExists)
  546. return ok
  547. }
  548. func (err ErrBranchAlreadyExists) Error() string {
  549. return fmt.Sprintf("branch already exists [name: %s]", err.BranchName)
  550. }
  551. // ErrBranchNameConflict represents an error that branch name conflicts with other branch
  552. type ErrBranchNameConflict struct {
  553. BranchName string
  554. }
  555. // IsErrBranchNameConflict checks if an error is an ErrBranchNameConflict.
  556. func IsErrBranchNameConflict(err error) bool {
  557. _, ok := err.(ErrBranchNameConflict)
  558. return ok
  559. }
  560. func (err ErrBranchNameConflict) Error() string {
  561. return fmt.Sprintf("branch conflicts with existing branch [name: %s]", err.BranchName)
  562. }
  563. // ErrTagAlreadyExists represents an error that tag with such name already exists
  564. type ErrTagAlreadyExists struct {
  565. TagName string
  566. }
  567. // IsErrTagAlreadyExists checks if an error is an ErrTagAlreadyExists.
  568. func IsErrTagAlreadyExists(err error) bool {
  569. _, ok := err.(ErrTagAlreadyExists)
  570. return ok
  571. }
  572. func (err ErrTagAlreadyExists) Error() string {
  573. return fmt.Sprintf("tag already exists [name: %s]", err.TagName)
  574. }
  575. // __ __ ___. .__ __
  576. // / \ / \ ____\_ |__ | |__ ____ ____ | | __
  577. // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ /
  578. // \ /\ ___/| \_\ \ Y ( <_> | <_> ) <
  579. // \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
  580. // \/ \/ \/ \/ \/
  581. // ErrWebhookNotExist represents a "WebhookNotExist" kind of error.
  582. type ErrWebhookNotExist struct {
  583. ID int64
  584. }
  585. // IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
  586. func IsErrWebhookNotExist(err error) bool {
  587. _, ok := err.(ErrWebhookNotExist)
  588. return ok
  589. }
  590. func (err ErrWebhookNotExist) Error() string {
  591. return fmt.Sprintf("webhook does not exist [id: %d]", err.ID)
  592. }
  593. // .___
  594. // | | ______ ________ __ ____
  595. // | |/ ___// ___/ | \_/ __ \
  596. // | |\___ \ \___ \| | /\ ___/
  597. // |___/____ >____ >____/ \___ >
  598. // \/ \/ \/
  599. // ErrIssueNotExist represents a "IssueNotExist" kind of error.
  600. type ErrIssueNotExist struct {
  601. ID int64
  602. RepoID int64
  603. Index int64
  604. }
  605. // IsErrIssueNotExist checks if an error is a ErrIssueNotExist.
  606. func IsErrIssueNotExist(err error) bool {
  607. _, ok := err.(ErrIssueNotExist)
  608. return ok
  609. }
  610. func (err ErrIssueNotExist) Error() string {
  611. return fmt.Sprintf("issue does not exist [id: %d, repo_id: %d, index: %d]", err.ID, err.RepoID, err.Index)
  612. }
  613. // __________ .__ .__ __________ __
  614. // \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_
  615. // | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\
  616. // | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | |
  617. // |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
  618. // \/ \/ |__| \/ \/
  619. // ErrPullRequestNotExist represents a "PullRequestNotExist" kind of error.
  620. type ErrPullRequestNotExist struct {
  621. ID int64
  622. IssueID int64
  623. HeadRepoID int64
  624. BaseRepoID int64
  625. HeadBranch string
  626. BaseBranch string
  627. }
  628. // IsErrPullRequestNotExist checks if an error is a ErrPullRequestNotExist.
  629. func IsErrPullRequestNotExist(err error) bool {
  630. _, ok := err.(ErrPullRequestNotExist)
  631. return ok
  632. }
  633. func (err ErrPullRequestNotExist) Error() string {
  634. return fmt.Sprintf("pull request does not exist [id: %d, issue_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]",
  635. err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
  636. }
  637. // ErrPullRequestAlreadyExists represents a "PullRequestAlreadyExists"-error
  638. type ErrPullRequestAlreadyExists struct {
  639. ID int64
  640. IssueID int64
  641. HeadRepoID int64
  642. BaseRepoID int64
  643. HeadBranch string
  644. BaseBranch string
  645. }
  646. // IsErrPullRequestAlreadyExists checks if an error is a ErrPullRequestAlreadyExists.
  647. func IsErrPullRequestAlreadyExists(err error) bool {
  648. _, ok := err.(ErrPullRequestAlreadyExists)
  649. return ok
  650. }
  651. // Error does pretty-printing :D
  652. func (err ErrPullRequestAlreadyExists) Error() string {
  653. return fmt.Sprintf("pull request already exists for these targets [id: %d, issue_id: %d, head_repo_id: %d, base_repo_id: %d, head_branch: %s, base_branch: %s]",
  654. err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
  655. }
  656. // _________ __
  657. // \_ ___ \ ____ _____ _____ ____ _____/ |_
  658. // / \ \/ / _ \ / \ / \_/ __ \ / \ __\
  659. // \ \___( <_> ) Y Y \ Y Y \ ___/| | \ |
  660. // \______ /\____/|__|_| /__|_| /\___ >___| /__|
  661. // \/ \/ \/ \/ \/
  662. // ErrCommentNotExist represents a "CommentNotExist" kind of error.
  663. type ErrCommentNotExist struct {
  664. ID int64
  665. IssueID int64
  666. }
  667. // IsErrCommentNotExist checks if an error is a ErrCommentNotExist.
  668. func IsErrCommentNotExist(err error) bool {
  669. _, ok := err.(ErrCommentNotExist)
  670. return ok
  671. }
  672. func (err ErrCommentNotExist) Error() string {
  673. return fmt.Sprintf("comment does not exist [id: %d, issue_id: %d]", err.ID, err.IssueID)
  674. }
  675. // _________ __ __ .__
  676. // / _____// |_ ____ ________ _ _______ _/ |_ ____ | |__
  677. // \_____ \\ __\/ _ \\____ \ \/ \/ /\__ \\ __\/ ___\| | \
  678. // / \| | ( <_> ) |_> > / / __ \| | \ \___| Y \
  679. // /_______ /|__| \____/| __/ \/\_/ (____ /__| \___ >___| /
  680. // \/ |__| \/ \/ \/
  681. // ErrStopwatchNotExist represents a "Stopwatch Not Exist" kind of error.
  682. type ErrStopwatchNotExist struct {
  683. ID int64
  684. }
  685. // IsErrStopwatchNotExist checks if an error is a ErrStopwatchNotExist.
  686. func IsErrStopwatchNotExist(err error) bool {
  687. _, ok := err.(ErrStopwatchNotExist)
  688. return ok
  689. }
  690. func (err ErrStopwatchNotExist) Error() string {
  691. return fmt.Sprintf("stopwatch does not exist [id: %d]", err.ID)
  692. }
  693. // ___________ __ .______________.__
  694. // \__ ___/___________ ____ | | __ ____ __| _/\__ ___/|__| _____ ____
  695. // | | \_ __ \__ \ _/ ___\| |/ // __ \ / __ | | | | |/ \_/ __ \
  696. // | | | | \// __ \\ \___| <\ ___// /_/ | | | | | Y Y \ ___/
  697. // |____| |__| (____ /\___ >__|_ \\___ >____ | |____| |__|__|_| /\___ >
  698. // \/ \/ \/ \/ \/ \/ \/
  699. // ErrTrackedTimeNotExist represents a "TrackedTime Not Exist" kind of error.
  700. type ErrTrackedTimeNotExist struct {
  701. ID int64
  702. }
  703. // IsErrTrackedTimeNotExist checks if an error is a ErrTrackedTimeNotExist.
  704. func IsErrTrackedTimeNotExist(err error) bool {
  705. _, ok := err.(ErrTrackedTimeNotExist)
  706. return ok
  707. }
  708. func (err ErrTrackedTimeNotExist) Error() string {
  709. return fmt.Sprintf("tracked time does not exist [id: %d]", err.ID)
  710. }
  711. // .____ ___. .__
  712. // | | _____ \_ |__ ____ | |
  713. // | | \__ \ | __ \_/ __ \| |
  714. // | |___ / __ \| \_\ \ ___/| |__
  715. // |_______ (____ /___ /\___ >____/
  716. // \/ \/ \/ \/
  717. // ErrLabelNotExist represents a "LabelNotExist" kind of error.
  718. type ErrLabelNotExist struct {
  719. LabelID int64
  720. RepoID int64
  721. }
  722. // IsErrLabelNotExist checks if an error is a ErrLabelNotExist.
  723. func IsErrLabelNotExist(err error) bool {
  724. _, ok := err.(ErrLabelNotExist)
  725. return ok
  726. }
  727. func (err ErrLabelNotExist) Error() string {
  728. return fmt.Sprintf("label does not exist [label_id: %d, repo_id: %d]", err.LabelID, err.RepoID)
  729. }
  730. // _____ .__.__ __
  731. // / \ |__| | ____ _______/ |_ ____ ____ ____
  732. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  733. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  734. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  735. // \/ \/ \/ \/ \/
  736. // ErrMilestoneNotExist represents a "MilestoneNotExist" kind of error.
  737. type ErrMilestoneNotExist struct {
  738. ID int64
  739. RepoID int64
  740. }
  741. // IsErrMilestoneNotExist checks if an error is a ErrMilestoneNotExist.
  742. func IsErrMilestoneNotExist(err error) bool {
  743. _, ok := err.(ErrMilestoneNotExist)
  744. return ok
  745. }
  746. func (err ErrMilestoneNotExist) Error() string {
  747. return fmt.Sprintf("milestone does not exist [id: %d, repo_id: %d]", err.ID, err.RepoID)
  748. }
  749. // _____ __ __ .__ __
  750. // / _ \_/ |__/ |______ ____ | |__ _____ ____ _____/ |_
  751. // / /_\ \ __\ __\__ \ _/ ___\| | \ / \_/ __ \ / \ __\
  752. // / | \ | | | / __ \\ \___| Y \ Y Y \ ___/| | \ |
  753. // \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
  754. // \/ \/ \/ \/ \/ \/ \/
  755. // ErrAttachmentNotExist represents a "AttachmentNotExist" kind of error.
  756. type ErrAttachmentNotExist struct {
  757. ID int64
  758. UUID string
  759. }
  760. // IsErrAttachmentNotExist checks if an error is a ErrAttachmentNotExist.
  761. func IsErrAttachmentNotExist(err error) bool {
  762. _, ok := err.(ErrAttachmentNotExist)
  763. return ok
  764. }
  765. func (err ErrAttachmentNotExist) Error() string {
  766. return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
  767. }
  768. // .____ .__ _________
  769. // | | ____ ____ |__| ____ / _____/ ____ __ _________ ____ ____
  770. // | | / _ \ / ___\| |/ \ \_____ \ / _ \| | \_ __ \_/ ___\/ __ \
  771. // | |__( <_> ) /_/ > | | \ / ( <_> ) | /| | \/\ \__\ ___/
  772. // |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
  773. // \/ /_____/ \/ \/ \/ \/
  774. // ErrLoginSourceNotExist represents a "LoginSourceNotExist" kind of error.
  775. type ErrLoginSourceNotExist struct {
  776. ID int64
  777. }
  778. // IsErrLoginSourceNotExist checks if an error is a ErrLoginSourceNotExist.
  779. func IsErrLoginSourceNotExist(err error) bool {
  780. _, ok := err.(ErrLoginSourceNotExist)
  781. return ok
  782. }
  783. func (err ErrLoginSourceNotExist) Error() string {
  784. return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
  785. }
  786. // ErrLoginSourceAlreadyExist represents a "LoginSourceAlreadyExist" kind of error.
  787. type ErrLoginSourceAlreadyExist struct {
  788. Name string
  789. }
  790. // IsErrLoginSourceAlreadyExist checks if an error is a ErrLoginSourceAlreadyExist.
  791. func IsErrLoginSourceAlreadyExist(err error) bool {
  792. _, ok := err.(ErrLoginSourceAlreadyExist)
  793. return ok
  794. }
  795. func (err ErrLoginSourceAlreadyExist) Error() string {
  796. return fmt.Sprintf("login source already exists [name: %s]", err.Name)
  797. }
  798. // ErrLoginSourceInUse represents a "LoginSourceInUse" kind of error.
  799. type ErrLoginSourceInUse struct {
  800. ID int64
  801. }
  802. // IsErrLoginSourceInUse checks if an error is a ErrLoginSourceInUse.
  803. func IsErrLoginSourceInUse(err error) bool {
  804. _, ok := err.(ErrLoginSourceInUse)
  805. return ok
  806. }
  807. func (err ErrLoginSourceInUse) Error() string {
  808. return fmt.Sprintf("login source is still used by some users [id: %d]", err.ID)
  809. }
  810. // ___________
  811. // \__ ___/___ _____ _____
  812. // | |_/ __ \\__ \ / \
  813. // | |\ ___/ / __ \| Y Y \
  814. // |____| \___ >____ /__|_| /
  815. // \/ \/ \/
  816. // ErrTeamAlreadyExist represents a "TeamAlreadyExist" kind of error.
  817. type ErrTeamAlreadyExist struct {
  818. OrgID int64
  819. Name string
  820. }
  821. // IsErrTeamAlreadyExist checks if an error is a ErrTeamAlreadyExist.
  822. func IsErrTeamAlreadyExist(err error) bool {
  823. _, ok := err.(ErrTeamAlreadyExist)
  824. return ok
  825. }
  826. func (err ErrTeamAlreadyExist) Error() string {
  827. return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name)
  828. }
  829. //
  830. // Two-factor authentication
  831. //
  832. // ErrTwoFactorNotEnrolled indicates that a user is not enrolled in two-factor authentication.
  833. type ErrTwoFactorNotEnrolled struct {
  834. UID int64
  835. }
  836. // IsErrTwoFactorNotEnrolled checks if an error is a ErrTwoFactorNotEnrolled.
  837. func IsErrTwoFactorNotEnrolled(err error) bool {
  838. _, ok := err.(ErrTwoFactorNotEnrolled)
  839. return ok
  840. }
  841. func (err ErrTwoFactorNotEnrolled) Error() string {
  842. return fmt.Sprintf("user not enrolled in 2FA [uid: %d]", err.UID)
  843. }
  844. // ____ ___ .__ .___
  845. // | | \______ | | _________ __| _/
  846. // | | /\____ \| | / _ \__ \ / __ |
  847. // | | / | |_> > |_( <_> ) __ \_/ /_/ |
  848. // |______/ | __/|____/\____(____ /\____ |
  849. // |__| \/ \/
  850. //
  851. // ErrUploadNotExist represents a "UploadNotExist" kind of error.
  852. type ErrUploadNotExist struct {
  853. ID int64
  854. UUID string
  855. }
  856. // IsErrUploadNotExist checks if an error is a ErrUploadNotExist.
  857. func IsErrUploadNotExist(err error) bool {
  858. _, ok := err.(ErrAttachmentNotExist)
  859. return ok
  860. }
  861. func (err ErrUploadNotExist) Error() string {
  862. return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
  863. }
  864. // ___________ __ .__ .____ .__ ____ ___
  865. // \_ _____/__ ____/ |_ ___________ ____ _____ | | | | ____ ____ |__| ____ | | \______ ___________
  866. // | __)_\ \/ /\ __\/ __ \_ __ \/ \\__ \ | | | | / _ \ / ___\| |/ \ | | / ___// __ \_ __ \
  867. // | \> < | | \ ___/| | \/ | \/ __ \| |__ | |__( <_> ) /_/ > | | \ | | /\___ \\ ___/| | \/
  868. // /_______ /__/\_ \ |__| \___ >__| |___| (____ /____/ |_______ \____/\___ /|__|___| / |______//____ >\___ >__|
  869. // \/ \/ \/ \/ \/ \/ /_____/ \/ \/ \/
  870. // ErrExternalLoginUserAlreadyExist represents a "ExternalLoginUserAlreadyExist" kind of error.
  871. type ErrExternalLoginUserAlreadyExist struct {
  872. ExternalID string
  873. UserID int64
  874. LoginSourceID int64
  875. }
  876. // IsErrExternalLoginUserAlreadyExist checks if an error is a ExternalLoginUserAlreadyExist.
  877. func IsErrExternalLoginUserAlreadyExist(err error) bool {
  878. _, ok := err.(ErrExternalLoginUserAlreadyExist)
  879. return ok
  880. }
  881. func (err ErrExternalLoginUserAlreadyExist) Error() string {
  882. return fmt.Sprintf("external login user already exists [externalID: %s, userID: %d, loginSourceID: %d]", err.ExternalID, err.UserID, err.LoginSourceID)
  883. }
  884. // ErrExternalLoginUserNotExist represents a "ExternalLoginUserNotExist" kind of error.
  885. type ErrExternalLoginUserNotExist struct {
  886. UserID int64
  887. LoginSourceID int64
  888. }
  889. // IsErrExternalLoginUserNotExist checks if an error is a ExternalLoginUserNotExist.
  890. func IsErrExternalLoginUserNotExist(err error) bool {
  891. _, ok := err.(ErrExternalLoginUserNotExist)
  892. return ok
  893. }
  894. func (err ErrExternalLoginUserNotExist) Error() string {
  895. return fmt.Sprintf("external login user link does not exists [userID: %d, loginSourceID: %d]", err.UserID, err.LoginSourceID)
  896. }