| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |    the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |    (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |    GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |    along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package status | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"codeberg.org/gruf/go-kv" | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | // StatusBoostedByGETHandler swagger:operation GET /api/v1/statuses/{id}/reblogged_by statusBoostedBy | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // View accounts that have reblogged/boosted the target status. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // --- | 
					
						
							|  |  |  | // tags: | 
					
						
							|  |  |  | // - statuses | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // produces: | 
					
						
							|  |  |  | // - application/json | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // parameters: | 
					
						
							|  |  |  | // - name: id | 
					
						
							|  |  |  | //   type: string | 
					
						
							|  |  |  | //   description: Target status ID. | 
					
						
							|  |  |  | //   in: path | 
					
						
							|  |  |  | //   required: true | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // security: | 
					
						
							|  |  |  | // - OAuth2 Bearer: | 
					
						
							|  |  |  | //   - read:accounts | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // responses: | 
					
						
							|  |  |  | //   '200': | 
					
						
							|  |  |  | //     schema: | 
					
						
							|  |  |  | //       type: array | 
					
						
							|  |  |  | //       items: | 
					
						
							|  |  |  | //         "$ref": "#/definitions/account" | 
					
						
							|  |  |  | //   '400': | 
					
						
							|  |  |  | //      description: bad request | 
					
						
							|  |  |  | //   '401': | 
					
						
							|  |  |  | //      description: unauthorized | 
					
						
							|  |  |  | //   '403': | 
					
						
							|  |  |  | //      description: forbidden | 
					
						
							|  |  |  | //   '404': | 
					
						
							|  |  |  | //      description: not found | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | func (m *Module) StatusBoostedByGETHandler(c *gin.Context) { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	l := log.WithFields(kv.Fields{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		{"request_uri", c.Request.RequestURI}, | 
					
						
							|  |  |  | 		{"user_agent", c.Request.UserAgent()}, | 
					
						
							|  |  |  | 		{"origin_ip", c.ClientIP()}, | 
					
						
							|  |  |  | 	}...) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	l.Debugf("entering function") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	authed, err := oauth.Authed(c, true, true, true, true) // we don't really need an app here but we want everything else | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		l.Errorf("error authing status boosted by request: %s", err) | 
					
						
							|  |  |  | 		c.JSON(http.StatusBadRequest, gin.H{"error": "not authed"}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	targetStatusID := c.Param(IDKey) | 
					
						
							|  |  |  | 	if targetStatusID == "" { | 
					
						
							|  |  |  | 		c.JSON(http.StatusBadRequest, gin.H{"error": "no status id provided"}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 	apiAccounts, errWithCode := m.processor.StatusBoostedBy(c.Request.Context(), authed, targetStatusID) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		api.ErrorHandler(c, errWithCode, m.processor.InstanceGet) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-04 15:24:19 +02:00
										 |  |  | 	c.JSON(http.StatusOK, apiAccounts) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | } |