Skip to content
GetUserGroupsCall.java 2.71 KiB
Newer Older
package it.inaf.ia2.gms.client.call;

Sonia Zorba's avatar
Sonia Zorba committed
import it.inaf.ia2.client.BaseCall;
import it.inaf.ia2.gms.client.GmsClient;
import java.net.http.HttpRequest;
Sonia Zorba's avatar
Sonia Zorba committed
import java.net.http.HttpResponse.BodyHandlers;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

Sonia Zorba's avatar
Sonia Zorba committed
public class GetUserGroupsCall extends BaseCall<GmsClient> {
Sonia Zorba's avatar
Sonia Zorba committed
    public GetUserGroupsCall(GmsClient client) {
        super(client);
    }

    /**
     * Returns the groups the user belongs to. If a groupsPrefix (parent group)
     * is specified, the prefix is removed from the list.
     */
    public List<String> getUserGroups(String prefix) {

        List<String> groups = new ArrayList<>();

        HttpRequest groupsRequest = client.newRequest("vo/search")
                .header("Accept", "text/plain")
                .GET()
                .build();

Sonia Zorba's avatar
Sonia Zorba committed
        return client.call(groupsRequest, BodyHandlers.ofInputStream(), 200,
                inputStream -> {
                    try ( Scanner scan = new Scanner(inputStream)) {
                        while (scan.hasNextLine()) {
                            String line = scan.nextLine();
                            if (!line.isEmpty()) {
                                if (prefix == null || prefix.isEmpty()) {
                                    groups.add(line);
                                } else {
                                    if (line.startsWith(prefix)) {
                                        line = line.substring(prefix.length());
                                        groups.add(line);
                                    }
                                }
                            }
                        }
                    }
                    return groups;
Sonia Zorba's avatar
Sonia Zorba committed
                });
    }

    public List<String> getUserGroups(String userId, String prefix) {

        List<String> groups = new ArrayList<>();

        String endpoint = "ws/jwt/membership";
        if (prefix != null && !prefix.isBlank()) {
            endpoint += "/" + prefix;
        }
        endpoint += "?user_id=" + userId;

Sonia Zorba's avatar
Sonia Zorba committed
        HttpRequest groupsRequest = client.newRequest(endpoint)
                .header("Accept", "text/plain")
                .GET()
                .build();

Sonia Zorba's avatar
Sonia Zorba committed
        return client.call(groupsRequest, BodyHandlers.ofInputStream(), 200,
                inputStream -> {
                    try ( Scanner scan = new Scanner(inputStream)) {
                        while (scan.hasNextLine()) {
                            String line = scan.nextLine();
                            if (!line.isEmpty()) {
                                groups.add(line);
                            }
                        }
                    }
                    return groups;
Sonia Zorba's avatar
Sonia Zorba committed
                });