SquirrelID is a Java library for working with Mojang profiles.
- The resolution of UUIDs from player names in bulk.
- "Last seen" UUID -> name cache implementations.
- Available as SQLite-backed or in-memory.
- Thread-safe implementations.
- Optional parallel fetching of UUIDs from player names.
ProfileService resolver = HttpRepositoryService.forMinecraft();
Profile profile = resolver.findByName("Notch"); // May be null
Or in bulk:
ImmutableList<Profile> profiles = resolver.findAllByName(Arrays.asList("Notch", "jeb_"));
And in parallel:
int nThreads = 2; // Be kind
ProfileService resolver = HttpRepositoryService.forMinecraft();
ParallelProfileService service = new ParallelProfileService(resolver, nThreads);
service.findAllByName(Arrays.asList("Notch", "jeb_"), new Predicate<Profile>() {
@Override
public boolean apply(Profile input) {
// Do something with the input
return false;
}
});
Choose a cache implementation:
File file = new File("cache.sqlite");
SQLiteCache cache = new SQLiteCache(file);
Store entries:
UUID uuid = UUID.fromString("069a79f4-44e9-4726-a5be-fca90e38aaf5");
cache.put(new Profile(uuid, "Notch"));
Get the last known profile:
Profile profile = cache.getIfPresent(uuid); // May be null
Bulk get last known profile:
ImmutableMap<UUID, Profile> results = cache.getAllPresent(Arrays.asList(uuid));
Profile profile = results.get(uuid); // May be null
Cache all resolved names:
ProfileCache cache = new HashMapCache(); // Memory cache
CacheForwardingService resolver = new CacheForwardingService(
HttpRepositoryService.forMinecraft(),
cache);
Profile profile = resolver.findByName("Notch");
Profile cachedProfile = cache.getIfPresent(profile.getUniqueId());
Note: We recommend shading or shadowing in SquirrelID for distribution, relocating the com.sk89q.squirrelid
package to an internal package without your project.
<repositories>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>squirrelid</artifactId>
<version>0.1.0</version>
<scope>compile</scope>
<type>jar</type>
</dependency>
</dependencies>
repositories {
maven { url "http://maven.sk89q.com/repo/" }
}
dependencies {
compile 'com.sk89q:squirrelid:0.1.0'
}
Use Maven 3 to compile SquirrelID.
mvn clean package
Some of the unit tests are actually integration tests and therefore make contact with Mojang's servers. That means that the tests may take a non-trivial amount of time to complete and may even fail if the Mojang profile servers are unreachable. In the future, these tests may be moved so that this becomes no longer an issue.
You can disable tests with:
mvn -DskipTests=true clean package
SquirrelID is available under the GNU Lesser General Public License.
We happily accept contributions, especially through pull requests on GitHub.
- Visit our website
- IRC channel (#sk89q on irc.esper.net)