File: http.go

package info (click to toggle)
golang-github-go-ap-errors 0.0~git20250501.cd50c6a-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 172 kB
  • sloc: makefile: 18
file content (1001 lines) | stat: -rw-r--r-- 26,215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
package errors

import (
	"encoding/json"
	"fmt"
	"io"
	"net/http"

	"github.com/go-ap/jsonld"
)

const errorsPackageName = "github.com/go-ap/errors"
const runtimeDebugPackageName = "runtime/debug"

type Error interface {
	error
	json.Unmarshaler
}

type notFound struct {
	Err
	s int
}

type methodNotAllowed struct {
	Err
	s int
}

type notValid struct {
	Err
	s int
}

type forbidden struct {
	Err
	s int
}

type notImplemented struct {
	Err
	s int
}

type conflict struct {
	Err
	s int
}

type gone struct {
	Err
	s int
}

type badRequest struct {
	Err
	s int
}

type unauthorized struct {
	Err
	s         int
	challenge string
}

type notSupported struct {
	Err
	s int
}

type timeout struct {
	Err
	s int
}

type badGateway struct {
	Err
	s int
}

type serviceUnavailable struct {
	Err
	s int
}

func wrapErr(err error, s string, args ...interface{}) Err {
	e := Annotatef(err, s, args...)
	asErr := Err{}
	As(e, &asErr)
	return asErr
}

func FromResponse(resp *http.Response) error {
	if resp.StatusCode < http.StatusBadRequest {
		return nil
	}
	body := make([]byte, 0)
	defer resp.Body.Close()

	body, _ = io.ReadAll(resp.Body)

	errors, err := UnmarshalJSON(body)
	if err != nil {
		return AnnotateFromStatus(nil, resp.StatusCode, string(body))
	}
	if len(errors) == 0 {
		return nil
	}

	return AnnotateFromStatus(Join(errors...), resp.StatusCode, resp.Status)
}

func AnnotateFromStatus(err error, status int, s string, args ...interface{}) error {
	switch status {
	case http.StatusNotModified:
		return NewNotModified(err, fmt.Sprintf(s, args...))
	case http.StatusBadRequest:
		return NewBadRequest(err, s, args...)
	case http.StatusUnauthorized:
		return NewUnauthorized(err, s, args...)
	// http.StatusPaymentRequired
	case http.StatusForbidden:
		return NewForbidden(err, s, args...)
	case http.StatusNotFound:
		return NewNotFound(err, s, args...)
	case http.StatusMethodNotAllowed:
		return NewMethodNotAllowed(err, s, args...)
	case http.StatusNotAcceptable:
		return NewNotValid(err, s, args...)
	//case http.StatusProxyAuthRequired
	//case http.StatusRequestTimeout
	case http.StatusConflict:
		return NewConflict(err, s, args...)
	case http.StatusGone:
		return NewGone(err, s, args...)
	//case http.StatusLengthRequres
	//case http.StatusPreconditionFailed
	//case http.StatusRequestEntityTooLarge
	//case http.StatusRequestURITooLong
	//  TODO(marius): http.StatusUnsupportedMediaType
	//case http.StatusRequestedRangeNotSatisfiable
	//case http.StatusExpectationFailed
	//case http.StatusTeapot
	//case http.StatusMisdirectedRequest
	//case http.StatusUnprocessableEntity
	//case http.StatusLocked
	//case http.StatusFailedDependency
	//case http.StatusTooEarly
	//case http.StatusTooManyRequests
	//case http.StatusRequestHeaderFieldsTooLarge
	//case http.StatusUnavailableForLegalReason
	//case http.StatusInternalServerError
	case http.StatusNotImplemented:
		return NewNotImplemented(err, s, args...)
	case http.StatusBadGateway:
		return NewBadGateway(err, s, args...)
	//case http.StatusServiceUnavailable
	//case http.StatusGatewayTimeout
	case http.StatusHTTPVersionNotSupported:
		return NewNotSupported(err, s, args...)
	case http.StatusGatewayTimeout:
		return NewTimeout(err, s, args...)
	}
	return Annotatef(err, s, args...)
}

