use of com.thinkbiganalytics.feedmgr.rest.model.FeedCategory in project kylo by Teradata.
the class InMemoryFeedManagerFeedService method getFeedSummaryForCategory.
public List<FeedSummary> getFeedSummaryForCategory(String categoryId) {
List<FeedSummary> summaryList = new ArrayList<>();
FeedCategory category = categoryProvider.getCategoryById(categoryId);
if (category != null && category.getFeeds() != null) {
summaryList.addAll(category.getFeeds());
}
return summaryList;
}
use of com.thinkbiganalytics.feedmgr.rest.model.FeedCategory in project kylo by Teradata.
the class FeedImporter method validateEntityAccess.
private boolean validateEntityAccess(FeedMetadata existingFeed, String feedCategory) {
FeedMetadata importingFeed = importFeed.getFeedToImport();
if (existingFeed != null) {
FeedMetadata userAccessFeed = metadataAccess.read(() -> {
return metadataService.getFeedByName(feedCategory, importingFeed.getSystemFeedName());
});
if (userAccessFeed == null || !userAccessFeed.hasAction(FeedAccessControl.EDIT_DETAILS.getSystemName())) {
// error
importFeed.setValid(false);
if (importFeed.getTemplate() == null) {
ImportTemplate importTemplate = new ImportTemplate(importFeed.getFileName());
importFeed.setTemplate(importTemplate);
}
String msg = "Access Denied. You do not have access to edit this feed.";
importFeed.getImportOptions().addErrorMessage(ImportComponent.FEED_DATA, msg);
importFeed.addErrorMessage(existingFeed, msg);
importFeed.setValid(false);
return false;
} else {
return true;
}
} else {
// ensure the user can create under the category
Category category = metadataAccess.read(() -> {
return categoryProvider.findBySystemName(feedCategory);
}, MetadataAccess.SERVICE);
if (category == null) {
// ensure the user has functional access to create categories
boolean hasPermission = accessController.hasPermission(AccessController.SERVICES, FeedServicesAccessControl.EDIT_CATEGORIES);
if (!hasPermission) {
String msg = "Access Denied. The category for this feed," + feedCategory + ", doesn't exist and you do not have access to create a new category.";
importFeed.getImportOptions().addErrorMessage(ImportComponent.FEED_DATA, msg);
importFeed.addErrorMessage(existingFeed, msg);
importFeed.setValid(false);
return false;
}
return true;
} else {
// if the feed is new ensure the user has write access to create feeds
return metadataAccess.read(() -> {
// Query for Category and ensure the user has access to create feeds on that category
Category domainCategory = categoryProvider.findBySystemName(feedCategory);
if (domainCategory == null || (!domainCategory.getAllowedActions().hasPermission(CategoryAccessControl.CREATE_FEED))) {
String msg = "Access Denied. You do not have access to create feeds under the category " + feedCategory + ". Attempt made to create feed " + FeedNameUtil.fullName(feedCategory, importingFeed.getSystemFeedName()) + ".";
importFeed.getImportOptions().addErrorMessage(ImportComponent.FEED_DATA, msg);
importFeed.addErrorMessage(existingFeed, msg);
importFeed.setValid(false);
return false;
}
/*
TemplateAccessControl.CREATE_FEED permission is not being used right now.
Uncomment this code once/if we should be checking it
// Query for Template and ensure the user has access to create feeds
final RegisteredTemplate domainTemplate = registeredTemplateService.findRegisteredTemplate(
new RegisteredTemplateRequest.Builder().templateName(importingFeed.getTemplateName()).isFeedEdit(true).build());
if (domainTemplate != null && !registeredTemplateService.hasTemplatePermission(domainTemplate.getId(), TemplateAccessControl.CREATE_FEED)) {
final String msg = "Access Denied. You do not have access to create feeds using the template " + importingFeed.getTemplateName()
+ ". Attempt made to create feed " + FeedNameUtil.fullName(feedCategory, importingFeed.getSystemFeedName()) + ".";
feed.getImportOptions().addErrorMessage(ImportComponent.FEED_DATA, msg);
feed.addErrorMessage(existingFeed, msg);
feed.setValid(false);
return false;
}
*/
return true;
});
}
}
}
use of com.thinkbiganalytics.feedmgr.rest.model.FeedCategory in project kylo by Teradata.
the class FeedImporter method validate.
public ImportFeed validate() {
UploadProgressMessage feedImportStatusMessage = uploadProgressService.addUploadStatus(importFeedOptions.getUploadKey(), "Validating Feed import.");
try {
init();
// read the JSON into the Feed object
FeedMetadata metadata = importFeed.getFeedToImport();
// validate the incoming category exists
validateFeedCategory();
// verify if we should overwrite the feed if it already exists
String feedCategory = StringUtils.isNotBlank(importFeedOptions.getCategorySystemName()) ? importFeedOptions.getCategorySystemName() : metadata.getSystemCategoryName();
// query for this feed.
// first read in the feed as a service account
FeedMetadata existingFeed = metadataAccess.read(() -> {
return metadataService.getFeedByName(feedCategory, metadata.getSystemFeedName());
}, MetadataAccess.SERVICE);
if (!validateOverwriteExistingFeed(existingFeed)) {
// exit
return importFeed;
}
if (accessController.isEntityAccessControlled()) {
if (!validateEntityAccess(existingFeed, feedCategory)) {
return importFeed;
}
}
// sensitive properties
if (!validateSensitiveProperties()) {
return importFeed;
}
// Valid data sources
if (!validateUserDatasources()) {
return importFeed;
}
// UploadProgressMessage statusMessage = uploadProgressService.addUploadStatus(options.getUploadKey(),"Validating the template data");
TemplateImporter templateImporter = templateImporterFactory.apply(importFeed.getFileName(), file, importFeedOptions);
ImportTemplate importTemplate = templateImporter.validate();
// need to set the importOptions back to the feed options
// find importOptions for the Template and add them back to the set of options
// importFeed.getImportOptions().updateOptions(importTemplate.getImportOptions().getImportComponentOptions());
importFeed.setTemplate(importTemplate);
// statusMessage.update("Validated the template data",importTemplate.isValid());
if (!importTemplate.isValid()) {
importFeed.setValid(false);
List<String> errorMessages = importTemplate.getTemplateResults().getAllErrors().stream().map(nifiError -> nifiError.getMessage()).collect(Collectors.toList());
if (!errorMessages.isEmpty()) {
for (String msg : errorMessages) {
importFeed.addErrorMessage(metadata, msg);
}
}
}
// statusMessage = uploadProgressService.addUploadStatus(options.getUploadKey(),"Validation complete: the feed is "+(importFeed.isValid() ? "valid" : "invalid"),true,importFeed.isValid());
} catch (Exception e) {
feedImportStatusMessage.update("Validation error. Feed import error: " + e.getMessage(), false);
throw new UnsupportedOperationException("Error importing template " + fileName + ". " + e.getMessage());
}
feedImportStatusMessage.update("Validated Feed import.", importFeed.isValid());
return this.importFeed;
}
use of com.thinkbiganalytics.feedmgr.rest.model.FeedCategory in project kylo by Teradata.
the class FeedImporter method validateFeedCategory.
private boolean validateFeedCategory() {
FeedMetadata metadata = importFeed.getFeedToImport();
boolean valid = true;
if (StringUtils.isNotBlank(importFeedOptions.getCategorySystemName())) {
UploadProgressMessage statusMessage = uploadProgressService.addUploadStatus(importFeedOptions.getUploadKey(), "Validating the newly specified category. Ensure " + importFeedOptions.getCategorySystemName() + " exists.");
FeedCategory optionsCategory = metadataService.getCategoryBySystemName(importFeedOptions.getCategorySystemName());
if (optionsCategory == null) {
importFeed.setValid(false);
statusMessage.update("Validation Error. The category " + importFeedOptions.getCategorySystemName() + " does not exist, or you dont have access to it.", false);
valid = false;
} else {
if (valid) {
metadata.getCategory().setSystemName(importFeedOptions.getCategorySystemName());
statusMessage.update("Validated. The category " + importFeedOptions.getCategorySystemName() + " exists.", true);
}
}
}
uploadProgressService.completeSection(importFeedOptions, ImportSection.Section.VALIDATE_FEED_CATEGORY);
return valid;
}
use of com.thinkbiganalytics.feedmgr.rest.model.FeedCategory in project kylo by Teradata.
the class PropertyExpressionResolverTest method testFeedMetadataProperties.
@Test
public void testFeedMetadataProperties() {
FeedMetadata metadata = new FeedMetadata();
metadata.setSystemFeedName("feedSystemName");
metadata.setCategory(new FeedCategory());
metadata.setTable(new TableSetup());
metadata.getTable().setSourceTableSchema(new DefaultTableSchema());
metadata.getTable().setTableSchema(new DefaultTableSchema());
metadata.getTable().getSourceTableSchema().setName("sourceTableName");
metadata.getTable().getTableSchema().setName("tableSchemaName");
final NifiProperty prop1 = createProperty("${metadata.table.sourceTableSchema.name}");
Assert.assertTrue(resolver.resolveExpression(metadata, prop1));
Assert.assertEquals("sourceTableName", prop1.getValue());
}
Aggregations