Skip to content

Commit ecdf6e1

Browse files
authored
fix: allow large file size (#156)
1 parent 00ed630 commit ecdf6e1

File tree

6 files changed

+122
-96
lines changed

6 files changed

+122
-96
lines changed

api/jiaozifs.gen.go

+95-94
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,11 @@ paths:
11241124
type: string
11251125
format: binary
11261126
headers:
1127+
Content-Disposition:
1128+
schema:
1129+
type: string
1130+
description: response file
1131+
example: attachment; filename="name.pdf"
11271132
Content-Length:
11281133
schema:
11291134
type: integer

chart/templates/ingress.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ metadata:
66
meta.helm.sh/release-name: jiaozifs-api
77
nginx.ingress.kubernetes.io/rewrite-target: /
88
nginx.ingress.kubernetes.io/proxy-connect-timeout: "30"
9+
nginx.ingress.kubernetes.io/proxy-body-size: "{{.Values.request_size}}"
910
nginx.ingress.kubernetes.io/proxy-read-timeout: "1800"
1011
nginx.ingress.kubernetes.io/proxy-send-timeout: "1800"
1112
labels:

chart/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ log_level: info
1010
claim_name: jiaozifs-home
1111
tag: latest
1212
cert: api-jiaozifs-com-tls
13+
request_size: 100m

cmd/uploadfiles.go

+19-2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,16 @@ var uploadCmd = &cobra.Command{
6969
uploadPath = "/"
7070
}
7171

72+
ignoreRootName, err := cmd.Flags().GetBool("ignoreRootName")
73+
if err != nil {
74+
return err
75+
}
76+
77+
replace, err := cmd.Flags().GetBool("replace")
78+
if err != nil {
79+
return err
80+
}
81+
7282
if len(path) == 0 {
7383
return errors.New("path not set")
7484
}
@@ -105,13 +115,19 @@ var uploadCmd = &cobra.Command{
105115
return err
106116
}
107117
relativePath := strings.Replace(file, path, "", 1)
108-
destPath := path2.Join(uploadPath, basename, relativePath)
118+
119+
var destPath string
120+
if !ignoreRootName {
121+
destPath = path2.Join(uploadPath, basename, relativePath)
122+
} else {
123+
destPath = path2.Join(uploadPath, relativePath)
124+
}
109125

110126
resp, err := client.UploadObjectWithBody(cmd.Context(), owner, repo, &api.UploadObjectParams{
111127
RefName: refName,
112128
// Path relative to the ref
113129
Path: destPath,
114-
IsReplace: utils.Bool(true),
130+
IsReplace: utils.Bool(replace),
115131
}, "application/json", fs)
116132
if err != nil {
117133
return err
@@ -136,4 +152,5 @@ func init() {
136152
uploadCmd.Flags().String("refName", "main", "branch name")
137153
uploadCmd.Flags().String("uploadPath", "", "path to save in server")
138154
uploadCmd.Flags().Bool("replace", true, "path to save in server")
155+
uploadCmd.Flags().Bool("ignoreRootName", false, "ignore root name")
139156
}

controller/object_ctl.go

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ func (oct ObjectController) GetObject(ctx context.Context, w *api.JiaozifsRespon
191191
w.Header().Set("X-Content-Type-Options", "nosniff")
192192
w.Header().Set("X-Frame-Options", "SAMEORIGIN")
193193
w.Header().Set("Content-Security-Policy", "default-src 'none'")
194+
w.Header().Set("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, name))
194195
_, err = io.Copy(w, reader)
195196
if err != nil {
196197
objLog.With(

0 commit comments

Comments
 (0)