| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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 gtsmodel | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-28 11:54:22 +00:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"strings" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | // DomainPermission models a domain permission | 
					
						
							|  |  |  | // entry -- block / allow / draft / exclude. | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | type DomainPermission interface { | 
					
						
							|  |  |  | 	GetID() string | 
					
						
							|  |  |  | 	GetCreatedAt() time.Time | 
					
						
							|  |  |  | 	GetUpdatedAt() time.Time | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetUpdatedAt(i time.Time) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetDomain() string | 
					
						
							|  |  |  | 	GetCreatedByAccountID() string | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetCreatedByAccountID(i string) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetCreatedByAccount() *Account | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetCreatedByAccount(i *Account) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetPrivateComment() string | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetPrivateComment(i string) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetPublicComment() string | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetPublicComment(i string) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetObfuscate() *bool | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetObfuscate(i *bool) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetSubscriptionID() string | 
					
						
							| 
									
										
										
										
											2024-11-21 14:09:58 +01:00
										 |  |  | 	SetSubscriptionID(i string) | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	GetType() DomainPermissionType | 
					
						
							| 
									
										
										
										
											2025-01-18 17:55:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Return true if this DomainPermission | 
					
						
							|  |  |  | 	// does not have a subscription id set. | 
					
						
							|  |  |  | 	IsOrphan() bool | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Domain permission type. | 
					
						
							|  |  |  | type DomainPermissionType uint8 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	DomainPermissionUnknown DomainPermissionType = iota | 
					
						
							|  |  |  | 	DomainPermissionBlock                        // Explicitly block a domain. | 
					
						
							|  |  |  | 	DomainPermissionAllow                        // Explicitly allow a domain. | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (p DomainPermissionType) String() string { | 
					
						
							|  |  |  | 	switch p { | 
					
						
							|  |  |  | 	case DomainPermissionBlock: | 
					
						
							|  |  |  | 		return "block" | 
					
						
							|  |  |  | 	case DomainPermissionAllow: | 
					
						
							|  |  |  | 		return "allow" | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return "unknown" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-28 11:54:22 +00:00
										 |  |  | func ParseDomainPermissionType(in string) DomainPermissionType { | 
					
						
							|  |  |  | 	switch strings.ToLower(in) { | 
					
						
							| 
									
										
										
										
											2023-09-21 12:12:04 +02:00
										 |  |  | 	case "block": | 
					
						
							|  |  |  | 		return DomainPermissionBlock | 
					
						
							|  |  |  | 	case "allow": | 
					
						
							|  |  |  | 		return DomainPermissionAllow | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return DomainPermissionUnknown | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |