-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-0.2] feat(*): add a Optional field to the Parameter struct (#…
…348) * fix(*): handle the situation when the parameter is nil * feat(*): add a Optional field to the Parameter struct * fix lint Co-authored-by: iawia002 <[email protected]>
- Loading branch information
1 parent
af0c9cf
commit 6aa8292
Showing
6 changed files
with
126 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Copyright 2020 Caicloud Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package main | ||
|
||
import ( | ||
"context" | ||
"io/ioutil" | ||
"mime/multipart" | ||
|
||
"github.com/caicloud/nirvana/config" | ||
"github.com/caicloud/nirvana/definition" | ||
"github.com/caicloud/nirvana/log" | ||
) | ||
|
||
func Upload(ctx context.Context, file multipart.File) (string, error) { | ||
if file == nil { | ||
return "no content", nil | ||
} | ||
f, err := ioutil.ReadAll(file) | ||
if err != nil { | ||
return "", nil | ||
} | ||
return string(f), nil | ||
} | ||
|
||
func main() { | ||
descriptors := []definition.Descriptor{ | ||
{ | ||
Path: "/required", | ||
Description: "Upload API", | ||
Definitions: []definition.Definition{ | ||
{ | ||
Method: definition.Create, | ||
Function: Upload, | ||
Consumes: []string{definition.MIMEAll}, | ||
Produces: []string{definition.MIMEAll}, | ||
Parameters: []definition.Parameter{ | ||
{ | ||
Source: definition.File, | ||
Name: "file", | ||
}, | ||
}, | ||
Results: definition.DataErrorResults(""), | ||
}, | ||
}, | ||
}, | ||
{ | ||
Path: "/optional", | ||
Description: "Upload API", | ||
Definitions: []definition.Definition{ | ||
{ | ||
Method: definition.Create, | ||
Function: Upload, | ||
Consumes: []string{definition.MIMEAll}, | ||
Produces: []string{definition.MIMEAll}, | ||
Parameters: []definition.Parameter{ | ||
{ | ||
Source: definition.File, | ||
Name: "file", | ||
Optional: true, | ||
}, | ||
}, | ||
Results: definition.DataErrorResults(""), | ||
}, | ||
}, | ||
}, | ||
} | ||
cmd := config.NewDefaultNirvanaCommand() | ||
if err := cmd.Execute(descriptors...); err != nil { | ||
log.Fatal(err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters