Java Code Examples for org.apache.nifi.encrypt.StringEncryptor#createEncryptor()
The following examples show how to use
org.apache.nifi.encrypt.StringEncryptor#createEncryptor() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PopularVoteFlowElectionFactoryBean.java From localization_nifi with Apache License 2.0 | 6 votes |
@Override public PopularVoteFlowElection getObject() throws Exception { final String maxWaitTime = properties.getFlowElectionMaxWaitTime(); long maxWaitMillis; try { maxWaitMillis = FormatUtils.getTimeDuration(maxWaitTime, TimeUnit.MILLISECONDS); } catch (final Exception e) { logger.warn("Failed to parse value of property '{}' as a valid time period. Value was '{}'. Ignoring this value and using the default value of '{}'", NiFiProperties.FLOW_ELECTION_MAX_WAIT_TIME, maxWaitTime, NiFiProperties.DEFAULT_FLOW_ELECTION_MAX_WAIT_TIME); maxWaitMillis = FormatUtils.getTimeDuration(NiFiProperties.DEFAULT_FLOW_ELECTION_MAX_WAIT_TIME, TimeUnit.MILLISECONDS); } final Integer maxNodes = properties.getFlowElectionMaxCandidates(); final StringEncryptor encryptor = StringEncryptor.createEncryptor(properties); final FingerprintFactory fingerprintFactory = new FingerprintFactory(encryptor); return new PopularVoteFlowElection(maxWaitMillis, TimeUnit.MILLISECONDS, maxNodes, fingerprintFactory); }
Example 2
Source File: Cluster.java From localization_nifi with Apache License 2.0 | 6 votes |
public Node createNode() { final Map<String, String> addProps = new HashMap<>(); addProps.put(NiFiProperties.ZOOKEEPER_CONNECT_STRING, getZooKeeperConnectString()); addProps.put(NiFiProperties.CLUSTER_IS_NODE, "true"); final NiFiProperties nifiProperties = NiFiProperties.createBasicNiFiProperties("src/test/resources/conf/nifi.properties", addProps); final FingerprintFactory fingerprintFactory = new FingerprintFactory(StringEncryptor.createEncryptor(nifiProperties)); final FlowElection flowElection = new PopularVoteFlowElection(flowElectionTimeoutMillis, TimeUnit.MILLISECONDS, flowElectionMaxNodes, fingerprintFactory); final Node node = new Node(nifiProperties, flowElection); node.start(); nodes.add(node); return node; }
Example 3
Source File: PopularVoteFlowElectionFactoryBean.java From nifi with Apache License 2.0 | 6 votes |
@Override public PopularVoteFlowElection getObject() { final String maxWaitTime = properties.getFlowElectionMaxWaitTime(); long maxWaitMillis; try { maxWaitMillis = FormatUtils.getTimeDuration(maxWaitTime, TimeUnit.MILLISECONDS); } catch (final Exception e) { logger.warn("Failed to parse value of property '{}' as a valid time period. Value was '{}'. Ignoring this value and using the default value of '{}'", NiFiProperties.FLOW_ELECTION_MAX_WAIT_TIME, maxWaitTime, NiFiProperties.DEFAULT_FLOW_ELECTION_MAX_WAIT_TIME); maxWaitMillis = FormatUtils.getTimeDuration(NiFiProperties.DEFAULT_FLOW_ELECTION_MAX_WAIT_TIME, TimeUnit.MILLISECONDS); } final Integer maxNodes = properties.getFlowElectionMaxCandidates(); final String algorithm = properties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = properties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = properties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); final StringEncryptor encryptor = StringEncryptor.createEncryptor(algorithm, provider, password); final FingerprintFactory fingerprintFactory = new FingerprintFactory(encryptor, extensionManager); return new PopularVoteFlowElection(maxWaitMillis, TimeUnit.MILLISECONDS, maxNodes, fingerprintFactory); }
Example 4
Source File: Cluster.java From nifi with Apache License 2.0 | 6 votes |
public Node createNode() { final Map<String, String> addProps = new HashMap<>(); addProps.put(NiFiProperties.ZOOKEEPER_CONNECT_STRING, getZooKeeperConnectString()); addProps.put(NiFiProperties.CLUSTER_IS_NODE, "true"); final NiFiProperties nifiProperties = NiFiProperties.createBasicNiFiProperties("src/test/resources/conf/nifi.properties", addProps); final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); final StringEncryptor encryptor = StringEncryptor.createEncryptor(algorithm, provider, password); final ExtensionDiscoveringManager extensionManager = new StandardExtensionDiscoveringManager(); final FingerprintFactory fingerprintFactory = new FingerprintFactory(encryptor, extensionManager); final FlowElection flowElection = new PopularVoteFlowElection(flowElectionTimeoutMillis, TimeUnit.MILLISECONDS, flowElectionMaxNodes, fingerprintFactory); final Node node = new Node(nifiProperties, extensionManager, flowElection); node.start(); nodes.add(node); return node; }
Example 5
Source File: Node.java From nifi with Apache License 2.0 | 5 votes |
/** * Utility method which accepts {@link NiFiProperties} object but calls {@link StringEncryptor#createEncryptor(String, String, String)} with extracted properties. * * @param nifiProperties the NiFiProperties object * @return the StringEncryptor */ private StringEncryptor createEncryptorFromProperties(NiFiProperties nifiProperties) { final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); return StringEncryptor.createEncryptor(algorithm, provider, password); }
Example 6
Source File: TestPopularVoteFlowElection.java From nifi with Apache License 2.0 | 5 votes |
/** * Utility method which accepts {@link NiFiProperties} object but calls {@link StringEncryptor#createEncryptor(String, String, String)} with extracted properties. * * @param nifiProperties the NiFiProperties object * @return the StringEncryptor */ private StringEncryptor createEncryptorFromProperties(NiFiProperties nifiProperties) { final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY, "nififtw!"); return StringEncryptor.createEncryptor(algorithm, provider, password); }
Example 7
Source File: StandardFlowSerializerTest.java From nifi with Apache License 2.0 | 5 votes |
@Before public void setUp() throws Exception { final FlowFileEventRepository flowFileEventRepo = Mockito.mock(FlowFileEventRepository.class); final AuditService auditService = Mockito.mock(AuditService.class); final Map<String, String> otherProps = new HashMap<>(); otherProps.put(NiFiProperties.PROVENANCE_REPO_IMPLEMENTATION_CLASS, MockProvenanceRepository.class.getName()); otherProps.put("nifi.remote.input.socket.port", ""); otherProps.put("nifi.remote.input.secure", ""); final NiFiProperties nifiProperties = NiFiProperties.createBasicNiFiProperties(propsFile, otherProps); final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); final StringEncryptor encryptor = StringEncryptor.createEncryptor(algorithm, provider, password); // use the system bundle systemBundle = SystemBundle.create(nifiProperties); extensionManager = new StandardExtensionDiscoveringManager(); extensionManager.discoverExtensions(systemBundle, Collections.emptySet()); final AbstractPolicyBasedAuthorizer authorizer = new MockPolicyBasedAuthorizer(); final VariableRegistry variableRegistry = new FileBasedVariableRegistry(nifiProperties.getVariableRegistryPropertiesPaths()); final BulletinRepository bulletinRepo = Mockito.mock(BulletinRepository.class); controller = FlowController.createStandaloneInstance(flowFileEventRepo, nifiProperties, authorizer, auditService, encryptor, bulletinRepo, variableRegistry, Mockito.mock(FlowRegistryClient.class), extensionManager); serializer = new StandardFlowSerializer(encryptor); }
Example 8
Source File: TestFlowController.java From nifi with Apache License 2.0 | 5 votes |
/** * Utility method which accepts {@link NiFiProperties} object but calls {@link StringEncryptor#createEncryptor(String, String, String)} with extracted properties. * * @param nifiProperties the NiFiProperties object * @return the StringEncryptor */ private StringEncryptor createEncryptorFromProperties(NiFiProperties nifiProperties) { final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); return StringEncryptor.createEncryptor(algorithm, provider, password); }
Example 9
Source File: FingerprintFactoryTest.java From localization_nifi with Apache License 2.0 | 4 votes |
@Before public void setup() { nifiProperties = getNiFiProperties(); encryptor = StringEncryptor.createEncryptor(nifiProperties); fingerprinter = new FingerprintFactory(encryptor); }
Example 10
Source File: TestFlowController.java From localization_nifi with Apache License 2.0 | 4 votes |
@Before public void setup() { System.setProperty(NiFiProperties.PROPERTIES_FILE_PATH, TestFlowController.class.getResource("/nifi.properties").getFile()); flowFileEventRepo = Mockito.mock(FlowFileEventRepository.class); auditService = Mockito.mock(AuditService.class); final Map<String, String> otherProps = new HashMap<>(); otherProps.put(NiFiProperties.PROVENANCE_REPO_IMPLEMENTATION_CLASS, MockProvenanceRepository.class.getName()); otherProps.put("nifi.remote.input.socket.port", ""); otherProps.put("nifi.remote.input.secure", ""); nifiProperties = NiFiProperties.createBasicNiFiProperties(null, otherProps); encryptor = StringEncryptor.createEncryptor(nifiProperties); User user1 = new User.Builder().identifier("user-id-1").identity("user-1").build(); User user2 = new User.Builder().identifier("user-id-2").identity("user-2").build(); Group group1 = new Group.Builder().identifier("group-id-1").name("group-1").addUser(user1.getIdentifier()).build(); Group group2 = new Group.Builder().identifier("group-id-2").name("group-2").build(); AccessPolicy policy1 = new AccessPolicy.Builder() .identifier("policy-id-1") .resource("resource1") .action(RequestAction.READ) .addUser(user1.getIdentifier()) .addUser(user2.getIdentifier()) .build(); AccessPolicy policy2 = new AccessPolicy.Builder() .identifier("policy-id-2") .resource("resource2") .action(RequestAction.READ) .addGroup(group1.getIdentifier()) .addGroup(group2.getIdentifier()) .addUser(user1.getIdentifier()) .addUser(user2.getIdentifier()) .build(); Set<Group> groups1 = new LinkedHashSet<>(); groups1.add(group1); groups1.add(group2); Set<User> users1 = new LinkedHashSet<>(); users1.add(user1); users1.add(user2); Set<AccessPolicy> policies1 = new LinkedHashSet<>(); policies1.add(policy1); policies1.add(policy2); authorizer = new MockPolicyBasedAuthorizer(groups1, users1, policies1); variableRegistry = new FileBasedVariableRegistry(nifiProperties.getVariableRegistryPropertiesPaths()); bulletinRepo = Mockito.mock(BulletinRepository.class); controller = FlowController.createStandaloneInstance(flowFileEventRepo, nifiProperties, authorizer, auditService, encryptor, bulletinRepo, variableRegistry); standardFlowSynchronizer = new StandardFlowSynchronizer(StringEncryptor.createEncryptor(nifiProperties), nifiProperties); }
Example 11
Source File: MiNiFiServer.java From nifi-minifi with Apache License 2.0 | 4 votes |
public void start() { try { logger.info("Loading Flow..."); FlowFileEventRepository flowFileEventRepository = new RingBufferEventRepository(5); AuditService auditService = new StandardAuditService(); Authorizer authorizer = new Authorizer() { @Override public AuthorizationResult authorize(AuthorizationRequest request) throws AuthorizationAccessException { return AuthorizationResult.approved(); } @Override public void initialize(AuthorizerInitializationContext initializationContext) throws AuthorizerCreationException { // do nothing } @Override public void onConfigured(AuthorizerConfigurationContext configurationContext) throws AuthorizerCreationException { // do nothing } @Override public void preDestruction() throws AuthorizerDestructionException { // do nothing } }; final String sensitivePropAlgorithmVal = props.getProperty(StringEncryptor.NF_SENSITIVE_PROPS_ALGORITHM); final String sensitivePropProviderVal = props.getProperty(StringEncryptor.NF_SENSITIVE_PROPS_PROVIDER); final String sensitivePropValueNifiPropVar = props.getProperty(StringEncryptor.NF_SENSITIVE_PROPS_KEY, DEFAULT_SENSITIVE_PROPS_KEY); StringEncryptor encryptor = StringEncryptor.createEncryptor(sensitivePropAlgorithmVal, sensitivePropProviderVal, sensitivePropValueNifiPropVar); VariableRegistry variableRegistry = new FileBasedVariableRegistry(props.getVariableRegistryPropertiesPaths()); BulletinRepository bulletinRepository = new VolatileBulletinRepository(); FlowController flowController = FlowController.createStandaloneInstance( flowFileEventRepository, props, authorizer, auditService, encryptor, bulletinRepository, variableRegistry, new StandardFlowRegistryClient() ); flowService = StandardFlowService.createStandaloneInstance( flowController, props, encryptor, null, // revision manager authorizer); // start and load the flow flowService.start(); flowService.load(null); flowController.onFlowInitialized(true); flowController.getGroup(flowController.getRootGroupId()).startProcessing(); this.flowController = flowController; logger.info("Flow loaded successfully."); } catch (Exception e) { // ensure the flow service is terminated if (flowService != null && flowService.isRunning()) { flowService.stop(false); } startUpFailure(new Exception("Unable to load flow due to: " + e, e)); } }
Example 12
Source File: FrameworkIntegrationTest.java From nifi with Apache License 2.0 | 4 votes |
protected final void initialize(final NiFiProperties nifiProperties) throws IOException { this.nifiProperties = nifiProperties; final FlowFileEventRepository flowFileEventRepository = new RingBufferEventRepository(5); final BulletinRepository bulletinRepo = new VolatileBulletinRepository(); flowEngine = new FlowEngine(4, "unit test flow engine"); extensionManager = new DirectInjectionExtensionManager(); extensionManager.injectExtensionType(FlowFileRepository.class, WriteAheadFlowFileRepository.class); extensionManager.injectExtensionType(ContentRepository.class, FileSystemRepository.class); extensionManager.injectExtensionType(ProvenanceRepository.class, WriteAheadProvenanceRepository.class); extensionManager.injectExtensionType(StateProvider.class, WriteAheadLocalStateProvider.class); extensionManager.injectExtensionType(ComponentStatusRepository.class, VolatileComponentStatusRepository.class); extensionManager.injectExtensionType(FlowFileSwapManager.class, FileSystemSwapManager.class); extensionManager.injectExtensionType(Processor.class, BiConsumerProcessor.class); extensionManager.injectExtensionType(Processor.class, GenerateProcessor.class); extensionManager.injectExtensionType(Processor.class, TerminateOnce.class); extensionManager.injectExtensionType(Processor.class, TerminateAll.class); extensionManager.injectExtensionType(Processor.class, NopProcessor.class); extensionManager.injectExtensionType(Processor.class, UsernamePasswordProcessor.class); injectExtensionTypes(extensionManager); systemBundle = SystemBundle.create(nifiProperties); extensionManager.discoverExtensions(systemBundle, Collections.emptySet()); final StringEncryptor encryptor = StringEncryptor.createEncryptor("PBEWITHMD5AND256BITAES-CBC-OPENSSL", "BC", "unit-test"); final Authorizer authorizer = new AlwaysAuthorizedAuthorizer(); final AuditService auditService = new NopAuditService(); if (isClusteredTest()) { final File zookeeperDir = new File("target/state/zookeeper"); final File version2Dir = new File(zookeeperDir, "version-2"); if (!version2Dir.exists()) { assertTrue(version2Dir.mkdirs()); } final File[] children = version2Dir.listFiles(); if (children != null) { for (final File file : children) { FileUtils.deleteFile(file, true); } } clusterCoordinator = Mockito.mock(ClusterCoordinator.class); final HeartbeatMonitor heartbeatMonitor = Mockito.mock(HeartbeatMonitor.class); final NodeProtocolSender protocolSender = Mockito.mock(NodeProtocolSender.class); final LeaderElectionManager leaderElectionManager = new CuratorLeaderElectionManager(2, nifiProperties); final NodeIdentifier localNodeId = new NodeIdentifier(UUID.randomUUID().toString(), "localhost", 8111, "localhost", 8081, "localhost", 8082, "localhost", 8083, 8084, false, Collections.emptySet()); final NodeIdentifier node2Id = new NodeIdentifier(UUID.randomUUID().toString(), "localhost", 8222, "localhost", 8081, "localhost", 8082, "localhost", 8083, 8084, false, Collections.emptySet()); final Set<NodeIdentifier> nodeIdentifiers = new HashSet<>(); nodeIdentifiers.add(localNodeId); nodeIdentifiers.add(node2Id); Mockito.when(clusterCoordinator.getNodeIdentifiers()).thenReturn(nodeIdentifiers); Mockito.when(clusterCoordinator.getLocalNodeIdentifier()).thenReturn(localNodeId); flowController = FlowController.createClusteredInstance(flowFileEventRepository, nifiProperties, authorizer, auditService, encryptor, protocolSender, bulletinRepo, clusterCoordinator, heartbeatMonitor, leaderElectionManager, VariableRegistry.ENVIRONMENT_SYSTEM_REGISTRY, flowRegistryClient, extensionManager); flowController.setClustered(true, UUID.randomUUID().toString()); flowController.setNodeId(localNodeId); flowController.setConnectionStatus(new NodeConnectionStatus(localNodeId, NodeConnectionState.CONNECTED)); } else { flowController = FlowController.createStandaloneInstance(flowFileEventRepository, nifiProperties, authorizer, auditService, encryptor, bulletinRepo, VariableRegistry.ENVIRONMENT_SYSTEM_REGISTRY, flowRegistryClient, extensionManager); } processScheduler = new StandardProcessScheduler(flowEngine, flowController, encryptor, flowController.getStateManagerProvider(), nifiProperties); final RepositoryContextFactory repositoryContextFactory = flowController.getRepositoryContextFactory(); final SchedulingAgent timerDrivenSchedulingAgent = new TimerDrivenSchedulingAgent(flowController, flowEngine, repositoryContextFactory, encryptor, nifiProperties); processScheduler.setSchedulingAgent(SchedulingStrategy.TIMER_DRIVEN, timerDrivenSchedulingAgent); flowFileSwapManager = flowController.createSwapManager(); resourceClaimManager = flowController.getResourceClaimManager(); }
Example 13
Source File: TestStandardReportingContext.java From nifi with Apache License 2.0 | 4 votes |
@Before public void setup() { flowFileEventRepo = Mockito.mock(FlowFileEventRepository.class); auditService = Mockito.mock(AuditService.class); final Map<String, String> otherProps = new HashMap<>(); otherProps.put(NiFiProperties.PROVENANCE_REPO_IMPLEMENTATION_CLASS, MockProvenanceRepository.class.getName()); otherProps.put("nifi.remote.input.socket.port", ""); otherProps.put("nifi.remote.input.secure", ""); nifiProperties = NiFiProperties.createBasicNiFiProperties(propsFile, otherProps); final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); if (StringUtils.isBlank(password)) { password = DEFAULT_SENSITIVE_PROPS_KEY; } encryptor = StringEncryptor.createEncryptor(algorithm, provider, password); // use the system bundle systemBundle = SystemBundle.create(nifiProperties); extensionManager = new StandardExtensionDiscoveringManager(); extensionManager.discoverExtensions(systemBundle, Collections.emptySet()); User user1 = new User.Builder().identifier("user-id-1").identity("user-1").build(); User user2 = new User.Builder().identifier("user-id-2").identity("user-2").build(); Group group1 = new Group.Builder().identifier("group-id-1").name("group-1").addUser(user1.getIdentifier()).build(); Group group2 = new Group.Builder().identifier("group-id-2").name("group-2").build(); AccessPolicy policy1 = new AccessPolicy.Builder() .identifier("policy-id-1") .resource("resource1") .action(RequestAction.READ) .addUser(user1.getIdentifier()) .addUser(user2.getIdentifier()) .build(); AccessPolicy policy2 = new AccessPolicy.Builder() .identifier("policy-id-2") .resource("resource2") .action(RequestAction.READ) .addGroup(group1.getIdentifier()) .addGroup(group2.getIdentifier()) .addUser(user1.getIdentifier()) .addUser(user2.getIdentifier()) .build(); Set<Group> groups1 = new LinkedHashSet<>(); groups1.add(group1); groups1.add(group2); Set<User> users1 = new LinkedHashSet<>(); users1.add(user1); users1.add(user2); Set<AccessPolicy> policies1 = new LinkedHashSet<>(); policies1.add(policy1); policies1.add(policy2); authorizer = new MockPolicyBasedAuthorizer(groups1, users1, policies1); variableRegistry = new FileBasedVariableRegistry(nifiProperties.getVariableRegistryPropertiesPaths()); flowRegistry = Mockito.mock(FlowRegistryClient.class); bulletinRepo = Mockito.mock(BulletinRepository.class); controller = FlowController.createStandaloneInstance(flowFileEventRepo, nifiProperties, authorizer, auditService, encryptor, bulletinRepo, variableRegistry, flowRegistry, extensionManager); }
Example 14
Source File: JoinClusterWithDifferentFlow.java From nifi with Apache License 2.0 | 4 votes |
private StringEncryptor createEncryptorFromProperties(Properties nifiProperties) { final String algorithm = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_ALGORITHM); final String provider = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_PROVIDER); final String password = nifiProperties.getProperty(NiFiProperties.SENSITIVE_PROPS_KEY); return StringEncryptor.createEncryptor(algorithm, provider, password); }