Skip to content

Commit

Permalink
Added update file metadata request
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyavlasoff committed Sep 4, 2024
1 parent ca83218 commit d381ea7
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 7 deletions.
37 changes: 37 additions & 0 deletions v1/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,43 @@ func (c *MgClient) UploadFileByURL(request UploadFileByUrlRequest) (UploadFileRe
return resp, status, err
}

// UpdateFileMetadata update file metadata
//
// Example:
//
// response, status, err := c.UpdateFileMetadata(UploadFileByUrlRequest{
// ID: "e038aa39-2338-4285-be86-e2a0bb424daa"
// Transcription: "demo transcription",
// })
//
// if err != nil {
// fmt.Printf("%v", err)
// }
//
// fmt.Printf("%s\n%s", response.ID, status)
func (c *MgClient) UpdateFileMetadata(request UpdateFileMetadataRequest) (UploadFileResponse, int, error) {
var resp UploadFileResponse
outgoing, err := json.Marshal(&request)
if err != nil {
return resp, 0, err
}

data, status, err := c.PutRequest(fmt.Sprintf("/files/%s/meta", request.ID), outgoing)
if err != nil {
return resp, status, err
}

if status != http.StatusOK {
return resp, status, c.Error(data)
}

if e := json.Unmarshal(data, &resp); e != nil {
return resp, status, e
}

return resp, status, err
}

type wsParams struct {
options []string
}
Expand Down
27 changes: 20 additions & 7 deletions v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,11 @@ type (
UploadFileByUrlRequest struct {
Url string `json:"url"`
}

UpdateFileMetadataRequest struct {
ID string `json:"-"`
Transcription string `json:"transcription,omitempty"`
}
)

// Response types
Expand Down Expand Up @@ -495,13 +500,21 @@ type (
}

Attachment struct {
ID string `json:"id"`
Mime string `json:"type"`
Caption string `json:"caption"`
Size uint64 `json:"size"`
PreviewURL *string `json:"preview_url,omitempty"`
Height *uint64 `json:"height,omitempty"`
Width *uint64 `json:"width,omitempty"`
File

Caption string `json:"caption"`
}

File struct {
ID string `json:"id"`
Mime string `json:"type"`
Type string `json:"kind"`
Size uint64 `json:"size"`
PreviewURL *string `json:"preview_url,omitempty"`
Height *uint64 `json:"height,omitempty"`
Width *uint64 `json:"width,omitempty"`
Duration int `json:"duration,omitempty"`
Transcription string `json:"transcription,omitempty"`
}

MessageProduct struct {
Expand Down

0 comments on commit d381ea7

Please sign in to comment.