mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 00:32:25 -05:00 
			
		
		
		
	[feature] Implement media v2 endpoint to accommodate Tusky 17 (#480)
* serve v2 media api * go fmt
This commit is contained in:
		
					parent
					
						
							
								88979b35d4
							
						
					
				
			
			
				commit
				
					
						9813a044c0
					
				
			
		
					 3 changed files with 25 additions and 12 deletions
				
			
		|  | @ -26,14 +26,20 @@ import ( | ||||||
| 	"github.com/superseriousbusiness/gotosocial/internal/router" | 	"github.com/superseriousbusiness/gotosocial/internal/router" | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
| // BasePath is the base API path for making media requests | // BasePathV1 is the base API path for making media requests through v1 of the api (for mastodon API compatibility) | ||||||
| const BasePath = "/api/v1/media" | const BasePathV1 = "/api/v1/media" | ||||||
|  | 
 | ||||||
|  | // BasePathV2 is the base API path for making media requests through v2 of the api (for mastodon API compatibility) | ||||||
|  | const BasePathV2 = "/api/v2/media" | ||||||
| 
 | 
 | ||||||
| // IDKey is the key for media attachment IDs | // IDKey is the key for media attachment IDs | ||||||
| const IDKey = "id" | const IDKey = "id" | ||||||
| 
 | 
 | ||||||
| // BasePathWithID corresponds to a media attachment with the given ID | // BasePathWithIDV1 corresponds to a media attachment with the given ID | ||||||
| const BasePathWithID = BasePath + "/:" + IDKey | const BasePathWithIDV1 = BasePathV1 + "/:" + IDKey | ||||||
|  | 
 | ||||||
|  | // BasePathWithIDV2 corresponds to a media attachment with the given ID | ||||||
|  | const BasePathWithIDV2 = BasePathV2 + "/:" + IDKey | ||||||
| 
 | 
 | ||||||
| // Module implements the ClientAPIModule interface for media | // Module implements the ClientAPIModule interface for media | ||||||
| type Module struct { | type Module struct { | ||||||
|  | @ -49,8 +55,15 @@ func New(processor processing.Processor) api.ClientModule { | ||||||
| 
 | 
 | ||||||
| // Route satisfies the RESTAPIModule interface | // Route satisfies the RESTAPIModule interface | ||||||
| func (m *Module) Route(s router.Router) error { | func (m *Module) Route(s router.Router) error { | ||||||
| 	s.AttachHandler(http.MethodPost, BasePath, m.MediaCreatePOSTHandler) | 	// v1 handlers | ||||||
| 	s.AttachHandler(http.MethodGet, BasePathWithID, m.MediaGETHandler) | 	s.AttachHandler(http.MethodPost, BasePathV1, m.MediaCreatePOSTHandler) | ||||||
| 	s.AttachHandler(http.MethodPut, BasePathWithID, m.MediaPUTHandler) | 	s.AttachHandler(http.MethodGet, BasePathWithIDV1, m.MediaGETHandler) | ||||||
|  | 	s.AttachHandler(http.MethodPut, BasePathWithIDV1, m.MediaPUTHandler) | ||||||
|  | 
 | ||||||
|  | 	// v2 handlers | ||||||
|  | 	s.AttachHandler(http.MethodPost, BasePathV2, m.MediaCreatePOSTHandler) | ||||||
|  | 	s.AttachHandler(http.MethodGet, BasePathWithIDV2, m.MediaGETHandler) | ||||||
|  | 	s.AttachHandler(http.MethodPut, BasePathWithIDV2, m.MediaPUTHandler) | ||||||
|  | 
 | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -150,7 +150,7 @@ func (suite *MediaCreateTestSuite) TestMediaCreateSuccessful() { | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		panic(err) | 		panic(err) | ||||||
| 	} | 	} | ||||||
| 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePath), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePathV1), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | ||||||
| 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | ||||||
| 	ctx.Request.Header.Set("accept", "application/json") | 	ctx.Request.Header.Set("accept", "application/json") | ||||||
| 
 | 
 | ||||||
|  | @ -234,7 +234,7 @@ func (suite *MediaCreateTestSuite) TestMediaCreateLongDescription() { | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		panic(err) | 		panic(err) | ||||||
| 	} | 	} | ||||||
| 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePath), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePathV1), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | ||||||
| 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | ||||||
| 	ctx.Request.Header.Set("accept", "application/json") | 	ctx.Request.Header.Set("accept", "application/json") | ||||||
| 
 | 
 | ||||||
|  | @ -275,7 +275,7 @@ func (suite *MediaCreateTestSuite) TestMediaCreateTooShortDescription() { | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		panic(err) | 		panic(err) | ||||||
| 	} | 	} | ||||||
| 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePath), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | 	ctx.Request = httptest.NewRequest(http.MethodPost, fmt.Sprintf("http://localhost:8080/%s", mediamodule.BasePathV1), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | ||||||
| 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | ||||||
| 	ctx.Request.Header.Set("accept", "application/json") | 	ctx.Request.Header.Set("accept", "application/json") | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -140,7 +140,7 @@ func (suite *MediaUpdateTestSuite) TestUpdateImage() { | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		panic(err) | 		panic(err) | ||||||
| 	} | 	} | ||||||
| 	ctx.Request = httptest.NewRequest(http.MethodPut, fmt.Sprintf("http://localhost:8080/%s/%s", mediamodule.BasePath, toUpdate.ID), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | 	ctx.Request = httptest.NewRequest(http.MethodPut, fmt.Sprintf("http://localhost:8080/%s/%s", mediamodule.BasePathV1, toUpdate.ID), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | ||||||
| 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | ||||||
| 	ctx.Request.Header.Set("accept", "application/json") | 	ctx.Request.Header.Set("accept", "application/json") | ||||||
| 	ctx.Params = gin.Params{ | 	ctx.Params = gin.Params{ | ||||||
|  | @ -205,7 +205,7 @@ func (suite *MediaUpdateTestSuite) TestUpdateImageShortDescription() { | ||||||
| 	if err != nil { | 	if err != nil { | ||||||
| 		panic(err) | 		panic(err) | ||||||
| 	} | 	} | ||||||
| 	ctx.Request = httptest.NewRequest(http.MethodPut, fmt.Sprintf("http://localhost:8080/%s/%s", mediamodule.BasePath, toUpdate.ID), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | 	ctx.Request = httptest.NewRequest(http.MethodPut, fmt.Sprintf("http://localhost:8080/%s/%s", mediamodule.BasePathV1, toUpdate.ID), bytes.NewReader(buf.Bytes())) // the endpoint we're hitting | ||||||
| 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | 	ctx.Request.Header.Set("Content-Type", w.FormDataContentType()) | ||||||
| 	ctx.Request.Header.Set("accept", "application/json") | 	ctx.Request.Header.Set("accept", "application/json") | ||||||
| 	ctx.Params = gin.Params{ | 	ctx.Params = gin.Params{ | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue