Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

error.go 36KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190
  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 an 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. // ErrWikiReservedName represents a reserved name error.
  164. type ErrWikiReservedName struct {
  165. Title string
  166. }
  167. // IsErrWikiReservedName checks if an error is an ErrWikiReservedName.
  168. func IsErrWikiReservedName(err error) bool {
  169. _, ok := err.(ErrWikiReservedName)
  170. return ok
  171. }
  172. func (err ErrWikiReservedName) Error() string {
  173. return fmt.Sprintf("wiki title is reserved: %s", err.Title)
  174. }
  175. // __________ ___. .__ .__ ____ __.
  176. // \______ \__ _\_ |__ | | |__| ____ | |/ _|____ ___.__.
  177. // | ___/ | \ __ \| | | |/ ___\ | <_/ __ < | |
  178. // | | | | / \_\ \ |_| \ \___ | | \ ___/\___ |
  179. // |____| |____/|___ /____/__|\___ > |____|__ \___ > ____|
  180. // \/ \/ \/ \/\/
  181. // ErrKeyUnableVerify represents a "KeyUnableVerify" kind of error.
  182. type ErrKeyUnableVerify struct {
  183. Result string
  184. }
  185. // IsErrKeyUnableVerify checks if an error is a ErrKeyUnableVerify.
  186. func IsErrKeyUnableVerify(err error) bool {
  187. _, ok := err.(ErrKeyUnableVerify)
  188. return ok
  189. }
  190. func (err ErrKeyUnableVerify) Error() string {
  191. return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result)
  192. }
  193. // ErrKeyNotExist represents a "KeyNotExist" kind of error.
  194. type ErrKeyNotExist struct {
  195. ID int64
  196. }
  197. // IsErrKeyNotExist checks if an error is a ErrKeyNotExist.
  198. func IsErrKeyNotExist(err error) bool {
  199. _, ok := err.(ErrKeyNotExist)
  200. return ok
  201. }
  202. func (err ErrKeyNotExist) Error() string {
  203. return fmt.Sprintf("public key does not exist [id: %d]", err.ID)
  204. }
  205. // ErrKeyAlreadyExist represents a "KeyAlreadyExist" kind of error.
  206. type ErrKeyAlreadyExist struct {
  207. OwnerID int64
  208. Fingerprint string
  209. Content string
  210. }
  211. // IsErrKeyAlreadyExist checks if an error is a ErrKeyAlreadyExist.
  212. func IsErrKeyAlreadyExist(err error) bool {
  213. _, ok := err.(ErrKeyAlreadyExist)
  214. return ok
  215. }
  216. func (err ErrKeyAlreadyExist) Error() string {
  217. return fmt.Sprintf("public key already exists [owner_id: %d, finter_print: %s, content: %s]",
  218. err.OwnerID, err.Fingerprint, err.Content)
  219. }
  220. // ErrKeyNameAlreadyUsed represents a "KeyNameAlreadyUsed" kind of error.
  221. type ErrKeyNameAlreadyUsed struct {
  222. OwnerID int64
  223. Name string
  224. }
  225. // IsErrKeyNameAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
  226. func IsErrKeyNameAlreadyUsed(err error) bool {
  227. _, ok := err.(ErrKeyNameAlreadyUsed)
  228. return ok
  229. }
  230. func (err ErrKeyNameAlreadyUsed) Error() string {
  231. return fmt.Sprintf("public key already exists [owner_id: %d, name: %s]", err.OwnerID, err.Name)
  232. }
  233. // ErrGPGNoEmailFound represents a "ErrGPGNoEmailFound" kind of error.
  234. type ErrGPGNoEmailFound struct {
  235. FailedEmails []string
  236. }
  237. // IsErrGPGNoEmailFound checks if an error is a ErrGPGNoEmailFound.
  238. func IsErrGPGNoEmailFound(err error) bool {
  239. _, ok := err.(ErrGPGNoEmailFound)
  240. return ok
  241. }
  242. func (err ErrGPGNoEmailFound) Error() string {
  243. return fmt.Sprintf("none of the emails attached to the GPG key could be found: %v", err.FailedEmails)
  244. }
  245. // ErrGPGKeyParsing represents a "ErrGPGKeyParsing" kind of error.
  246. type ErrGPGKeyParsing struct {
  247. ParseError error
  248. }
  249. // IsErrGPGKeyParsing checks if an error is a ErrGPGKeyParsing.
  250. func IsErrGPGKeyParsing(err error) bool {
  251. _, ok := err.(ErrGPGKeyParsing)
  252. return ok
  253. }
  254. func (err ErrGPGKeyParsing) Error() string {
  255. return fmt.Sprintf("failed to parse gpg key %s", err.ParseError.Error())
  256. }
  257. // ErrGPGKeyNotExist represents a "GPGKeyNotExist" kind of error.
  258. type ErrGPGKeyNotExist struct {
  259. ID int64
  260. }
  261. // IsErrGPGKeyNotExist checks if an error is a ErrGPGKeyNotExist.
  262. func IsErrGPGKeyNotExist(err error) bool {
  263. _, ok := err.(ErrGPGKeyNotExist)
  264. return ok
  265. }
  266. func (err ErrGPGKeyNotExist) Error() string {
  267. return fmt.Sprintf("public gpg key does not exist [id: %d]", err.ID)
  268. }
  269. // ErrGPGKeyIDAlreadyUsed represents a "GPGKeyIDAlreadyUsed" kind of error.
  270. type ErrGPGKeyIDAlreadyUsed struct {
  271. KeyID string
  272. }
  273. // IsErrGPGKeyIDAlreadyUsed checks if an error is a ErrKeyNameAlreadyUsed.
  274. func IsErrGPGKeyIDAlreadyUsed(err error) bool {
  275. _, ok := err.(ErrGPGKeyIDAlreadyUsed)
  276. return ok
  277. }
  278. func (err ErrGPGKeyIDAlreadyUsed) Error() string {
  279. return fmt.Sprintf("public key already exists [key_id: %s]", err.KeyID)
  280. }
  281. // ErrGPGKeyAccessDenied represents a "GPGKeyAccessDenied" kind of Error.
  282. type ErrGPGKeyAccessDenied struct {
  283. UserID int64
  284. KeyID int64
  285. }
  286. // IsErrGPGKeyAccessDenied checks if an error is a ErrGPGKeyAccessDenied.
  287. func IsErrGPGKeyAccessDenied(err error) bool {
  288. _, ok := err.(ErrGPGKeyAccessDenied)
  289. return ok
  290. }
  291. // Error pretty-prints an error of type ErrGPGKeyAccessDenied.
  292. func (err ErrGPGKeyAccessDenied) Error() string {
  293. return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d]",
  294. err.UserID, err.KeyID)
  295. }
  296. // ErrKeyAccessDenied represents a "KeyAccessDenied" kind of error.
  297. type ErrKeyAccessDenied struct {
  298. UserID int64
  299. KeyID int64
  300. Note string
  301. }
  302. // IsErrKeyAccessDenied checks if an error is a ErrKeyAccessDenied.
  303. func IsErrKeyAccessDenied(err error) bool {
  304. _, ok := err.(ErrKeyAccessDenied)
  305. return ok
  306. }
  307. func (err ErrKeyAccessDenied) Error() string {
  308. return fmt.Sprintf("user does not have access to the key [user_id: %d, key_id: %d, note: %s]",
  309. err.UserID, err.KeyID, err.Note)
  310. }
  311. // ErrDeployKeyNotExist represents a "DeployKeyNotExist" kind of error.
  312. type ErrDeployKeyNotExist struct {
  313. ID int64
  314. KeyID int64
  315. RepoID int64
  316. }
  317. // IsErrDeployKeyNotExist checks if an error is a ErrDeployKeyNotExist.
  318. func IsErrDeployKeyNotExist(err error) bool {
  319. _, ok := err.(ErrDeployKeyNotExist)
  320. return ok
  321. }
  322. func (err ErrDeployKeyNotExist) Error() string {
  323. return fmt.Sprintf("Deploy key does not exist [id: %d, key_id: %d, repo_id: %d]", err.ID, err.KeyID, err.RepoID)
  324. }
  325. // ErrDeployKeyAlreadyExist represents a "DeployKeyAlreadyExist" kind of error.
  326. type ErrDeployKeyAlreadyExist struct {
  327. KeyID int64
  328. RepoID int64
  329. }
  330. // IsErrDeployKeyAlreadyExist checks if an error is a ErrDeployKeyAlreadyExist.
  331. func IsErrDeployKeyAlreadyExist(err error) bool {
  332. _, ok := err.(ErrDeployKeyAlreadyExist)
  333. return ok
  334. }
  335. func (err ErrDeployKeyAlreadyExist) Error() string {
  336. return fmt.Sprintf("public key already exists [key_id: %d, repo_id: %d]", err.KeyID, err.RepoID)
  337. }
  338. // ErrDeployKeyNameAlreadyUsed represents a "DeployKeyNameAlreadyUsed" kind of error.
  339. type ErrDeployKeyNameAlreadyUsed struct {
  340. RepoID int64
  341. Name string
  342. }
  343. // IsErrDeployKeyNameAlreadyUsed checks if an error is a ErrDeployKeyNameAlreadyUsed.
  344. func IsErrDeployKeyNameAlreadyUsed(err error) bool {
  345. _, ok := err.(ErrDeployKeyNameAlreadyUsed)
  346. return ok
  347. }
  348. func (err ErrDeployKeyNameAlreadyUsed) Error() string {
  349. return fmt.Sprintf("public key already exists [repo_id: %d, name: %s]", err.RepoID, err.Name)
  350. }
  351. // _____ ___________ __
  352. // / _ \ ____ ____ ____ ______ _____\__ ___/___ | | __ ____ ____
  353. // / /_\ \_/ ___\/ ___\/ __ \ / ___// ___/ | | / _ \| |/ // __ \ / \
  354. // / | \ \__\ \__\ ___/ \___ \ \___ \ | |( <_> ) <\ ___/| | \
  355. // \____|__ /\___ >___ >___ >____ >____ > |____| \____/|__|_ \\___ >___| /
  356. // \/ \/ \/ \/ \/ \/ \/ \/ \/
  357. // ErrAccessTokenNotExist represents a "AccessTokenNotExist" kind of error.
  358. type ErrAccessTokenNotExist struct {
  359. SHA string
  360. }
  361. // IsErrAccessTokenNotExist checks if an error is a ErrAccessTokenNotExist.
  362. func IsErrAccessTokenNotExist(err error) bool {
  363. _, ok := err.(ErrAccessTokenNotExist)
  364. return ok
  365. }
  366. func (err ErrAccessTokenNotExist) Error() string {
  367. return fmt.Sprintf("access token does not exist [sha: %s]", err.SHA)
  368. }
  369. // ErrAccessTokenEmpty represents a "AccessTokenEmpty" kind of error.
  370. type ErrAccessTokenEmpty struct {
  371. }
  372. // IsErrAccessTokenEmpty checks if an error is a ErrAccessTokenEmpty.
  373. func IsErrAccessTokenEmpty(err error) bool {
  374. _, ok := err.(ErrAccessTokenEmpty)
  375. return ok
  376. }
  377. func (err ErrAccessTokenEmpty) Error() string {
  378. return fmt.Sprintf("access token is empty")
  379. }
  380. // ________ .__ __ .__
  381. // \_____ \_______ _________ ____ |__|____________ _/ |_|__| ____ ____
  382. // / | \_ __ \/ ___\__ \ / \| \___ /\__ \\ __\ |/ _ \ / \
  383. // / | \ | \/ /_/ > __ \| | \ |/ / / __ \| | | ( <_> ) | \
  384. // \_______ /__| \___ (____ /___| /__/_____ \(____ /__| |__|\____/|___| /
  385. // \/ /_____/ \/ \/ \/ \/ \/
  386. // ErrOrgNotExist represents a "OrgNotExist" kind of error.
  387. type ErrOrgNotExist struct {
  388. ID int64
  389. Name string
  390. }
  391. // IsErrOrgNotExist checks if an error is a ErrOrgNotExist.
  392. func IsErrOrgNotExist(err error) bool {
  393. _, ok := err.(ErrOrgNotExist)
  394. return ok
  395. }
  396. func (err ErrOrgNotExist) Error() string {
  397. return fmt.Sprintf("org does not exist [id: %d, name: %s]", err.ID, err.Name)
  398. }
  399. // ErrLastOrgOwner represents a "LastOrgOwner" kind of error.
  400. type ErrLastOrgOwner struct {
  401. UID int64
  402. }
  403. // IsErrLastOrgOwner checks if an error is a ErrLastOrgOwner.
  404. func IsErrLastOrgOwner(err error) bool {
  405. _, ok := err.(ErrLastOrgOwner)
  406. return ok
  407. }
  408. func (err ErrLastOrgOwner) Error() string {
  409. return fmt.Sprintf("user is the last member of owner team [uid: %d]", err.UID)
  410. }
  411. //.____ ____________________
  412. //| | \_ _____/ _____/
  413. //| | | __) \_____ \
  414. //| |___| \ / \
  415. //|_______ \___ / /_______ /
  416. // \/ \/ \/
  417. // ErrLFSLockNotExist represents a "LFSLockNotExist" kind of error.
  418. type ErrLFSLockNotExist struct {
  419. ID int64
  420. RepoID int64
  421. Path string
  422. }
  423. // IsErrLFSLockNotExist checks if an error is a ErrLFSLockNotExist.
  424. func IsErrLFSLockNotExist(err error) bool {
  425. _, ok := err.(ErrLFSLockNotExist)
  426. return ok
  427. }
  428. func (err ErrLFSLockNotExist) Error() string {
  429. return fmt.Sprintf("lfs lock does not exist [id: %d, rid: %d, path: %s]", err.ID, err.RepoID, err.Path)
  430. }
  431. // ErrLFSLockUnauthorizedAction represents a "LFSLockUnauthorizedAction" kind of error.
  432. type ErrLFSLockUnauthorizedAction struct {
  433. RepoID int64
  434. UserName string
  435. Action string
  436. }
  437. // IsErrLFSLockUnauthorizedAction checks if an error is a ErrLFSLockUnauthorizedAction.
  438. func IsErrLFSLockUnauthorizedAction(err error) bool {
  439. _, ok := err.(ErrLFSLockUnauthorizedAction)
  440. return ok
  441. }
  442. func (err ErrLFSLockUnauthorizedAction) Error() string {
  443. return fmt.Sprintf("User %s doesn't have rigth to %s for lfs lock [rid: %d]", err.UserName, err.Action, err.RepoID)
  444. }
  445. // ErrLFSLockAlreadyExist represents a "LFSLockAlreadyExist" kind of error.
  446. type ErrLFSLockAlreadyExist struct {
  447. RepoID int64
  448. Path string
  449. }
  450. // IsErrLFSLockAlreadyExist checks if an error is a ErrLFSLockAlreadyExist.
  451. func IsErrLFSLockAlreadyExist(err error) bool {
  452. _, ok := err.(ErrLFSLockAlreadyExist)
  453. return ok
  454. }
  455. func (err ErrLFSLockAlreadyExist) Error() string {
  456. return fmt.Sprintf("lfs lock already exists [rid: %d, path: %s]", err.RepoID, err.Path)
  457. }
  458. // __________ .__ __
  459. // \______ \ ____ ______ ____ _____|__|/ |_ ___________ ___.__.
  460. // | _// __ \\____ \ / _ \/ ___/ \ __\/ _ \_ __ < | |
  461. // | | \ ___/| |_> > <_> )___ \| || | ( <_> ) | \/\___ |
  462. // |____|_ /\___ > __/ \____/____ >__||__| \____/|__| / ____|
  463. // \/ \/|__| \/ \/
  464. // ErrRepoNotExist represents a "RepoNotExist" kind of error.
  465. type ErrRepoNotExist struct {
  466. ID int64
  467. UID int64
  468. OwnerName string
  469. Name string
  470. }
  471. // IsErrRepoNotExist checks if an error is a ErrRepoNotExist.
  472. func IsErrRepoNotExist(err error) bool {
  473. _, ok := err.(ErrRepoNotExist)
  474. return ok
  475. }
  476. func (err ErrRepoNotExist) Error() string {
  477. return fmt.Sprintf("repository does not exist [id: %d, uid: %d, owner_name: %s, name: %s]",
  478. err.ID, err.UID, err.OwnerName, err.Name)
  479. }
  480. // ErrRepoAlreadyExist represents a "RepoAlreadyExist" kind of error.
  481. type ErrRepoAlreadyExist struct {
  482. Uname string
  483. Name string
  484. }
  485. // IsErrRepoAlreadyExist checks if an error is a ErrRepoAlreadyExist.
  486. func IsErrRepoAlreadyExist(err error) bool {
  487. _, ok := err.(ErrRepoAlreadyExist)
  488. return ok
  489. }
  490. func (err ErrRepoAlreadyExist) Error() string {
  491. return fmt.Sprintf("repository already exists [uname: %s, name: %s]", err.Uname, err.Name)
  492. }
  493. // ErrRepoRedirectNotExist represents a "RepoRedirectNotExist" kind of error.
  494. type ErrRepoRedirectNotExist struct {
  495. OwnerID int64
  496. RepoName string
  497. }
  498. // IsErrRepoRedirectNotExist check if an error is an ErrRepoRedirectNotExist
  499. func IsErrRepoRedirectNotExist(err error) bool {
  500. _, ok := err.(ErrRepoRedirectNotExist)
  501. return ok
  502. }
  503. func (err ErrRepoRedirectNotExist) Error() string {
  504. return fmt.Sprintf("repository redirect does not exist [uid: %d, name: %s]", err.OwnerID, err.RepoName)
  505. }
  506. // ErrInvalidCloneAddr represents a "InvalidCloneAddr" kind of error.
  507. type ErrInvalidCloneAddr struct {
  508. IsURLError bool
  509. IsInvalidPath bool
  510. IsPermissionDenied bool
  511. }
  512. // IsErrInvalidCloneAddr checks if an error is a ErrInvalidCloneAddr.
  513. func IsErrInvalidCloneAddr(err error) bool {
  514. _, ok := err.(ErrInvalidCloneAddr)
  515. return ok
  516. }
  517. func (err ErrInvalidCloneAddr) Error() string {
  518. return fmt.Sprintf("invalid clone address [is_url_error: %v, is_invalid_path: %v, is_permission_denied: %v]",
  519. err.IsURLError, err.IsInvalidPath, err.IsPermissionDenied)
  520. }
  521. // ErrUpdateTaskNotExist represents a "UpdateTaskNotExist" kind of error.
  522. type ErrUpdateTaskNotExist struct {
  523. UUID string
  524. }
  525. // IsErrUpdateTaskNotExist checks if an error is a ErrUpdateTaskNotExist.
  526. func IsErrUpdateTaskNotExist(err error) bool {
  527. _, ok := err.(ErrUpdateTaskNotExist)
  528. return ok
  529. }
  530. func (err ErrUpdateTaskNotExist) Error() string {
  531. return fmt.Sprintf("update task does not exist [uuid: %s]", err.UUID)
  532. }
  533. // ErrReleaseAlreadyExist represents a "ReleaseAlreadyExist" kind of error.
  534. type ErrReleaseAlreadyExist struct {
  535. TagName string
  536. }
  537. // IsErrReleaseAlreadyExist checks if an error is a ErrReleaseAlreadyExist.
  538. func IsErrReleaseAlreadyExist(err error) bool {
  539. _, ok := err.(ErrReleaseAlreadyExist)
  540. return ok
  541. }
  542. func (err ErrReleaseAlreadyExist) Error() string {
  543. return fmt.Sprintf("release tag already exist [tag_name: %s]", err.TagName)
  544. }
  545. // ErrReleaseNotExist represents a "ReleaseNotExist" kind of error.
  546. type ErrReleaseNotExist struct {
  547. ID int64
  548. TagName string
  549. }
  550. // IsErrReleaseNotExist checks if an error is a ErrReleaseNotExist.
  551. func IsErrReleaseNotExist(err error) bool {
  552. _, ok := err.(ErrReleaseNotExist)
  553. return ok
  554. }
  555. func (err ErrReleaseNotExist) Error() string {
  556. return fmt.Sprintf("release tag does not exist [id: %d, tag_name: %s]", err.ID, err.TagName)
  557. }
  558. // ErrInvalidTagName represents a "InvalidTagName" kind of error.
  559. type ErrInvalidTagName struct {
  560. TagName string
  561. }
  562. // IsErrInvalidTagName checks if an error is a ErrInvalidTagName.
  563. func IsErrInvalidTagName(err error) bool {
  564. _, ok := err.(ErrInvalidTagName)
  565. return ok
  566. }
  567. func (err ErrInvalidTagName) Error() string {
  568. return fmt.Sprintf("release tag name is not valid [tag_name: %s]", err.TagName)
  569. }
  570. // ErrRepoFileAlreadyExist represents a "RepoFileAlreadyExist" kind of error.
  571. type ErrRepoFileAlreadyExist struct {
  572. FileName string
  573. }
  574. // IsErrRepoFileAlreadyExist checks if an error is a ErrRepoFileAlreadyExist.
  575. func IsErrRepoFileAlreadyExist(err error) bool {
  576. _, ok := err.(ErrRepoFileAlreadyExist)
  577. return ok
  578. }
  579. func (err ErrRepoFileAlreadyExist) Error() string {
  580. return fmt.Sprintf("repository file already exists [file_name: %s]", err.FileName)
  581. }
  582. // __________ .__
  583. // \______ \____________ ____ ____ | |__
  584. // | | _/\_ __ \__ \ / \_/ ___\| | \
  585. // | | \ | | \// __ \| | \ \___| Y \
  586. // |______ / |__| (____ /___| /\___ >___| /
  587. // \/ \/ \/ \/ \/
  588. // ErrBranchNotExist represents a "BranchNotExist" kind of error.
  589. type ErrBranchNotExist struct {
  590. Name string
  591. }
  592. // IsErrBranchNotExist checks if an error is a ErrBranchNotExist.
  593. func IsErrBranchNotExist(err error) bool {
  594. _, ok := err.(ErrBranchNotExist)
  595. return ok
  596. }
  597. func (err ErrBranchNotExist) Error() string {
  598. return fmt.Sprintf("branch does not exist [name: %s]", err.Name)
  599. }
  600. // ErrBranchAlreadyExists represents an error that branch with such name already exists
  601. type ErrBranchAlreadyExists struct {
  602. BranchName string
  603. }
  604. // IsErrBranchAlreadyExists checks if an error is an ErrBranchAlreadyExists.
  605. func IsErrBranchAlreadyExists(err error) bool {
  606. _, ok := err.(ErrBranchAlreadyExists)
  607. return ok
  608. }
  609. func (err ErrBranchAlreadyExists) Error() string {
  610. return fmt.Sprintf("branch already exists [name: %s]", err.BranchName)
  611. }
  612. // ErrBranchNameConflict represents an error that branch name conflicts with other branch
  613. type ErrBranchNameConflict struct {
  614. BranchName string
  615. }
  616. // IsErrBranchNameConflict checks if an error is an ErrBranchNameConflict.
  617. func IsErrBranchNameConflict(err error) bool {
  618. _, ok := err.(ErrBranchNameConflict)
  619. return ok
  620. }
  621. func (err ErrBranchNameConflict) Error() string {
  622. return fmt.Sprintf("branch conflicts with existing branch [name: %s]", err.BranchName)
  623. }
  624. // ErrTagAlreadyExists represents an error that tag with such name already exists
  625. type ErrTagAlreadyExists struct {
  626. TagName string
  627. }
  628. // IsErrTagAlreadyExists checks if an error is an ErrTagAlreadyExists.
  629. func IsErrTagAlreadyExists(err error) bool {
  630. _, ok := err.(ErrTagAlreadyExists)
  631. return ok
  632. }
  633. func (err ErrTagAlreadyExists) Error() string {
  634. return fmt.Sprintf("tag already exists [name: %s]", err.TagName)
  635. }
  636. // __ __ ___. .__ __
  637. // / \ / \ ____\_ |__ | |__ ____ ____ | | __
  638. // \ \/\/ // __ \| __ \| | \ / _ \ / _ \| |/ /
  639. // \ /\ ___/| \_\ \ Y ( <_> | <_> ) <
  640. // \__/\ / \___ >___ /___| /\____/ \____/|__|_ \
  641. // \/ \/ \/ \/ \/
  642. // ErrWebhookNotExist represents a "WebhookNotExist" kind of error.
  643. type ErrWebhookNotExist struct {
  644. ID int64
  645. }
  646. // IsErrWebhookNotExist checks if an error is a ErrWebhookNotExist.
  647. func IsErrWebhookNotExist(err error) bool {
  648. _, ok := err.(ErrWebhookNotExist)
  649. return ok
  650. }
  651. func (err ErrWebhookNotExist) Error() string {
  652. return fmt.Sprintf("webhook does not exist [id: %d]", err.ID)
  653. }
  654. // .___
  655. // | | ______ ________ __ ____
  656. // | |/ ___// ___/ | \_/ __ \
  657. // | |\___ \ \___ \| | /\ ___/
  658. // |___/____ >____ >____/ \___ >
  659. // \/ \/ \/
  660. // ErrIssueNotExist represents a "IssueNotExist" kind of error.
  661. type ErrIssueNotExist struct {
  662. ID int64
  663. RepoID int64
  664. Index int64
  665. }
  666. // IsErrIssueNotExist checks if an error is a ErrIssueNotExist.
  667. func IsErrIssueNotExist(err error) bool {
  668. _, ok := err.(ErrIssueNotExist)
  669. return ok
  670. }
  671. func (err ErrIssueNotExist) Error() string {
  672. return fmt.Sprintf("issue does not exist [id: %d, repo_id: %d, index: %d]", err.ID, err.RepoID, err.Index)
  673. }
  674. // __________ .__ .__ __________ __
  675. // \______ \__ __| | | |\______ \ ____ ________ __ ____ _______/ |_
  676. // | ___/ | \ | | | | _// __ \/ ____/ | \_/ __ \ / ___/\ __\
  677. // | | | | / |_| |_| | \ ___< <_| | | /\ ___/ \___ \ | |
  678. // |____| |____/|____/____/____|_ /\___ >__ |____/ \___ >____ > |__|
  679. // \/ \/ |__| \/ \/
  680. // ErrPullRequestNotExist represents a "PullRequestNotExist" kind of error.
  681. type ErrPullRequestNotExist struct {
  682. ID int64
  683. IssueID int64
  684. HeadRepoID int64
  685. BaseRepoID int64
  686. HeadBranch string
  687. BaseBranch string
  688. }
  689. // IsErrPullRequestNotExist checks if an error is a ErrPullRequestNotExist.
  690. func IsErrPullRequestNotExist(err error) bool {
  691. _, ok := err.(ErrPullRequestNotExist)
  692. return ok
  693. }
  694. func (err ErrPullRequestNotExist) Error() string {
  695. 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]",
  696. err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
  697. }
  698. // ErrPullRequestAlreadyExists represents a "PullRequestAlreadyExists"-error
  699. type ErrPullRequestAlreadyExists struct {
  700. ID int64
  701. IssueID int64
  702. HeadRepoID int64
  703. BaseRepoID int64
  704. HeadBranch string
  705. BaseBranch string
  706. }
  707. // IsErrPullRequestAlreadyExists checks if an error is a ErrPullRequestAlreadyExists.
  708. func IsErrPullRequestAlreadyExists(err error) bool {
  709. _, ok := err.(ErrPullRequestAlreadyExists)
  710. return ok
  711. }
  712. // Error does pretty-printing :D
  713. func (err ErrPullRequestAlreadyExists) Error() string {
  714. 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]",
  715. err.ID, err.IssueID, err.HeadRepoID, err.BaseRepoID, err.HeadBranch, err.BaseBranch)
  716. }
  717. // ErrInvalidMergeStyle represents an error if merging with disabled merge strategy
  718. type ErrInvalidMergeStyle struct {
  719. ID int64
  720. Style MergeStyle
  721. }
  722. // IsErrInvalidMergeStyle checks if an error is a ErrInvalidMergeStyle.
  723. func IsErrInvalidMergeStyle(err error) bool {
  724. _, ok := err.(ErrInvalidMergeStyle)
  725. return ok
  726. }
  727. func (err ErrInvalidMergeStyle) Error() string {
  728. return fmt.Sprintf("merge strategy is not allowed or is invalid [repo_id: %d, strategy: %s]",
  729. err.ID, err.Style)
  730. }
  731. // _________ __
  732. // \_ ___ \ ____ _____ _____ ____ _____/ |_
  733. // / \ \/ / _ \ / \ / \_/ __ \ / \ __\
  734. // \ \___( <_> ) Y Y \ Y Y \ ___/| | \ |
  735. // \______ /\____/|__|_| /__|_| /\___ >___| /__|
  736. // \/ \/ \/ \/ \/
  737. // ErrCommentNotExist represents a "CommentNotExist" kind of error.
  738. type ErrCommentNotExist struct {
  739. ID int64
  740. IssueID int64
  741. }
  742. // IsErrCommentNotExist checks if an error is a ErrCommentNotExist.
  743. func IsErrCommentNotExist(err error) bool {
  744. _, ok := err.(ErrCommentNotExist)
  745. return ok
  746. }
  747. func (err ErrCommentNotExist) Error() string {
  748. return fmt.Sprintf("comment does not exist [id: %d, issue_id: %d]", err.ID, err.IssueID)
  749. }
  750. // _________ __ __ .__
  751. // / _____// |_ ____ ________ _ _______ _/ |_ ____ | |__
  752. // \_____ \\ __\/ _ \\____ \ \/ \/ /\__ \\ __\/ ___\| | \
  753. // / \| | ( <_> ) |_> > / / __ \| | \ \___| Y \
  754. // /_______ /|__| \____/| __/ \/\_/ (____ /__| \___ >___| /
  755. // \/ |__| \/ \/ \/
  756. // ErrStopwatchNotExist represents a "Stopwatch Not Exist" kind of error.
  757. type ErrStopwatchNotExist struct {
  758. ID int64
  759. }
  760. // IsErrStopwatchNotExist checks if an error is a ErrStopwatchNotExist.
  761. func IsErrStopwatchNotExist(err error) bool {
  762. _, ok := err.(ErrStopwatchNotExist)
  763. return ok
  764. }
  765. func (err ErrStopwatchNotExist) Error() string {
  766. return fmt.Sprintf("stopwatch does not exist [id: %d]", err.ID)
  767. }
  768. // ___________ __ .______________.__
  769. // \__ ___/___________ ____ | | __ ____ __| _/\__ ___/|__| _____ ____
  770. // | | \_ __ \__ \ _/ ___\| |/ // __ \ / __ | | | | |/ \_/ __ \
  771. // | | | | \// __ \\ \___| <\ ___// /_/ | | | | | Y Y \ ___/
  772. // |____| |__| (____ /\___ >__|_ \\___ >____ | |____| |__|__|_| /\___ >
  773. // \/ \/ \/ \/ \/ \/ \/
  774. // ErrTrackedTimeNotExist represents a "TrackedTime Not Exist" kind of error.
  775. type ErrTrackedTimeNotExist struct {
  776. ID int64
  777. }
  778. // IsErrTrackedTimeNotExist checks if an error is a ErrTrackedTimeNotExist.
  779. func IsErrTrackedTimeNotExist(err error) bool {
  780. _, ok := err.(ErrTrackedTimeNotExist)
  781. return ok
  782. }
  783. func (err ErrTrackedTimeNotExist) Error() string {
  784. return fmt.Sprintf("tracked time does not exist [id: %d]", err.ID)
  785. }
  786. // .____ ___. .__
  787. // | | _____ \_ |__ ____ | |
  788. // | | \__ \ | __ \_/ __ \| |
  789. // | |___ / __ \| \_\ \ ___/| |__
  790. // |_______ (____ /___ /\___ >____/
  791. // \/ \/ \/ \/
  792. // ErrLabelNotExist represents a "LabelNotExist" kind of error.
  793. type ErrLabelNotExist struct {
  794. LabelID int64
  795. RepoID int64
  796. }
  797. // IsErrLabelNotExist checks if an error is a ErrLabelNotExist.
  798. func IsErrLabelNotExist(err error) bool {
  799. _, ok := err.(ErrLabelNotExist)
  800. return ok
  801. }
  802. func (err ErrLabelNotExist) Error() string {
  803. return fmt.Sprintf("label does not exist [label_id: %d, repo_id: %d]", err.LabelID, err.RepoID)
  804. }
  805. // _____ .__.__ __
  806. // / \ |__| | ____ _______/ |_ ____ ____ ____
  807. // / \ / \| | | _/ __ \ / ___/\ __\/ _ \ / \_/ __ \
  808. // / Y \ | |_\ ___/ \___ \ | | ( <_> ) | \ ___/
  809. // \____|__ /__|____/\___ >____ > |__| \____/|___| /\___ >
  810. // \/ \/ \/ \/ \/
  811. // ErrMilestoneNotExist represents a "MilestoneNotExist" kind of error.
  812. type ErrMilestoneNotExist struct {
  813. ID int64
  814. RepoID int64
  815. }
  816. // IsErrMilestoneNotExist checks if an error is a ErrMilestoneNotExist.
  817. func IsErrMilestoneNotExist(err error) bool {
  818. _, ok := err.(ErrMilestoneNotExist)
  819. return ok
  820. }
  821. func (err ErrMilestoneNotExist) Error() string {
  822. return fmt.Sprintf("milestone does not exist [id: %d, repo_id: %d]", err.ID, err.RepoID)
  823. }
  824. // _____ __ __ .__ __
  825. // / _ \_/ |__/ |______ ____ | |__ _____ ____ _____/ |_
  826. // / /_\ \ __\ __\__ \ _/ ___\| | \ / \_/ __ \ / \ __\
  827. // / | \ | | | / __ \\ \___| Y \ Y Y \ ___/| | \ |
  828. // \____|__ /__| |__| (____ /\___ >___| /__|_| /\___ >___| /__|
  829. // \/ \/ \/ \/ \/ \/ \/
  830. // ErrAttachmentNotExist represents a "AttachmentNotExist" kind of error.
  831. type ErrAttachmentNotExist struct {
  832. ID int64
  833. UUID string
  834. }
  835. // IsErrAttachmentNotExist checks if an error is a ErrAttachmentNotExist.
  836. func IsErrAttachmentNotExist(err error) bool {
  837. _, ok := err.(ErrAttachmentNotExist)
  838. return ok
  839. }
  840. func (err ErrAttachmentNotExist) Error() string {
  841. return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
  842. }
  843. // .____ .__ _________
  844. // | | ____ ____ |__| ____ / _____/ ____ __ _________ ____ ____
  845. // | | / _ \ / ___\| |/ \ \_____ \ / _ \| | \_ __ \_/ ___\/ __ \
  846. // | |__( <_> ) /_/ > | | \ / ( <_> ) | /| | \/\ \__\ ___/
  847. // |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
  848. // \/ /_____/ \/ \/ \/ \/
  849. // ErrLoginSourceNotExist represents a "LoginSourceNotExist" kind of error.
  850. type ErrLoginSourceNotExist struct {
  851. ID int64
  852. }
  853. // IsErrLoginSourceNotExist checks if an error is a ErrLoginSourceNotExist.
  854. func IsErrLoginSourceNotExist(err error) bool {
  855. _, ok := err.(ErrLoginSourceNotExist)
  856. return ok
  857. }
  858. func (err ErrLoginSourceNotExist) Error() string {
  859. return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
  860. }
  861. // ErrLoginSourceAlreadyExist represents a "LoginSourceAlreadyExist" kind of error.
  862. type ErrLoginSourceAlreadyExist struct {
  863. Name string
  864. }
  865. // IsErrLoginSourceAlreadyExist checks if an error is a ErrLoginSourceAlreadyExist.
  866. func IsErrLoginSourceAlreadyExist(err error) bool {
  867. _, ok := err.(ErrLoginSourceAlreadyExist)
  868. return ok
  869. }
  870. func (err ErrLoginSourceAlreadyExist) Error() string {
  871. return fmt.Sprintf("login source already exists [name: %s]", err.Name)
  872. }
  873. // ErrLoginSourceInUse represents a "LoginSourceInUse" kind of error.
  874. type ErrLoginSourceInUse struct {
  875. ID int64
  876. }
  877. // IsErrLoginSourceInUse checks if an error is a ErrLoginSourceInUse.
  878. func IsErrLoginSourceInUse(err error) bool {
  879. _, ok := err.(ErrLoginSourceInUse)
  880. return ok
  881. }
  882. func (err ErrLoginSourceInUse) Error() string {
  883. return fmt.Sprintf("login source is still used by some users [id: %d]", err.ID)
  884. }
  885. // ___________
  886. // \__ ___/___ _____ _____
  887. // | |_/ __ \\__ \ / \
  888. // | |\ ___/ / __ \| Y Y \
  889. // |____| \___ >____ /__|_| /
  890. // \/ \/ \/
  891. // ErrTeamAlreadyExist represents a "TeamAlreadyExist" kind of error.
  892. type ErrTeamAlreadyExist struct {
  893. OrgID int64
  894. Name string
  895. }
  896. // IsErrTeamAlreadyExist checks if an error is a ErrTeamAlreadyExist.
  897. func IsErrTeamAlreadyExist(err error) bool {
  898. _, ok := err.(ErrTeamAlreadyExist)
  899. return ok
  900. }
  901. func (err ErrTeamAlreadyExist) Error() string {
  902. return fmt.Sprintf("team already exists [org_id: %d, name: %s]", err.OrgID, err.Name)
  903. }
  904. //
  905. // Two-factor authentication
  906. //
  907. // ErrTwoFactorNotEnrolled indicates that a user is not enrolled in two-factor authentication.
  908. type ErrTwoFactorNotEnrolled struct {
  909. UID int64
  910. }
  911. // IsErrTwoFactorNotEnrolled checks if an error is a ErrTwoFactorNotEnrolled.
  912. func IsErrTwoFactorNotEnrolled(err error) bool {
  913. _, ok := err.(ErrTwoFactorNotEnrolled)
  914. return ok
  915. }
  916. func (err ErrTwoFactorNotEnrolled) Error() string {
  917. return fmt.Sprintf("user not enrolled in 2FA [uid: %d]", err.UID)
  918. }
  919. // ____ ___ .__ .___
  920. // | | \______ | | _________ __| _/
  921. // | | /\____ \| | / _ \__ \ / __ |
  922. // | | / | |_> > |_( <_> ) __ \_/ /_/ |
  923. // |______/ | __/|____/\____(____ /\____ |
  924. // |__| \/ \/
  925. //
  926. // ErrUploadNotExist represents a "UploadNotExist" kind of error.
  927. type ErrUploadNotExist struct {
  928. ID int64
  929. UUID string
  930. }
  931. // IsErrUploadNotExist checks if an error is a ErrUploadNotExist.
  932. func IsErrUploadNotExist(err error) bool {
  933. _, ok := err.(ErrAttachmentNotExist)
  934. return ok
  935. }
  936. func (err ErrUploadNotExist) Error() string {
  937. return fmt.Sprintf("attachment does not exist [id: %d, uuid: %s]", err.ID, err.UUID)
  938. }
  939. // ___________ __ .__ .____ .__ ____ ___
  940. // \_ _____/__ ____/ |_ ___________ ____ _____ | | | | ____ ____ |__| ____ | | \______ ___________
  941. // | __)_\ \/ /\ __\/ __ \_ __ \/ \\__ \ | | | | / _ \ / ___\| |/ \ | | / ___// __ \_ __ \
  942. // | \> < | | \ ___/| | \/ | \/ __ \| |__ | |__( <_> ) /_/ > | | \ | | /\___ \\ ___/| | \/
  943. // /_______ /__/\_ \ |__| \___ >__| |___| (____ /____/ |_______ \____/\___ /|__|___| / |______//____ >\___ >__|
  944. // \/ \/ \/ \/ \/ \/ /_____/ \/ \/ \/
  945. // ErrExternalLoginUserAlreadyExist represents a "ExternalLoginUserAlreadyExist" kind of error.
  946. type ErrExternalLoginUserAlreadyExist struct {
  947. ExternalID string
  948. UserID int64
  949. LoginSourceID int64
  950. }
  951. // IsErrExternalLoginUserAlreadyExist checks if an error is a ExternalLoginUserAlreadyExist.
  952. func IsErrExternalLoginUserAlreadyExist(err error) bool {
  953. _, ok := err.(ErrExternalLoginUserAlreadyExist)
  954. return ok
  955. }
  956. func (err ErrExternalLoginUserAlreadyExist) Error() string {
  957. return fmt.Sprintf("external login user already exists [externalID: %s, userID: %d, loginSourceID: %d]", err.ExternalID, err.UserID, err.LoginSourceID)
  958. }
  959. // ErrExternalLoginUserNotExist represents a "ExternalLoginUserNotExist" kind of error.
  960. type ErrExternalLoginUserNotExist struct {
  961. UserID int64
  962. LoginSourceID int64
  963. }
  964. // IsErrExternalLoginUserNotExist checks if an error is a ExternalLoginUserNotExist.
  965. func IsErrExternalLoginUserNotExist(err error) bool {
  966. _, ok := err.(ErrExternalLoginUserNotExist)
  967. return ok
  968. }
  969. func (err ErrExternalLoginUserNotExist) Error() string {
  970. return fmt.Sprintf("external login user link does not exists [userID: %d, loginSourceID: %d]", err.UserID, err.LoginSourceID)
  971. }