FANNG1 commented on code in PR #5841: URL: https://github.com/apache/gravitino/pull/5841#discussion_r1883135127
########## server/src/main/java/org/apache/gravitino/server/web/rest/MetadataObjectCredentialOperations.java: ########## @@ -0,0 +1,100 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.gravitino.server.web.rest; + +import com.codahale.metrics.annotation.ResponseMetered; +import com.codahale.metrics.annotation.Timed; +import java.util.List; +import java.util.Locale; +import javax.inject.Inject; +import javax.servlet.http.HttpServletRequest; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.Response; +import org.apache.gravitino.MetadataObject; +import org.apache.gravitino.MetadataObjects; +import org.apache.gravitino.NameIdentifier; +import org.apache.gravitino.catalog.CredentialOperationDispatcher; +import org.apache.gravitino.credential.Credential; +import org.apache.gravitino.dto.credential.CredentialDTO; +import org.apache.gravitino.dto.responses.CredentialResponse; +import org.apache.gravitino.dto.util.DTOConverters; +import org.apache.gravitino.metrics.MetricNames; +import org.apache.gravitino.server.web.Utils; +import org.apache.gravitino.utils.MetadataObjectUtil; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@Path("/metalakes/{metalake}/objects/{type}/{fullName}/credentials") +public class MetadataObjectCredentialOperations { + + private static final Logger LOG = + LoggerFactory.getLogger(MetadataObjectCredentialOperations.class); + + private CredentialOperationDispatcher dispatcher; + + @SuppressWarnings("unused") + @Context + private HttpServletRequest httpRequest; + + @Inject + public MetadataObjectCredentialOperations(CredentialOperationDispatcher dispatcher) { + this.dispatcher = dispatcher; + } + + @GET + @Produces("application/vnd.gravitino.v1+json") + @Timed(name = "get-credentials." + MetricNames.HTTP_PROCESS_DURATION, absolute = true) + @ResponseMetered(name = "get-credentials", absolute = true) + public Response getCredentials( + @PathParam("metalake") String metalake, + @PathParam("type") String type, + @PathParam("fullName") String fullName) { + LOG.info( + "Received get credentials request for object type: {}, full name: {} under metalake: {}", + type, + fullName, + metalake); + + try { + return Utils.doAs( + httpRequest, + () -> { + MetadataObject object = + MetadataObjects.parse( + fullName, MetadataObject.Type.valueOf(type.toUpperCase(Locale.ROOT))); + + NameIdentifier identifier = MetadataObjectUtil.toEntityIdent(metalake, object); + List<Credential> credentials = dispatcher.getCredentials(identifier); + if (credentials == null) { + return Utils.ok(new CredentialResponse(new CredentialDTO[0])); + } + return Utils.ok( + new CredentialResponse( + DTOConverters.toDTO(credentials.toArray(new Credential[credentials.size()])))); + }); + } catch (Exception e) { Review Comment: yes, the sensitive credential information is not logged. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
