/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.service; import com.google.inject.Inject; import org.eclipse.che.api.languageserver.shared.model.ExtendedInitializeResult; import org.eclipse.che.api.languageserver.shared.model.LanguageDescription; import org.eclipse.che.api.promises.client.Promise; import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.rest.AsyncRequestFactory; import org.eclipse.che.ide.rest.DtoUnmarshallerFactory; import java.util.List; import static org.eclipse.che.ide.MimeType.APPLICATION_JSON; import static org.eclipse.che.ide.rest.HTTPHeader.ACCEPT; /** * @author Sven Efftinge * @author Anatolii Bazko */ public class LanguageServerRegistryServiceClient { public static final String BASE_URI = "/languageserver"; private final DtoUnmarshallerFactory unmarshallerFactory; private final AsyncRequestFactory asyncRequestFactory; private final AppContext appContext; @Inject public LanguageServerRegistryServiceClient(DtoUnmarshallerFactory unmarshallerFactory, AppContext appContext, AsyncRequestFactory asyncRequestFactory) { this.unmarshallerFactory = unmarshallerFactory; this.appContext = appContext; this.asyncRequestFactory = asyncRequestFactory; } /** * @return all supported languages */ public Promise<List<LanguageDescription>> getSupportedLanguages() { String requestUrl = appContext.getDevMachine().getWsAgentBaseUrl() + BASE_URI + "/supported"; return asyncRequestFactory.createGetRequest(requestUrl) .header(ACCEPT, APPLICATION_JSON) .send(unmarshallerFactory.newListUnmarshaller(LanguageDescription.class)); } /** * @return all registered languages */ public Promise<List<ExtendedInitializeResult>> getRegisteredLanguages() { String requestUrl = appContext.getDevMachine().getWsAgentBaseUrl() + BASE_URI + "/registered"; return asyncRequestFactory.createGetRequest(requestUrl) .header(ACCEPT, APPLICATION_JSON) .send(unmarshallerFactory.newListUnmarshaller(ExtendedInitializeResult.class)); } public void initializeServer(String path) { String requestUrl = appContext.getDevMachine().getWsAgentBaseUrl() + BASE_URI + "/initialize?path=" + path; asyncRequestFactory.createPostRequest(requestUrl, null).send(); } }