Skip to content
Snippets Groups Projects
Commit 8d2a888c authored by Wyatt Nielsen's avatar Wyatt Nielsen
Browse files

refactor p2 changes

parent 58891b92
Branches IBM_vul_fix
No related tags found
1 merge request!6Trusted ibm
Showing
with 32 additions and 616 deletions
......@@ -5,11 +5,11 @@
<parent>
<groupId>org.opengroup.osdu.indexer</groupId>
<artifactId>indexer-service</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</parent>
<artifactId>indexer-core</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>indexer-core</name>
<description>Indexer Service Core</description>
<packaging>jar</packaging>
......@@ -17,13 +17,13 @@
<dependencies>
<dependency>
<groupId>org.opengroup.osdu</groupId>
<artifactId>os-core-common-model</artifactId>
<version>0.0.4</version>
<artifactId>os-core-common</artifactId>
<version>0.0.6</version>
</dependency>
<dependency>
<groupId>org.opengroup.osdu</groupId>
<artifactId>indexer-search-core-lib</artifactId>
<version>1.0.17</version>
<version>1.0.18</version>
</dependency>
<!-- spring boot dependencies -->
......@@ -94,6 +94,13 @@
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.29.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
......@@ -140,6 +147,11 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
......
......@@ -8,7 +8,8 @@ import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfi
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@ComponentScan({"org.opengroup.osdu"})
@Configuration
@ComponentScan({"org.opengroup.osdu.core.common","org.opengroup.osdu.indexer", "org.opengroup.osdu.is"})
@SpringBootApplication(exclude = {ElasticSearchRestHealthIndicatorAutoConfiguration.class, SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class})
public class IndexerApplication {
public static void main( String[] args )
......
......@@ -22,13 +22,13 @@ import io.swagger.annotations.ApiOperation;
import lombok.extern.java.Log;
import org.opengroup.osdu.core.common.model.core.DpsHeaders;
import org.opengroup.osdu.core.common.model.coreis.AppException;
import org.opengroup.osdu.core.common.model.coreis.RecordChangedMessages;
import org.opengroup.osdu.indexer.SwaggerDoc;
import org.opengroup.osdu.core.common.model.indexer.JobStatus;
import org.opengroup.osdu.indexer.model.RecordReindexRequest;
import org.opengroup.osdu.core.common.model.indexer.RecordReindexRequest;
import org.opengroup.osdu.indexer.service.IndexerService;
import org.opengroup.osdu.indexer.service.ReindexService;
import org.opengroup.osdu.core.common.model.indexer.RecordInfo;
import org.opengroup.osdu.is.core.model.RecordChangedMessages;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
......
......@@ -14,10 +14,10 @@
package org.opengroup.osdu.indexer.api;
import org.opengroup.osdu.indexer.logging.AuditLogger;
import org.opengroup.osdu.indexer.model.RecordReindexRequest;
import org.opengroup.osdu.core.common.model.coreis.SearchServiceRole;
import org.opengroup.osdu.core.common.model.indexer.AuditLogger;
import org.opengroup.osdu.core.common.model.indexer.RecordReindexRequest;
import org.opengroup.osdu.indexer.service.ReindexService;
import org.opengroup.osdu.is.core.model.SearchServiceRole;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.PostMapping;
......
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.logging;
import org.opengroup.osdu.core.common.model.coreis.LogId;
import org.springframework.stereotype.Component;
import org.springframework.web.context.annotation.RequestScope;
@Component
@RequestScope
public class ServiceLogId implements LogId {
@Override
public String getRequestLog() {
return "indexer.request";
}
@Override
public String getAuditLog() {
return "indexer.audit";
}
@Override
public String getAppLog() {
return "indexer.app";
}
}
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import com.google.common.base.Strings;
public enum ElasticType {
KEYWORD("keyword"),
TEXT("text"),
DATE("date"),
NESTED("nested"),
OBJECT("object"),
GEO_POINT("geo_point"),
GEO_SHAPE("geo_shape"),
INTEGER("integer"),
LONG("long"),
FLOAT("float"),
DOUBLE("double"),
BOOLEAN("boolean"),
UNDEFINED("undefined");
private final String value;
ElasticType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public static ElasticType forValue(String value) {
if (Strings.isNullOrEmpty(value)) return ElasticType.UNDEFINED;
for (ElasticType type : values()) {
if (type.getValue().equalsIgnoreCase(value)) {
return type;
}
}
return ElasticType.UNDEFINED;
}
}
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.Builder;
import lombok.Data;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
@Data
@Builder
public class IndexSchema {
private String kind;
private String type;
private Map<String, String> dataSchema;
private Map<String, Object> metaSchema;
public ArrayList<String> getSchemaKeysByValue(String value) {
Set<String> keys = new HashSet<>();
for (Map.Entry<String, String> entry : this.getDataSchema().entrySet()) {
if (value.equalsIgnoreCase(entry.getValue())) {
keys.add(entry.getKey());
}
}
return new ArrayList<>(keys);
}
public boolean isDataSchemaMissing() {
return dataSchema == null || dataSchema.isEmpty();
}
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.Data;
import org.hibernate.validator.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
@Data
public class Legal {
@NotNull
@NotEmpty
private String[] legaltags;
@NotNull
@NotEmpty
private String[] otherRelevantDataCountries;
private String status;
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.hibernate.validator.constraints.NotBlank;
import org.hibernate.validator.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.util.Set;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class MultiFieldIndexRequest {
@NotNull
@NotEmpty
private Set<String> indices;
@NotBlank
@Size(min=1, max=10)
@Builder.Default
private String operator = "";
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.Data;
@Data
public class RecordAncestry {
private String[] parents;
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class RecordIds {
private List<String> records;
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.opengroup.osdu.core.common.model.indexer.IndexProgress;
import org.opengroup.osdu.core.common.model.indexer.OperationType;
import java.util.List;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class RecordIndexerPayload {
private List<IndexSchema> schemas;
private List<Record> records;
@Data
public static class Record {
private String id;
private String kind;
private String namespace;
private String type;
private OperationType operationType;
private long version;
private StorageAcl acl;
private IndexProgress indexProgress;
private Legal legal;
private RecordAncestry ancestry;
private Map<String, Object> data;
@JsonIgnore
private boolean schemaMissing = false;
@JsonIgnore
private boolean mappingMismatch = false;
public boolean skippedDataIndexing() {
return schemaMissing || mappingMismatch;
}
}
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class RecordQueryResponse {
private String cursor;
private List<String> results;
}
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.hibernate.validator.constraints.NotBlank;
import org.opengroup.osdu.indexer.SwaggerDoc;
import org.opengroup.osdu.is.core.validation.ValidKind;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class RecordReindexRequest {
@NotBlank(message = SwaggerDoc.KIND_VALIDATION_CAN_NOT_BE_NULL_OR_EMPTY)
@ValidKind
private String kind;
private String cursor;
}
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.*;
import java.util.List;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Records {
@Singular
private List<Entity> records;
private List<String> notFound;
@Singular
private List<ConversionStatus> conversionStatuses;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public static class Entity {
private String id;
private long version;
private String kind;
private StorageAcl acl;
private Legal legal;
private RecordAncestry ancestry;
private Map<String, Object> data;
private List<Object> meta;
}
@Data
@Builder
public static class Type {
private String type;
}
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Schema {
private String kind;
private List<Mapping> schema;
@Data
@Builder
public static class Mapping {
private String path;
private String kind;
}
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
import lombok.Data;
import org.hibernate.validator.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
@Data
public class StorageAcl {
@NotNull
@NotEmpty
private String[] viewers;
@NotNull
@NotEmpty
private String[] owners;
public static String[] flattenAcl(StorageAcl acl) {
Set<String> xAcl = new HashSet<>();
if (acl.getOwners() != null && acl.getOwners().length > 0) xAcl.addAll(Arrays.asList(acl.getOwners()));
if (acl.getViewers() != null && acl.getViewers().length > 0) xAcl.addAll(Arrays.asList(acl.getViewers()));
return xAcl.toArray(new String[xAcl.size()]);
}
}
\ No newline at end of file
// Copyright 2017-2019, Schlumberger
//
// Licensed 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.opengroup.osdu.indexer.model;
public enum StorageType {
LINK("link"),
LINK_ARRAY("[]link"),
BOOLEAN("boolean"),
STRING("string"),
INT("int"),
FLOAT("float"),
DOUBLE("double"),
DOUBLE_ARRAY("[]double"),
LONG("long"),
DATETIME("datetime"),
GEO_POINT("core:dl:geopoint:1.0.0"),
GEO_SHAPE("core:dl:geoshape:1.0.0");
private final String value;
StorageType(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
\ No newline at end of file
......@@ -19,10 +19,10 @@ package org.opengroup.osdu.indexer.service;
import org.elasticsearch.client.ResponseException;
import org.elasticsearch.client.RestHighLevelClient;
import org.opengroup.osdu.core.common.model.coreis.AppException;
import org.opengroup.osdu.core.common.service.is.JaxRsDpsLog;
import org.opengroup.osdu.is.core.model.IndexInfo;
import org.opengroup.osdu.is.core.provider.interfaces.util.IRequestInfo;
import org.opengroup.osdu.is.core.service.IndicesService;
import org.opengroup.osdu.core.common.model.coreis.IndexInfo;
import org.opengroup.osdu.core.common.service.coreis.JaxRsDpsLog;
import org.opengroup.osdu.core.common.spi.coreis.IRequestInfo;
import org.opengroup.osdu.core.common.service.coreis.IndicesService;
import org.opengroup.osdu.is.core.util.ElasticClientHandler;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
......
......@@ -18,11 +18,11 @@ import org.apache.http.HttpStatus;
import org.opengroup.osdu.core.common.model.core.ClusterSettings;
import org.opengroup.osdu.core.common.model.core.TenantInfo;
import org.opengroup.osdu.core.common.model.coreis.AppException;
import org.opengroup.osdu.core.common.service.is.JaxRsDpsLog;
import org.opengroup.osdu.is.core.provider.interfaces.cache.IElasticCredentialsCache;
import org.opengroup.osdu.is.core.provider.interfaces.persistence.ElasticRepository;
import org.opengroup.osdu.core.common.service.coreis.JaxRsDpsLog;
import org.opengroup.osdu.core.common.spi.coreis.ElasticRepository;
import org.opengroup.osdu.core.common.spi.coreis.IElasticCredentialsCache;
import org.opengroup.osdu.core.common.service.coreis.TenantInfoService;
import org.opengroup.osdu.is.core.service.ElasticSettingService;
import org.opengroup.osdu.is.core.service.TenantInfoService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import javax.inject.Inject;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment