Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inventory-provider
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geant-swd
dashboardv3
inventory-provider
Commits
52f0c20f
Commit
52f0c20f
authored
4 years ago
by
Robert Latta
Browse files
Options
Downloads
Patches
Plain Diff
removed otrs stuff for separate commit
parent
46de1f35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
inventory_provider/db/ims_data.py
+0
-123
0 additions, 123 deletions
inventory_provider/db/ims_data.py
with
0 additions
and
123 deletions
inventory_provider/db/ims_data.py
+
0
−
123
View file @
52f0c20f
...
...
@@ -110,126 +110,3 @@ def lookup_pop_info(ds, hostname):
def
get_interface_info
(
ds
):
yield
from
ds
.
get_all_entities
(
'
InternalPort
'
)
yield
from
ds
.
get_all_entities
(
'
Port
'
)
def
otrs_get_customer_company_rows
(
ds
):
yield
[
'
customer_id
'
,
'
name
'
,
'
street
'
,
'
zip
'
,
'
city
'
,
'
country
'
,
'
url
'
,
'
comments
'
]
all_cus_comps
=
set
()
for
customer
in
ds
.
get_all_entities
(
'
Customer
'
):
all_cus_comps
.
add
(
customer
[
'
Name
'
])
yield
[
customer
[
'
Name
'
].
replace
(
'
'
,
''
),
customer
[
'
Name
'
],
''
,
''
,
''
,
''
,
''
,
''
]
for
vendor
in
ds
.
get_all_entities
(
'
Vendor
'
):
if
vendor
[
'
Name
'
]
not
in
all_cus_comps
:
all_cus_comps
.
add
(
vendor
[
'
Name
'
])
yield
[
vendor
[
'
Name
'
].
replace
(
'
'
,
''
),
vendor
[
'
Name
'
],
''
,
''
,
''
,
''
,
''
,
''
]
# TODO - check the rules for validation once model has been confirmed
def
_is_valid_customer
(
cus
):
if
not
cus
[
'
email
'
]:
return
False
return
True
def
otrs_get_customer_contacts
(
ds
):
def
_get_customer_id2
(
t
):
if
t
[
'
Id
'
]
==
3
or
t
[
'
Name
'
]
==
'
EU NREN
'
:
return
'
OTRS-GEANT-NREN
'
return
''
for
customer
in
ds
.
get_all_entities
(
'
Customer
'
,
[
ims
.
CUSTOMER_PROPERTIES
[
'
CustomerRelatedContacts
'
],
ims
.
CUSTOMER_PROPERTIES
[
'
CustomerType
'
]
]):
if
customer
[
'
CustomerRelatedContacts
'
]:
for
contact
in
customer
[
'
CustomerRelatedContacts
'
]:
t_customer_user
=
OrderedDict
({
'
email
'
:
contact
[
'
Contact
'
][
'
Mail
'
],
'
username
'
:
contact
[
'
Contact
'
][
'
Mail
'
],
# TODO if tal_id is going to be present use that # noqa
'
customer_id
'
:
customer
[
'
Name
'
].
replace
(
'
'
,
''
),
'
customer_id_2
'
:
_get_customer_id2
(
customer
[
'
CustomerType
'
]),
'
title
'
:
''
,
'
firstname
'
:
contact
[
'
Contact
'
][
'
Name
'
],
'
lastname
'
:
'
'
.
join
(
filter
(
None
,
[
contact
[
'
Contact
'
][
'
InFix
'
],
contact
[
'
Contact
'
][
'
LastName
'
]
])),
'
phone
'
:
''
,
'
fax
'
:
''
,
'
mobile
'
:
''
,
'
street
'
:
''
,
'
zip
'
:
''
,
'
city
'
:
''
,
'
country
'
:
''
,
'
comments
'
:
''
,
})
if
not
_is_valid_customer
(
t_customer_user
):
continue
if
contact
[
'
Contact
'
][
'
IsGroup
'
]:
t_customer_user
[
'
comments
'
]
=
\
'
Organisation imported as a user
'
yield
t_customer_user
def
otrs_get_vendor_contacts
(
ds
):
for
vrc
in
ds
.
get_all_entities
(
'
VendorRelatedContact
'
,
[
ims
.
VENDOR_RELATED_CONTACT_PROPERTIES
[
'
Vendor
'
],
ims
.
VENDOR_RELATED_CONTACT_PROPERTIES
[
'
Contact
'
]
]):
t_customer_user
=
OrderedDict
({
'
email
'
:
vrc
[
'
Contact
'
][
'
Mail
'
],
'
username
'
:
vrc
[
'
Contact
'
][
'
Mail
'
],
# TODO if tal_id is going to be present use that # noqa
'
customer_id
'
:
vrc
[
'
Vendor
'
][
'
Name
'
].
replace
(
'
'
,
''
),
'
customer_id_2
'
:
''
,
'
title
'
:
''
,
'
firstname
'
:
vrc
[
'
Contact
'
][
'
Name
'
],
'
lastname
'
:
'
'
.
join
(
filter
(
None
,
[
vrc
[
'
Contact
'
][
'
InFix
'
],
vrc
[
'
Contact
'
][
'
LastName
'
]
])),
'
phone
'
:
''
,
'
fax
'
:
''
,
'
mobile
'
:
''
,
'
street
'
:
''
,
'
zip
'
:
''
,
'
city
'
:
''
,
'
country
'
:
''
,
'
comments
'
:
''
,
})
if
not
_is_valid_customer
(
t_customer_user
):
continue
if
vrc
[
'
Contact
'
][
'
IsGroup
'
]:
t_customer_user
[
'
comments
'
]
=
\
'
Organisation imported as a user
'
yield
t_customer_user
def
otrs_get_customer_users_rows
(
ds
):
yield
[
'
email
'
,
'
username
'
,
'
customer_id
'
,
'
customer_id_2
'
,
'
title
'
,
'
firstname
'
,
'
lastname
'
,
'
phone
'
,
'
fax
'
,
'
mobile
'
,
'
street
'
,
'
zip
'
,
'
city
'
,
'
country
'
,
'
comments
'
]
def
get_all_cus_user_rows
():
yield
from
otrs_get_customer_contacts
(
ds
)
yield
from
otrs_get_vendor_contacts
(
ds
)
sorted_cus
=
sorted
(
get_all_cus_user_rows
(),
key
=
lambda
x
:
x
[
'
email
'
])
# this will be used to prioritisation
for
cu
in
sorted_cus
:
yield
list
(
cu
.
values
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment