Skip to content

Commit

Permalink
Merge pull request #256 from gaol/MWTELE-266-1.x
Browse files Browse the repository at this point in the history
fix: upload directory creation
  • Loading branch information
ehsavoie authored Aug 12, 2024
2 parents 50229f3 + 35f097c commit 4c71c22
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) Red Hat 2022-2023 */
/* Copyright (C) Red Hat 2022-2024 */
package com.redhat.insights;

import static com.redhat.insights.InsightsErrorCode.ERROR_GENERATING_HASH;
Expand Down Expand Up @@ -101,11 +101,12 @@ public static InsightsReportController of(
/** Generates the report (including subreports), computes identifying hash and schedules sends */
public void generate() {
try {

if (configuration.isOptingOut()) {
throw new InsightsException(OPT_OUT, "Opting out of the Red Hat Insights client");
}
final InsightsReport updateReport = new UpdateReportImpl(jarsToSend, logger);
if (System.getProperty("os.name").toLowerCase().contains("windows")) {
throw new InsightsException(OPT_OUT, "Red Hat Insights is not supported on Windows.");
}

// Schedule initial event
Runnable sendConnect =
Expand All @@ -129,6 +130,7 @@ public void generate() {
scheduler.scheduleConnect(sendConnect);

// Schedule a possible Jar send (every few mins? Defaults to 5 min)
final InsightsReport updateReport = new UpdateReportImpl(jarsToSend, logger);
Runnable sendNewJarsIfAny =
() -> {
InsightsHttpClient httpClient = httpClientSupplier.get();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) Red Hat 2023 */
/* Copyright (C) Red Hat 2023-2024 */
package com.redhat.insights.config;

import static com.redhat.insights.InsightsErrorCode.ERROR_IDENTIFICATION_NOT_DEFINED;
Expand Down Expand Up @@ -123,6 +123,10 @@ public Optional<ProxyConfiguration> getProxyConfiguration() {

@Override
public boolean isOptingOut() {
String osName = System.getProperty("os.name");
if (osName != null && osName.trim().toLowerCase().contains("windows")) {
return true;
}
String value = lookup(ENV_OPT_OUT);
if (value != null) {
return "true".equalsIgnoreCase(value.trim());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) Red Hat 2023 */
/* Copyright (C) Red Hat 2023-2024 */
package com.redhat.insights.config;

import java.time.Duration;
Expand Down Expand Up @@ -69,6 +69,10 @@ default Optional<ProxyConfiguration> getProxyConfiguration() {
}

default boolean isOptingOut() {
String osName = System.getProperty("os.name");
if (osName != null) {
return osName.trim().toLowerCase().contains("windows");
}
return false;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) Red Hat 2023 */
/* Copyright (C) Red Hat 2023-2024 */
package com.redhat.insights.http;

import static com.redhat.insights.InsightsErrorCode.ERROR_UPLOAD_DIR_CREATION;
Expand Down Expand Up @@ -27,7 +27,7 @@ public InsightsFileWritingClient(InsightsLogger logger, InsightsConfiguration co

private void ensureArchiveUploadDirExists() {
Path dir = Paths.get(config.getArchiveUploadDir());
if (Files.notExists(dir)) {
if (Files.notExists(dir) && !config.isOptingOut()) {
try {
Files.createDirectories(dir);
} catch (IOException e) {
Expand All @@ -44,6 +44,9 @@ public void decorate(InsightsReport report) {

@Override
public void sendInsightsReport(String filename, InsightsReport report) {
if (config.isOptingOut()) {
return;
}
decorate(report);

// Can't reuse upload path - as this may be called as part of fallback
Expand Down

0 comments on commit 4c71c22

Please sign in to comment.