func NewFromStatus(status int, s string, args ...interface{}) error {
	switch status {
	case http.StatusBadRequest:
		return BadRequestf(s, args...)
	case http.StatusUnauthorized:
		return Unauthorizedf(s, args...)
	// http.StatusPaymentRequired
	case http.StatusForbidden:
		return Forbiddenf(s, args...)
	case http.StatusNotFound:
		return NotFoundf(s, args...)
	case http.StatusMethodNotAllowed:
		return MethodNotAllowedf(s, args...)
	case http.StatusNotAcceptable:
		return NotValidf(s, args...)
	//case http.StatusProxyAuthRequired
	//case http.StatusRequestTimeout
	case http.StatusConflict:
		return Conflictf(s, args...)
	case http.StatusGone:
		return Gonef(s, args...)
	//case http.StatusLengthRequres
	//case http.StatusPreconditionFailed
	//case http.StatusRequestEntityTooLarge
	//case http.StatusRequestURITooLong
	//  TODO(marius): http.StatusUnsupportedMediaType
	//case http.StatusRequestedRangeNotSatisfiable
	//case http.StatusExpectationFailed
	//case http.StatusTeapot
	//case http.StatusMisdirectedRequest
	//case http.StatusUnprocessableEntity
	//case http.StatusLocked
	//case http.StatusFailedDependency
	//case http.StatusTooEarly
	//case http.StatusTooManyRequests
	//case http.StatusRequestHeaderFieldsTooLarge
	//case http.StatusUnavailableForLegalReason
	//case http.StatusInternalServerError
	case http.StatusNotImplemented:
		return NotImplementedf(s, args...)
	case http.StatusBadGateway:
		return BadGatewayf(s, args...)
	//case http.StatusServiceUnavailable
	//case http.StatusGatewayTimeout
	case http.StatusHTTPVersionNotSupported:
		return NotSupportedf(s, args...)
	case http.StatusGatewayTimeout:
		return Timeoutf(s, args...)
	}
	return Newf(s, args...)
}

