| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2023-01-05 12:43:00 +01:00
										 |  |  |    Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +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/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | package transport | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2022-04-18 17:17:05 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2022-04-18 17:17:05 +02:00
										 |  |  | 	"strings" | 
					
						
							|  |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-18 16:02:19 +00:00
										 |  |  | 	"codeberg.org/gruf/go-byteutil" | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util" | 
					
						
							| 
									
										
										
										
											2022-03-15 15:01:19 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | func (t *transport) BatchDeliver(ctx context.Context, b []byte, recipients []*url.URL) error { | 
					
						
							| 
									
										
										
										
											2022-04-18 17:17:05 +02:00
										 |  |  | 	// concurrently deliver to recipients; for each delivery, buffer the error if it fails | 
					
						
							|  |  |  | 	wg := sync.WaitGroup{} | 
					
						
							|  |  |  | 	errCh := make(chan error, len(recipients)) | 
					
						
							|  |  |  | 	for _, recipient := range recipients { | 
					
						
							|  |  |  | 		wg.Add(1) | 
					
						
							|  |  |  | 		go func(r *url.URL) { | 
					
						
							|  |  |  | 			defer wg.Done() | 
					
						
							|  |  |  | 			if err := t.Deliver(ctx, b, r); err != nil { | 
					
						
							|  |  |  | 				errCh <- err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}(recipient) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// wait until all deliveries have succeeded or failed | 
					
						
							|  |  |  | 	wg.Wait() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// receive any buffered errors | 
					
						
							| 
									
										
										
										
											2023-02-18 16:02:19 +00:00
										 |  |  | 	errs := make([]string, 0, len(errCh)) | 
					
						
							| 
									
										
										
										
											2022-04-18 17:17:05 +02:00
										 |  |  | outer: | 
					
						
							|  |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							|  |  |  | 		case e := <-errCh: | 
					
						
							|  |  |  | 			errs = append(errs, e.Error()) | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			break outer | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if len(errs) > 0 { | 
					
						
							|  |  |  | 		return fmt.Errorf("BatchDeliver: at least one failure: %s", strings.Join(errs, "; ")) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | func (t *transport) Deliver(ctx context.Context, b []byte, to *url.URL) error { | 
					
						
							| 
									
										
										
										
											2022-03-15 15:01:19 +01:00
										 |  |  | 	// if the 'to' host is our own, just skip this delivery since we by definition already have the message! | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	if to.Host == config.GetHost() || to.Host == config.GetAccountDomain() { | 
					
						
							| 
									
										
										
										
											2022-03-15 15:01:19 +01:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	urlStr := to.String() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-18 16:02:19 +00:00
										 |  |  | 	// Use rewindable bytes reader for body. | 
					
						
							|  |  |  | 	var body byteutil.ReadNopCloser | 
					
						
							|  |  |  | 	body.Reset(b) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	req, err := http.NewRequestWithContext(ctx, "POST", urlStr, &body) | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	req.Header.Add("Content-Type", string(apiutil.AppActivityLDJSON)) | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	req.Header.Add("Accept-Charset", "utf-8") | 
					
						
							|  |  |  | 	req.Header.Set("Host", to.Host) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp, err := t.POST(req, b) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	defer resp.Body.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if code := resp.StatusCode; code != http.StatusOK && | 
					
						
							|  |  |  | 		code != http.StatusCreated && code != http.StatusAccepted { | 
					
						
							| 
									
										
										
										
											2023-02-18 16:02:19 +00:00
										 |  |  | 		return fmt.Errorf("POST request to %s failed: %s", urlStr, resp.Status) | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2021-06-27 16:52:18 +02:00
										 |  |  | } |