-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
189 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
from django.db.models.query import QuerySet | ||
import math | ||
|
||
|
||
def ecosystem_radar_chart_data(stakeholders_queryset: QuerySet): | ||
qs = stakeholders_queryset | ||
|
||
def get_exposure_segment_id(value): | ||
if value < 3: | ||
return 1 | ||
if value >= 3 and value < 7: | ||
return 2 | ||
if value >= 7 and value <= 9: | ||
return 3 | ||
if value > 9: | ||
return 4 | ||
return 0 | ||
|
||
def get_reliability_cluster(value): | ||
if value < 4: | ||
return "clst1" | ||
if value >= 4 and value < 6: | ||
return "clst2" | ||
if value >= 6 and value <= 7: | ||
return "clst3" | ||
if value > 7: | ||
return "clst4" | ||
return 1 | ||
|
||
""" | ||
// data format: f1-f4 (fiabilité cyber = maturité x confiance ) to get the clusters and colors | ||
// x,y, z | ||
// x: criticité calculée avec cap à 5,5 | ||
// y: the angle (output of dict to make sure they end up on the right quadrant, min: 45, max:-45) -> done on BE | ||
// z: the size of item (exposition = dependence x penetration) based on a dict, -> done on BE | ||
// label: name of the 3rd party entity | ||
Angles start at 56,25 (45+45/4) and end at -45-45/4 = 303,75 | ||
""" | ||
|
||
c_data = {"clst1": [], "clst2": [], "clst3": [], "clst4": []} | ||
r_data = {"clst1": [], "clst2": [], "clst3": [], "clst4": []} | ||
angle_offsets = {"client": 135, "partner": 225, "supplier": 45} | ||
|
||
cnt_c_not_displayed = 0 | ||
cnt_r_not_displayed = 0 | ||
for sh in qs: | ||
# current | ||
c_reliability = sh.current_maturity * sh.current_trust | ||
c_exposure = sh.current_dependency * sh.current_penetration | ||
c_exposure_val = get_exposure_segment_id(c_exposure) * 4 | ||
|
||
c_criticality = ( | ||
math.floor(sh.current_criticality * 100) / 100.0 | ||
if sh.current_criticality <= 5 | ||
else 5.25 | ||
) | ||
|
||
angle = angle_offsets[sh.category] + ( | ||
get_exposure_segment_id(c_exposure) * (45 / 4) | ||
) | ||
|
||
vector = [c_criticality, angle, c_exposure_val, str(sh)] | ||
|
||
cluser_id = get_reliability_cluster(c_reliability) | ||
c_data[cluser_id].append(vector) | ||
|
||
# residual | ||
r_reliability = sh.residual_maturity * sh.residual_trust | ||
r_exposure = sh.residual_dependency * sh.residual_penetration | ||
r_exposure_val = get_exposure_segment_id(r_exposure) * 4 | ||
|
||
r_criticality = ( | ||
math.floor(sh.residual_criticality * 100) / 100.0 | ||
if sh.residual_criticality <= 5 | ||
else 5.25 | ||
) | ||
|
||
angle = angle_offsets[sh.category] + ( | ||
get_exposure_segment_id(r_exposure) * (45 / 4) | ||
) | ||
|
||
vector = [r_criticality, angle, r_exposure_val, str(sh)] | ||
|
||
cluser_id = get_reliability_cluster(r_reliability) | ||
r_data[cluser_id].append(vector) | ||
|
||
return {"current": c_data, "residual": r_data} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.