func WrapWithStatus(status int, err error, s string, args ...interface{}) error {
	switch status {
	case http.StatusBadRequest:
		return NewBadRequest(err, s, args...)
	case http.StatusUnauthorized:
		return NewUnauthorized(err, s, args...)
	// http.StatusPaymentRequired
	case http.StatusForbidden:
		return NewForbidden(err, s, args...)
	case http.StatusNotFound:
		return NewNotFound(err, s, args...)
	case http.StatusMethodNotAllowed:
		return NewMethodNotAllowed(err, s, args...)
	case http.StatusNotAcceptable:
		return NewNotValid(err, s, args...)
	//case http.StatusProxyAuthRequired
	//case http.StatusRequestTimeout
	case http.StatusConflict:
		return NewConflict(err, s, args...)
	case http.StatusGone:
		return NewGone(err, s, args...)
	//case http.StatusLengthRequres
	//case http.StatusPreconditionFailed
	//case http.StatusRequestEntityTooLarge
	//case http.StatusRequestURITooLong
	//  TODO(marius): http.StatusUnsupportedMediaType
	//case http.StatusRequestedRangeNotSatisfiable
	//case http.StatusExpectationFailed
	//case http.StatusTeapot
	//case http.StatusMisdirectedRequest
	//case http.StatusUnprocessableEntity
	//case http.StatusLocked
	//case http.StatusFailedDependency
	//case http.StatusTooEarly
	//case http.StatusTooManyRequests
	//case http.StatusRequestHeaderFieldsTooLarge
	//case http.StatusUnavailableForLegalReason
	//case http.StatusInternalServerError
	case http.StatusNotImplemented:
		return NewNotImplemented(err, s, args...)
	case http.StatusBadGateway:
		return NewBadGateway(err, s, args...)
	case http.StatusServiceUnavailable:
		return NewServiceUnavailable(err, s, args...)
	//case http.StatusGatewayTimeout
	case http.StatusHTTPVersionNotSupported:
		return NewNotSupported(err, s, args...)
	case http.StatusGatewayTimeout:
		return NewTimeout(err, s, args...)
	}
	return wrapErr(err, s, args...)
}
func NotFoundf(s string, args ...interface{}) *notFound {
	return &notFound{Err: wrapErr(nil, s, args...), s: http.StatusNotFound}
}
func NewNotFound(e error, s string, args ...interface{}) *notFound {
	return &notFound{Err: wrapErr(e, s, args...), s: http.StatusNotFound}
}
func MethodNotAllowedf(s string, args ...interface{}) *methodNotAllowed {
	return &methodNotAllowed{Err: wrapErr(nil, s, args...), s: http.StatusMethodNotAllowed}
}
func NewMethodNotAllowed(e error, s string, args ...interface{}) *methodNotAllowed {
	return &methodNotAllowed{Err: wrapErr(e, s, args...), s: http.StatusMethodNotAllowed}
}
func NotValidf(s string, args ...interface{}) *notValid {
	return &notValid{Err: wrapErr(nil, s, args...)}
}
func NewNotValid(e error, s string, args ...interface{}) *notValid {
	return &notValid{Err: wrapErr(e, s, args...)}
}
func Conflictf(s string, args ...interface{}) *conflict {
	return &conflict{Err: wrapErr(nil, s, args...), s: http.StatusConflict}
}
func NewConflict(e error, s string, args ...interface{}) *conflict {
	return &conflict{Err: wrapErr(e, s, args...), s: http.StatusConflict}
}
func Gonef(s string, args ...interface{}) *gone {
	return &gone{Err: wrapErr(nil, s, args...), s: http.StatusGone}
}
func NewGone(e error, s string, args ...interface{}) *gone {
	return &gone{Err: wrapErr(e, s, args...), s: http.StatusGone}
}
func Forbiddenf(s string, args ...interface{}) *forbidden {
	return &forbidden{Err: wrapErr(nil, s, args...), s: http.StatusForbidden}
}
func NewForbidden(e error, s string, args ...interface{}) *forbidden {
	return &forbidden{Err: wrapErr(e, s, args...), s: http.StatusForbidden}
}
func NotImplementedf(s string, args ...interface{}) *notImplemented {
	return &notImplemented{Err: wrapErr(nil, s, args...), s: http.StatusNotImplemented}
}
func NewNotImplemented(e error, s string, args ...interface{}) *notImplemented {
	return &notImplemented{Err: wrapErr(e, s, args...), s: http.StatusNotImplemented}
}
func BadRequestf(s string, args ...interface{}) *badRequest {
	return &badRequest{Err: wrapErr(nil, s, args...), s: http.StatusBadRequest}
}
func NewBadRequest(e error, s string, args ...interface{}) *badRequest {
	return &badRequest{Err: wrapErr(e, s, args...), s: http.StatusBadRequest}
}
func Unauthorizedf(s string, args ...interface{}) *unauthorized {
	return &unauthorized{Err: wrapErr(nil, s, args...), s: http.StatusUnauthorized}
}
func NewUnauthorized(e error, s string, args ...interface{}) *unauthorized {
	return &unauthorized{Err: wrapErr(e, s, args...), s: http.StatusUnauthorized}
}
func NotSupportedf(s string, args ...interface{}) *notSupported {
	return &notSupported{Err: wrapErr(nil, s, args...), s: http.StatusHTTPVersionNotSupported}
}
func NewNotSupported(e error, s string, args ...interface{}) *notSupported {
	return &notSupported{Err: wrapErr(e, s, args...), s: http.StatusHTTPVersionNotSupported}
}
func Timeoutf(s string, args ...interface{}) *timeout {
	return &timeout{Err: wrapErr(nil, s, args...), s: http.StatusRequestTimeout}
}
func NewTimeout(e error, s string, args ...interface{}) *timeout {
	return &timeout{Err: wrapErr(e, s, args...), s: http.StatusRequestTimeout}
}
func BadGatewayf(s string, args ...interface{}) *badGateway {
	return &badGateway{Err: wrapErr(nil, s, args...), s: http.StatusBadGateway}
}
func NewBadGateway(e error, s string, args ...interface{}) *badGateway {
	return &badGateway{Err: wrapErr(e, s, args...), s: http.StatusBadGateway}
}
func ServiceUnavailablef(s string, args ...interface{}) *serviceUnavailable {
	return &serviceUnavailable{Err: wrapErr(nil, s, args...), s: http.StatusServiceUnavailable}
}
func NewServiceUnavailable(e error, s string, args ...interface{}) *serviceUnavailable {
	return &serviceUnavailable{Err: wrapErr(e, s, args...), s: http.StatusServiceUnavailable}
}
func IsServiceUnavailable(e error) bool {
	_, okp := e.(*serviceUnavailable)
	_, oks := e.(serviceUnavailable)
	return okp || oks || As(e, &serviceUnavailable{})
}
func IsBadRequest(e error) bool {
	_, okp := e.(*badRequest)
	_, oks := e.(badRequest)
	return okp || oks || As(e, &badRequest{})
}
func IsForbidden(e error) bool {
	_, okp := e.(*forbidden)
	_, oks := e.(forbidden)
	return okp || oks || As(e, &forbidden{})
}
func IsNotSupported(e error) bool {
	_, okp := e.(*notSupported)
	_, oks := e.(notSupported)
	return okp || oks
}
func IsConflict(e error) bool {
	_, okp := e.(*conflict)
	_, oks := e.(conflict)
	return okp || oks || As(e, &conflict{})
}
func IsGone(e error) bool {
	_, okp := e.(*gone)
	_, oks := e.(gone)
	return okp || oks || As(e, &gone{})
}
func IsMethodNotAllowed(e error) bool {
	_, okp := e.(*methodNotAllowed)
	_, oks := e.(methodNotAllowed)
	return okp || oks || As(e, &methodNotAllowed{})
}
func IsNotFound(e error) bool {
	_, okp := e.(*notFound)
	_, oks := e.(notFound)
	return okp || oks || As(e, &notFound{})
}
func IsNotImplemented(e error) bool {
	_, okp := e.(*notImplemented)
	_, oks := e.(notImplemented)
	return okp || oks || As(e, &notImplemented{})
}
func IsUnauthorized(e error) bool {
	_, okp := e.(*unauthorized)
	_, oks := e.(unauthorized)
	return okp || oks || As(e, &unauthorized{})
}
func IsTimeout(e error) bool {
	_, okp := e.(*timeout)
	_, oks := e.(timeout)
	return okp || oks || As(e, &timeout{})
}
func IsNotValid(e error) bool {
	_, okp := e.(*notValid)
	_, oks := e.(notValid)
	return okp || oks || As(e, &notValid{})
}

