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
|
package uploadedfile
import (
"errors"
"fmt"
"os"
"mandible/imageprocessor/gm"
)
type ThumbFile struct {
name string
width int
height int
shape string
path string
}
func NewThumbFile(width, height int, name, shape, path string) *ThumbFile {
return &ThumbFile{
name,
width,
height,
shape,
path,
}
}
func (this *ThumbFile) GetName() string {
return this.name
}
func (this *ThumbFile) SetName(name string) {
this.name = name
}
func (this *ThumbFile) GetHeight() int {
return this.height
}
func (this *ThumbFile) SetHeight(h int) {
this.height = h
}
func (this *ThumbFile) GetWidth() int {
return this.width
}
func (this *ThumbFile) SetWidth(h int) {
this.width = h
}
func (this *ThumbFile) GetShape() string {
return this.shape
}
func (this *ThumbFile) SetShape(shape string) {
this.shape = shape
}
func (this *ThumbFile) GetPath() string {
return this.path
}
func (this *ThumbFile) SetPath(path string) error {
if _, err := os.Stat(path); os.IsNotExist(err) {
return errors.New(fmt.Sprintf("Error when creating thumbnail %s", this.GetName()))
}
this.path = path
return nil
}
func (this *ThumbFile) Process(original *UploadedFile) error {
switch this.shape {
case "circle":
return this.processCircle(original)
case "thumb":
return this.processThumb(original)
case "square":
return this.processSquare(original)
}
return errors.New("Invalid thumb shape " + this.shape)
}
func (this *ThumbFile) processSquare(original *UploadedFile) error {
filename, err := gm.SquareThumb(original.GetPath(), this.GetName(), this.GetWidth())
if err != nil {
return err
}
if err := this.SetPath(filename); err != nil {
return err
}
return nil
}
func (this *ThumbFile) processCircle(original *UploadedFile) error {
filename, err := gm.CircleThumb(original.GetPath(), this.GetName(), this.GetWidth())
if err != nil {
return err
}
if err := this.SetPath(filename); err != nil {
return err
}
return nil
}
func (this *ThumbFile) processThumb(original *UploadedFile) error {
filename, err := gm.Thumb(original.GetPath(), this.GetName(), this.GetWidth(), this.GetHeight())
if err != nil {
return err
}
if err := this.SetPath(filename); err != nil {
return err
}
return nil
}
|