Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add legal hold membership to device reporting #192

Merged
merged 23 commits into from
Mar 1, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b285a68
Legal Hold work to meet Issue 176
maddie-vargo Dec 28, 2020
ed72879
Fix to Changelog
maddie-vargo Dec 28, 2020
ea4381a
Minor fix to CHANGELOG
maddie-vargo Dec 29, 2020
a0ebe57
Added to legal hold user guide
maddie-vargo Dec 29, 2020
077dea1
Adjusting build parameters to bypass 3.5 for this PR
maddie-vargo Dec 29, 2020
03a3814
Merge branch 'master' into iss176
maddie-vargo Dec 29, 2020
f174992
Fix low hanging fruit for initial PR review
maddie-vargo Jan 4, 2021
205d559
Move development from legal-hold command to devices command, add new …
maddie-vargo Jan 29, 2021
02d6530
remove whitespaces that are coming through as edits
maddie-vargo Feb 2, 2021
e5784cf
fix changes identfied by tox style run
maddie-vargo Feb 2, 2021
9bfcd42
remove duplication in setup.py - file should have no edits
maddie-vargo Feb 2, 2021
2e303de
remove duplication in setup.py - file should have no edits
maddie-vargo Feb 2, 2021
94fe3b9
refactor membership function to use generator and remove NaNs from ou…
maddie-vargo Feb 11, 2021
0b79911
fix tox style run issue
maddie-vargo Feb 11, 2021
1bd1e2f
Fix tox style run x2
maddie-vargo Feb 11, 2021
e4725c7
flipping back to using NaN, awaiting PR #245
maddie-vargo Feb 16, 2021
237ea31
Adding --include-total-storage option, which calculates total number …
maddie-vargo Feb 18, 2021
7212fbf
Remove V2 archives from storage calcuation; rename columns
maddie-vargo Feb 22, 2021
2a917bd
fix small change to the incldue/excluded archive types
maddie-vargo Feb 23, 2021
2d1db8c
reword
maddie-vargo Feb 25, 2021
9a0afcb
conflict reconciliation in changelog, part I
maddie-vargo Feb 26, 2021
a3dd28f
conflict reconciliation in changelog, part II (repulled from upstream…
maddie-vargo Feb 26, 2021
9677f23
fix style run
maddie-vargo Feb 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ how a consumer would use the library (e.g. adding unit tests, updating documenta
### Added

- `code42 devices list` option:
- `--include-legal-hold-membership` to add legal hold columns to the result output, including legal hold matter name, UID, and whether the membership is active.
- `--include-legal-hold-membership` to add legal hold columns to the result output, printing the legal hold matter name and ID for any active device actively on legal hold
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we rephrase printing .... to something like prints the legalhold matter name and ID for any active device on legal hold!?

atleast active device actively seems off while reading.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, that is terrible phrasing. Resolved with latest commit

- `--include-total-storage` to add columns with total number of archives and total sum of archive bytes to each device in the result output

## 1.0.0 - 2020-08-31

Expand Down
37 changes: 36 additions & 1 deletion src/code42cli/cmds/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from pandas import concat
from pandas import DataFrame
from pandas import json_normalize
from pandas import Series
from pandas import to_datetime
from py42 import exceptions
from py42.exceptions import Py42NotFoundError
Expand Down Expand Up @@ -254,6 +255,14 @@ def _get_device_info(sdk, device_guid):
is_flag=True,
help="Include legal hold membership in output.",
)
@click.option(
"--include-total-storage",
required=False,
type=bool,
default=False,
is_flag=True,
help="Include archive count and total storage in output.",
)
@click.option(
"--exclude-most-recently-connected",
type=int,
Expand Down Expand Up @@ -296,6 +305,7 @@ def list_devices(
include_usernames,
include_settings,
include_legal_hold_membership,
include_total_storage,
exclude_most_recently_connected,
last_connected_after,
last_connected_before,
Expand All @@ -320,7 +330,11 @@ def list_devices(
"userUid",
]
df = _get_device_dataframe(
state.sdk, columns, active, org_uid, include_backup_usage
state.sdk,
columns,
active,
org_uid,
(include_backup_usage or include_total_storage),
)
if last_connected_after:
df = df.loc[to_datetime(df.lastConnected) > last_connected_after]
Expand All @@ -337,6 +351,8 @@ def list_devices(
.head(exclude_most_recently_connected)
)
df = df.drop(most_recent.index)
if include_total_storage:
df = _add_storage_totals_to_dataframe(df, include_backup_usage)
if include_settings:
df = _add_settings_to_dataframe(state.sdk, df)
if include_usernames:
Expand Down Expand Up @@ -436,6 +452,25 @@ def _add_usernames_to_device_dataframe(sdk, device_dataframe):
return device_dataframe.merge(users_dataframe, how="left", on="userUid")


def _add_storage_totals_to_dataframe(df, include_backup_usage):
df[["archiveCount", "totalStorageBytes"]] = df["backupUsage"].apply(
_break_backup_usage_into_total_storage
)

if not include_backup_usage:
df = df.drop("backupUsage", axis=1)
return df


def _break_backup_usage_into_total_storage(backup_usage):
total_storage = 0
archive_count = 0
for archive in backup_usage:
maddie-vargo marked this conversation as resolved.
Show resolved Hide resolved
archive_count += 1
total_storage += archive["archiveBytes"]
return Series([archive_count, total_storage])


@devices.command()
@active_option
@inactive_option
Expand Down
31 changes: 30 additions & 1 deletion tests/cmds/test_devices.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import json
from datetime import date

import numpy as np
import pytest
from pandas import DataFrame
from pandas import Series
from pandas._testing import assert_frame_equal
from pandas._testing import assert_series_equal
from py42.exceptions import Py42BadRequestError
from py42.exceptions import Py42ForbiddenError
from py42.exceptions import Py42NotFoundError
Expand All @@ -15,6 +18,7 @@
from code42cli.cmds.devices import _add_backup_set_settings_to_dataframe
from code42cli.cmds.devices import _add_legal_hold_membership_to_device_dataframe
from code42cli.cmds.devices import _add_usernames_to_device_dataframe
from code42cli.cmds.devices import _break_backup_usage_into_total_storage
from code42cli.cmds.devices import _get_device_dataframe
from code42cli.main import cli

Expand Down Expand Up @@ -80,7 +84,19 @@
"836476656572622471","serverName":"cif-sea","serverHostName":"https://cif-sea.crashplan.com",
"isProvider":false,"archiveGuid":"843293524842941560","archiveFormat":"ARCHIVE_V1","activity":
{"connected":false,"backingUp":false,"restoring":false,"timeRemainingInMs":0,
"remainingFiles":0,"remainingBytes":0}}]}}"""
"remainingFiles":0,"remainingBytes":0}},{"targetComputerParentId":null,"targetComputerParentGuid":
null,"targetComputerGuid":"43","targetComputerName":"PROe Cloud, US","targetComputerOsName":null,
"targetComputerType":"SERVER","selectedFiles":1599,"selectedBytes":1529420143,"todoFiles":0,
"todoBytes":0,"archiveBytes":56848550,"billableBytes":1529420143,"sendRateAverage":0,
"completionRateAverage":0,"lastBackup":"2019-12-02T09:34:28.364-06:00","lastCompletedBackup":
"2019-12-02T09:34:28.364-06:00","lastConnected":"2019-12-02T11:02:36.108-06:00","lastMaintenanceDate":
"2021-02-16T07:01:11.697-06:00","lastCompactDate":"2021-02-16T07:01:11.694-06:00","modificationDate":
"2021-02-17T04:57:27.222-06:00","creationDate":"2019-09-26T15:27:38.806-05:00","using":true,
"alertState":16,"alertStates":["CriticalBackupAlert"],"percentComplete":100.0,"storePointId":10989,
"storePointName":"fsa-iad-2","serverId":160024121,"serverGuid":"883282371081742804","serverName":
"fsa-iad","serverHostName":"https://web-fsa-iad.crashplan.com","isProvider":false,"archiveGuid":
"92077743916530001","archiveFormat":"ARCHIVE_V1","activity":{"connected":false,"backingUp":false,
"restoring":false,"timeRemainingInMs":0,"remainingFiles":0,"remainingBytes":0}}]}}"""
TEST_EMPTY_BACKUPUSAGE_RESPONSE = """{"metadata":{"timestamp":"2020-10-13T12:51:28.410Z","params":
{"incBackupUsage":"True","idType":"guid"}},"data":{"computerId":1767,"name":"SNWINTEST1",
"osHostname":"UNKNOWN","guid":"843290890230648046","type":"COMPUTER","status":"Active",
Expand Down Expand Up @@ -711,6 +727,19 @@ def test_list_include_legal_hold_membership_merges_in_and_concats_legal_hold_inf
assert "123456789,987654321" in result.output


def test_break_backup_usage_into_total_storage_correctly_calculates_values():
test_backupusage_cell = json.loads(TEST_BACKUPUSAGE_RESPONSE)["data"]["backupUsage"]
result = _break_backup_usage_into_total_storage(test_backupusage_cell)

test_empty_backupusage_cell = json.loads(TEST_EMPTY_BACKUPUSAGE_RESPONSE)["data"][
"backupUsage"
]
empty_result = _break_backup_usage_into_total_storage(test_empty_backupusage_cell)

assert_series_equal(result, Series([2, 56968051]))
assert_series_equal(empty_result, Series([0, 0]))


def test_last_connected_after_filters_appropriate_results(
cli_state, runner, get_all_devices_success
):
Expand Down