func IsBadGateway(e error) bool {
	_, okp := e.(*badGateway)
	_, oks := e.(badGateway)
	return okp || oks || As(e, &badGateway{})
}
func (n notFound) Is(e error) bool {
	return IsNotFound(e)
}
func (n notValid) Is(e error) bool {
	return IsNotValid(e)
}
func (n notImplemented) Is(e error) bool {
	return IsNotImplemented(e)
}
func (n notSupported) Is(e error) bool {
	return IsNotSupported(e)
}
func (b badRequest) Is(e error) bool {
	return IsBadRequest(e)
}
func (s serviceUnavailable) Is(e error) bool {
	return IsServiceUnavailable(e)
}
func (t timeout) Is(e error) bool {
	return IsTimeout(e)
}
func (u unauthorized) Is(e error) bool {
	return IsUnauthorized(e)
}
func (m methodNotAllowed) Is(e error) bool {
	return IsMethodNotAllowed(e)
}
func (f forbidden) Is(e error) bool {
	return IsForbidden(e)
}
func (b badGateway) Is(e error) bool {
	return IsBadGateway(e)
}
func (g gone) Is(e error) bool {
	return IsGone(e)
}
func (c conflict) Is(e error) bool {
	return IsConflict(e)
}
func (n notFound) Unwrap() error {
	return n.Err.Unwrap()
}
func (n notValid) Unwrap() error {
	return n.Err.Unwrap()
}
func (n notImplemented) Unwrap() error {
	return n.Err.Unwrap()
}
func (n notSupported) Unwrap() error {
	return n.Err.Unwrap()
}
func (b badRequest) Unwrap() error {
	return b.Err.Unwrap()
}
func (s serviceUnavailable) Unwrap() error {
	return s.Err.Unwrap()
}
func (t timeout) Unwrap() error {
	return t.Err.Unwrap()
}
func (u unauthorized) Unwrap() error {
	return u.Err.Unwrap()
}
func (m methodNotAllowed) Unwrap() error {
	return m.Err.Unwrap()
}
func (f forbidden) Unwrap() error {
	return f.Err.Unwrap()
}
func (b badGateway) Unwrap() error {
	return b.Err.Unwrap()
}
func (g gone) Unwrap() error {
	return g.Err.Unwrap()
}
func (c conflict) Unwrap() error {
	return c.Err.Unwrap()
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a notFound to its underlying type Err.
func (n *notFound) As(err interface{}) bool {
	switch x := err.(type) {
	case **notFound:
		*x = n
	case *notFound:
		*x = *n
	case *Err:
		return n.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a notValid to its underlying type Err.
func (n *notValid) As(err interface{}) bool {
	switch x := err.(type) {
	case **notValid:
		*x = n
	case *notValid:
		*x = *n
	case *Err:
		return n.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a notImplemented to its underlying type Err.
func (n *notImplemented) As(err interface{}) bool {
	switch x := err.(type) {
	case **notImplemented:
		*x = n
	case *notImplemented:
		*x = *n
	case *Err:
		return n.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a notSupported to its underlying type Err.
func (n *notSupported) As(err interface{}) bool {
	switch x := err.(type) {
	case **notSupported:
		*x = n
	case *notSupported:
		*x = *n
	case *Err:
		return n.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a badRequest to its underlying type Err.
func (b *badRequest) As(err interface{}) bool {
	switch x := err.(type) {
	case **badRequest:
		*x = b
	case *badRequest:
		*x = *b
	case *Err:
		return b.Err.As(x)
	default:
		return false
	}
	return true
}

func (s *serviceUnavailable) As(err interface{}) bool {
	switch x := err.(type) {
	case **serviceUnavailable:
		*x = s
	case *serviceUnavailable:
		*x = *s
	case *Err:
		return s.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a timeout to its underlying type Err.
func (t *timeout) As(err interface{}) bool {
	switch x := err.(type) {
	case **timeout:
		*x = t
	case *timeout:
		*x = *t
	case *Err:
		return t.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a unauthorized to its underlying type Err.
func (u *unauthorized) As(err interface{}) bool {
	switch x := err.(type) {
	case **unauthorized:
		*x = u
	case *unauthorized:
		*x = *u
	case *Err:
		return u.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a methodNotAllowed to its underlying type Err.
func (m *methodNotAllowed) As(err interface{}) bool {
	switch x := err.(type) {
	case **methodNotAllowed:
		*x = m
	case *methodNotAllowed:
		*x = *m
	case *Err:
		return m.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a forbidden to its underlying type Err.
func (f *forbidden) As(err interface{}) bool {
	switch x := err.(type) {
	case **forbidden:
		*x = f
	case *forbidden:
		*x = *f
	case *Err:
		return f.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a badGateway to its underlying type Err.
func (b *badGateway) As(err interface{}) bool {
	switch x := err.(type) {
	case **badGateway:
		*x = b
	case *badGateway:
		*x = *b
	case *Err:
		return b.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a gone error to its underlying type Err.
func (g *gone) As(err interface{}) bool {
	switch x := err.(type) {
	case **gone:
		*x = g
	case *gone:
		*x = *g
	case *Err:
		return g.Err.As(x)
	default:
		return false
	}
	return true
}

// As is used by the errors.As() function to coerce the method's parameter to the one of the receiver
//
//	if the underlying logic of the receiver's type can understand it.
//
// In this case we're converting a conflict error to its underlying type Err.
func (c *conflict) As(err interface{}) bool {
	switch x := err.(type) {
	case **conflict:
		*x = c
	case *conflict:
		*x = *c
	case *Err:
		return c.Err.As(x)
	default:
		return false
	}
	return true
}

// Challenge adds a challenge token to be added to the HTTP response
func (u *unauthorized) Challenge(c string) *unauthorized {
	u.challenge = c
	return u
}

// Challenge returns the challenge of the err parameter if it's an unauthorized type error
func Challenge(err error) string {
	un := unauthorized{}
	if ok := As(err, &un); ok {
		return un.challenge
	}
	return ""
}

// ErrorHandlerFn
type ErrorHandlerFn func(http.ResponseWriter, *http.Request) error

// ServeHTTP implements the http.Handler interface for the ItemHandlerFn type
func (h ErrorHandlerFn) ServeHTTP(w http.ResponseWriter, r *http.Request) {
	var dat []byte
	var status int

	if err := h(w, r); err != nil {
		if IsRedirect(err) {
			w.Header().Set("Location", Location(err))
			status = HttpStatus(err)
		} else {
			if status, dat = RenderErrors(r, err); status == 0 {
				status = http.StatusInternalServerError
			}
			w.Header().Set("Content-Type", "application/json")
		}
	}
	w.WriteHeader(status)
	w.Write(dat)
}

func Location(err error) string {
	r := new(redirect)
	if As(err, r) {
		return r.u
	}
	return ""
}

// HandleError is a generic method to return an HTTP handler that passes an error up the chain
func HandleError(e error) ErrorHandlerFn {
	return func(w http.ResponseWriter, r *http.Request) error {
		return e
	}
}

// NotFound is a generic method to return an 404 error HTTP handler that
var NotFound = ErrorHandlerFn(func(w http.ResponseWriter, r *http.Request) error {
	return NotFoundf("%s not found", r.URL.Path)
})

type Http struct {
	Code    int        `jsonld:"status,omitempty"`
	Message string     `jsonld:"message"`
	Trace   StackTrace `jsonld:"trace,omitempty"`
}

func HttpErrors(err error) []Http {
	https := make([]Http, 0)

	load := func(err error) Http {
		var trace StackTrace
		var msg string
		switch e := err.(type) {
		case *Err:
			msg = e.Error()
			if IncludeBacktrace {
				trace = e.StackTrace()
			}
		default:
			local := new(Err)
			if ok := As(err, local); ok {
				if IncludeBacktrace {
					trace = local.StackTrace()
				}
			}
			msg = err.Error()
		}

		return Http{
			Message: msg,
			Trace:   trace,
			Code:    HttpStatus(err),
		}
	}
	https = append(https, load(err))
	for {
		if err = Unwrap(err); err != nil {
			https = append(https, load(err))
		} else {
			break
		}
	}

	return https
}

func HttpStatus(e error) int {
	if IsRedirect(e) {
		r := new(redirect)
		if As(e, r) {
			return r.s
		}
	}
	if IsBadRequest(e) {
		return http.StatusBadRequest
	}
	if IsUnauthorized(e) {
		return http.StatusUnauthorized
	}
	// http.StatusPaymentRequired
	if IsForbidden(e) {
		return http.StatusForbidden
	}
	if IsNotFound(e) {
		return http.StatusNotFound
	}
	if IsMethodNotAllowed(e) {
		return http.StatusMethodNotAllowed
	}
	if IsNotValid(e) {
		return http.StatusNotAcceptable
	}
	//  http.StatusProxyAuthRequired
	//  http.StatusRequestTimeout
	if IsConflict(e) {
		return http.StatusConflict
	}
	if IsGone(e) {
		return http.StatusGone
	}
	//  http.StatusLengthRequires
	//  http.StatusPreconditionFailed
	//  http.StatusRequestEntityTooLarge
	//  http.StatusRequestURITooLong
	//  TODO(marius): http.StatusUnsupportedMediaType
	//  http.StatusRequestedRangeNotSatisfiable
	//  http.StatusExpectationFailed
	//  http.StatusTeapot
	//  http.StatusMisdirectedRequest
	//  http.StatusUnprocessableEntity
	//  http.StatusLocked
	//  http.StatusFailedDependency
	//  http.StatusTooEarly
	//  http.StatusTooManyRequests
	//  http.StatusRequestHeaderFieldsTooLarge
	//  http.StatusUnavailableForLegalReason

	//  http.StatusInternalServerError
	if IsNotImplemented(e) {
		return http.StatusNotImplemented
	}
	if IsBadGateway(e) {
		return http.StatusBadGateway
	}
	if IsServiceUnavailable(e) {
		return http.StatusServiceUnavailable
	}
	//  http.StatusGatewayTimeout
	if IsNotSupported(e) {
		return http.StatusHTTPVersionNotSupported
	}

	if IsTimeout(e) {
		return http.StatusGatewayTimeout
	}

	return 0
}

func errorFromStatus(status int) Error {
	switch status {
	case http.StatusBadRequest:
		return new(badRequest)
	case http.StatusUnauthorized:
		return new(unauthorized)
	//case http.StatusPaymentRequired:
	case http.StatusForbidden:
		return new(forbidden)
	case http.StatusNotFound:
		return new(notFound)
	case http.StatusMethodNotAllowed:
		return new(methodNotAllowed)
	case http.StatusNotAcceptable:
		return new(notValid)
	//case http.StatusProxyAuthRequired:
	//case http.StatusRequestTimeout:
	case http.StatusConflict:
		return new(conflict)
	case http.StatusGone:
		return new(gone)
	//case http.StatusLengthRequired:
	//case http.StatusPreconditionFailed:
	//case http.StatusRequestEntityTooLarge:
	//case http.StatusRequestURITooLong:
	//case http.StatusUnsupportedMediaType: // TODO(marius):
	//case http.StatusRequestedRangeNotSatisfiable:
	//case http.StatusExpectationFailed:
	//case http.StatusTeapot:
	//case http.StatusMisdirectedRequest:
	//case http.StatusUnprocessableEntity:
	//case http.StatusLocked:
	//case http.StatusFailedDependency:
	//case http.StatusTooEarly:
	//case http.StatusTooManyRequests:
	//case http.StatusRequestHeaderFieldsTooLarge:
	//case http.StatusUnavailableForLegalReason:
	//case http.StatusInternalServerError:
	case http.StatusNotImplemented:
		return new(notImplemented)
	case http.StatusBadGateway:
		return new(badGateway)
	case http.StatusServiceUnavailable:
		return new(serviceUnavailable)
	case http.StatusHTTPVersionNotSupported:
		return new(notSupported)
	case http.StatusGatewayTimeout:
		return new(badGateway)
	case http.StatusInternalServerError:
		fallthrough
	default:
		return new(Err)
	}
}

// TODO(marius): get a proper ctxt
func ctxt(r *http.Request) jsonld.Context {
	scheme := "http"
	if r.TLS != nil {
		scheme = "https"
	}
	return jsonld.Context{
		jsonld.ContextElement{
			Term: "errors",
			IRI:  jsonld.IRI(fmt.Sprintf("%s://%s/ns#errors", scheme, r.Host)),
		},
	}
}

// RenderErrors outputs the json encoded errors, with the JsonLD ctxt for current
func RenderErrors(r *http.Request, errs ...error) (int, []byte) {
	errMap := make([]Http, 0)
	var status int
	for _, err := range errs {
		more := HttpErrors(err)
		errMap = append(errMap, more...)
		status = HttpStatus(err)
	}
	var dat []byte
	var err error

	m := struct {
		Errors []Http `jsonld:"errors"`
	}{Errors: errMap}
	if dat, err = jsonld.WithContext(ctxt(r)).Marshal(m); err != nil {
		return http.StatusInternalServerError, dat
	}
	return status, dat
}