aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/util/PronounDB.java
blob: c38b43a840d3fa09953ee716d84060e4d2510db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * Copyright (C) 2022-2023 NotEnoughUpdates contributors
 *
 * This file is part of NotEnoughUpdates.
 *
 * NotEnoughUpdates is free software: you can redistribute it
 * and/or modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation, either
 * version 3 of the License, or (at your option) any later version.
 *
 * NotEnoughUpdates 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
 */

package io.github.moulberry.notenoughupdates.util;

import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import lombok.Getter;

import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
import java.util.stream.Collectors;

/**
 * pronoundb.org integration
 */
public class PronounDB {
	/**
	 * Returns an Optional, since JVMs can be *very* funky with KeyStore loading
	 */
	public static CompletableFuture<Optional<JsonObject>> performPronouning(String platform, String id) {
		if (isDisabledByRepo()) return CompletableFuture.completedFuture(Optional.empty());
		return NotEnoughUpdates.INSTANCE.manager.apiUtils
			.request()
			.url("https://pronoundb.org/api/v2/lookup")
			.queryArgument("platform", platform)
			.queryArgument("ids", id)
			.requestJson()
			.handle((result, ex) -> Optional.ofNullable(result));
	}

	private static boolean isDisabledByRepo() {
		JsonObject disabled = Constants.DISABLE;
		return disabled != null && disabled.has("pronoundb");
	}

	/**
	 * Get the preferred pronouns from the pronoundb.org api for the specified platform
	 */
	public static CompletableFuture<Optional<PronounChoice>> getPronounsFor(String platform, String name) {
		return performPronouning(platform, name).thenApply(it -> it.flatMap(jsonObject -> parsePronouns(jsonObject, name)));
	}

	private static Optional<PronounChoice> parsePronouns(JsonObject pronounObject, String name) {
		if (pronounObject.has(name)) {

			List<String> set = JsonUtils.transformJsonArrayToList(Utils
				.getElementOrDefault(pronounObject, name + ".sets.en", new JsonArray())
				.getAsJsonArray(), JsonElement::getAsString);

			List<Pronoun> pronouns = set.stream().map(pronounId -> Arrays
				.stream(Pronoun.values())
				.filter(pronoun -> pronoun.id.equals(pronounId))
				.findFirst()
				.orElse(null)).filter(Objects::nonNull).collect(Collectors.toList());

			if (pronouns.isEmpty()) {
				return Optional.empty();
			}

			if (pronouns.size() >= 2) {
				return Optional.of(new PronounChoice(pronouns.get(0), pronouns.get(1)));
			} else {
				return Optional.of(new PronounChoice(pronouns.get(0), null));

			}
		}
		return Optional.empty();
	}

	/**
	 * Get the preferred pronouns from the pronoundb.org api for the minecraft platform
	 */
	public static CompletableFuture<Optional<PronounChoice>> getPronounsFor(UUID minecraftPlayer) {
		return getPronounsFor("minecraft", minecraftPlayer.toString() /* dashed UUID */);
	}

	public static void test(UUID uuid) {
		System.out.println("Pronouning...");
		getPronounsFor(uuid).thenAccept(it -> {
			PronounChoice pronounsFor = it.get();
			System.out.println(pronounsFor.render());
			Utils.addChatMessage(pronounsFor.render());
		});
	}

	@Getter
	public enum Pronoun {
		HE("he", "him", "his"),
		IT("it", "it", "its"),
		SHE("she", "her", "hers"),
		THEY("they", "them", "theirs"),
		ANY("any", "Any pronouns"),
		OTHER("other", "Other"),
		ASK("ask", "Ask for pronouns"),
		AVOID("avoid", "Avoid pronouns");

		private final String id;
		private final String object;
		private final String possessive;
		private final String override;

		Pronoun(String id, String object, String possessive) {
			this.id = id;
			this.object = object;
			this.possessive = possessive;
			this.override = null;
		}

		Pronoun(String id, String override) {
			this.id = id;
			this.override = override;
			this.object = null;
			this.possessive = null;
		}
	}

	@Getter
	public static class PronounChoice {
		private final Pronoun firstPronoun;
		private final Pronoun secondPronoun;

		PronounChoice(Pronoun firstPronoun, Pronoun secondPronoun) {
			this.firstPronoun = firstPronoun;
			this.secondPronoun = secondPronoun;
		}

		/**
		 * Convert the pronoun choice into a readable String for the user
		 *
		 * @see Pronoun
		 */
		public String render() {
			if (firstPronoun.override != null) {
				return firstPronoun.override;
			}

			if (secondPronoun == null) {
				return firstPronoun.id + "/" + firstPronoun.object;
			} else {
				return firstPronoun.id + "/" + secondPronoun.id;
			}
		}
	}

}