netbox-certificates-plugin 0.4.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. netbox_certificates_plugin-0.4.11/AI_ASSISTANCE.md +15 -0
  2. netbox_certificates_plugin-0.4.11/CHANGELOG.md +79 -0
  3. netbox_certificates_plugin-0.4.11/COMPATIBILITY.md +12 -0
  4. netbox_certificates_plugin-0.4.11/CONTRIBUTING.md +23 -0
  5. netbox_certificates_plugin-0.4.11/LICENSE +201 -0
  6. netbox_certificates_plugin-0.4.11/MANIFEST.in +14 -0
  7. netbox_certificates_plugin-0.4.11/NOTICE +9 -0
  8. netbox_certificates_plugin-0.4.11/PKG-INFO +440 -0
  9. netbox_certificates_plugin-0.4.11/README.md +409 -0
  10. netbox_certificates_plugin-0.4.11/SECURITY.md +20 -0
  11. netbox_certificates_plugin-0.4.11/UPGRADE.md +35 -0
  12. netbox_certificates_plugin-0.4.11/VALIDATION.md +9 -0
  13. netbox_certificates_plugin-0.4.11/docs/API.md +331 -0
  14. netbox_certificates_plugin-0.4.11/docs/PUBLISHING.md +212 -0
  15. netbox_certificates_plugin-0.4.11/docs/UNINSTALL.md +113 -0
  16. netbox_certificates_plugin-0.4.11/netbox_certificates/__init__.py +21 -0
  17. netbox_certificates_plugin-0.4.11/netbox_certificates/api/__init__.py +3 -0
  18. netbox_certificates_plugin-0.4.11/netbox_certificates/api/serializers.py +385 -0
  19. netbox_certificates_plugin-0.4.11/netbox_certificates/api/urls.py +16 -0
  20. netbox_certificates_plugin-0.4.11/netbox_certificates/api/views.py +327 -0
  21. netbox_certificates_plugin-0.4.11/netbox_certificates/choices.py +124 -0
  22. netbox_certificates_plugin-0.4.11/netbox_certificates/constants.py +21 -0
  23. netbox_certificates_plugin-0.4.11/netbox_certificates/dashboard.py +23 -0
  24. netbox_certificates_plugin-0.4.11/netbox_certificates/filtersets.py +295 -0
  25. netbox_certificates_plugin-0.4.11/netbox_certificates/forms.py +780 -0
  26. netbox_certificates_plugin-0.4.11/netbox_certificates/jobs.py +20 -0
  27. netbox_certificates_plugin-0.4.11/netbox_certificates/management/__init__.py +0 -0
  28. netbox_certificates_plugin-0.4.11/netbox_certificates/management/commands/__init__.py +0 -0
  29. netbox_certificates_plugin-0.4.11/netbox_certificates/management/commands/reconcile_certificate_links.py +10 -0
  30. netbox_certificates_plugin-0.4.11/netbox_certificates/management/commands/refresh_certificate_status.py +10 -0
  31. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0001_initial.py +149 -0
  32. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0002_alter_bundle_options_alter_privatekey_options.py +9 -0
  33. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0003_remove_privatekey_curve_bundle_identity_fingerprint_and_more.py +14 -0
  34. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0004_remove_bundle_protection_password_hash_and_more.py +11 -0
  35. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0005_certificate_supersedes_and_permissions.py +13 -0
  36. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0006_expiry_alerts.py +73 -0
  37. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0007_trigger_field_names.py +14 -0
  38. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0008_expiry_alert_webhook_tls_verification.py +12 -0
  39. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0009_expiry_alert_expired_certificate_preference.py +12 -0
  40. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0010_groups_and_repeat_alerts.py +67 -0
  41. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0011_object_groups_and_certificate_authorities.py +99 -0
  42. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0012_group_hierarchy_and_ui_labels.py +107 -0
  43. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/0013_root_authorities_and_bundle_status.py +107 -0
  44. netbox_certificates_plugin-0.4.11/netbox_certificates/migrations/__init__.py +0 -0
  45. netbox_certificates_plugin-0.4.11/netbox_certificates/models.py +407 -0
  46. netbox_certificates_plugin-0.4.11/netbox_certificates/navigation.py +70 -0
  47. netbox_certificates_plugin-0.4.11/netbox_certificates/permissions.py +44 -0
  48. netbox_certificates_plugin-0.4.11/netbox_certificates/search.py +44 -0
  49. netbox_certificates_plugin-0.4.11/netbox_certificates/services/__init__.py +1 -0
  50. netbox_certificates_plugin-0.4.11/netbox_certificates/services/alerts.py +416 -0
  51. netbox_certificates_plugin-0.4.11/netbox_certificates/services/bundles.py +253 -0
  52. netbox_certificates_plugin-0.4.11/netbox_certificates/services/certificate_authorities.py +95 -0
  53. netbox_certificates_plugin-0.4.11/netbox_certificates/services/chain.py +78 -0
  54. netbox_certificates_plugin-0.4.11/netbox_certificates/services/csr.py +138 -0
  55. netbox_certificates_plugin-0.4.11/netbox_certificates/services/duplicates.py +51 -0
  56. netbox_certificates_plugin-0.4.11/netbox_certificates/services/encryption.py +48 -0
  57. netbox_certificates_plugin-0.4.11/netbox_certificates/services/expiry.py +60 -0
  58. netbox_certificates_plugin-0.4.11/netbox_certificates/services/importing.py +136 -0
  59. netbox_certificates_plugin-0.4.11/netbox_certificates/services/ingest.py +66 -0
  60. netbox_certificates_plugin-0.4.11/netbox_certificates/services/inventory.py +96 -0
  61. netbox_certificates_plugin-0.4.11/netbox_certificates/services/linker.py +232 -0
  62. netbox_certificates_plugin-0.4.11/netbox_certificates/services/parser.py +272 -0
  63. netbox_certificates_plugin-0.4.11/netbox_certificates/services/pkcs12_export.py +34 -0
  64. netbox_certificates_plugin-0.4.11/netbox_certificates/services/renewal.py +19 -0
  65. netbox_certificates_plugin-0.4.11/netbox_certificates/services/status.py +29 -0
  66. netbox_certificates_plugin-0.4.11/netbox_certificates/services/unified_import.py +147 -0
  67. netbox_certificates_plugin-0.4.11/netbox_certificates/signals.py +42 -0
  68. netbox_certificates_plugin-0.4.11/netbox_certificates/static/netbox_certificates/inventory.css +164 -0
  69. netbox_certificates_plugin-0.4.11/netbox_certificates/tables.py +233 -0
  70. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/_groups.html +13 -0
  71. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/_links.html +20 -0
  72. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/bundle.html +3 -0
  73. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/bundle_export.html +1 -0
  74. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/bundle_list.html +4 -0
  75. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/certificate.html +28 -0
  76. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/certificate_authority.html +38 -0
  77. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/certificate_authority_list.html +1 -0
  78. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/certificate_list.html +4 -0
  79. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/csr.html +3 -0
  80. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/csr_generate.html +241 -0
  81. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/csr_list.html +5 -0
  82. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/dashboard_widget.html +1 -0
  83. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/expiration_alert_email.html +87 -0
  84. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/expiration_alerts.html +136 -0
  85. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/expiration_dashboard.html +1 -0
  86. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/group.html +47 -0
  87. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/group_list.html +1 -0
  88. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/import_objects.html +4 -0
  89. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/inventory.html +90 -0
  90. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/link_add.html +1 -0
  91. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/link_remove.html +1 -0
  92. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/privatekey.html +3 -0
  93. netbox_certificates_plugin-0.4.11/netbox_certificates/templates/netbox_certificates/privatekey_list.html +4 -0
  94. netbox_certificates_plugin-0.4.11/netbox_certificates/urls.py +70 -0
  95. netbox_certificates_plugin-0.4.11/netbox_certificates/views.py +755 -0
  96. netbox_certificates_plugin-0.4.11/netbox_certificates_plugin.egg-info/PKG-INFO +440 -0
  97. netbox_certificates_plugin-0.4.11/netbox_certificates_plugin.egg-info/SOURCES.txt +101 -0
  98. netbox_certificates_plugin-0.4.11/netbox_certificates_plugin.egg-info/dependency_links.txt +1 -0
  99. netbox_certificates_plugin-0.4.11/netbox_certificates_plugin.egg-info/requires.txt +4 -0
  100. netbox_certificates_plugin-0.4.11/netbox_certificates_plugin.egg-info/top_level.txt +1 -0
  101. netbox_certificates_plugin-0.4.11/pyproject.toml +58 -0
  102. netbox_certificates_plugin-0.4.11/setup.cfg +4 -0
  103. netbox_certificates_plugin-0.4.11/tests/test_release_contract.py +374 -0
@@ -0,0 +1,15 @@
1
+ # AI-Assisted Development Disclosure
2
+
3
+ This project was developed with substantial assistance from **ChatGPT by OpenAI**.
4
+
5
+ The AI assistance included portions of implementation, troubleshooting, security-boundary review, integration-test generation, release engineering, packaging guidance, and technical documentation.
6
+
7
+ The code was developed under human direction and was iteratively exercised against a live NetBox environment. The human maintainer is responsible for reviewing, accepting, publishing, operating, and maintaining the project.
8
+
9
+ ChatGPT/OpenAI is acknowledged as an **AI development assistant**, not as a GitHub account, legal author, copyright holder, maintainer, sponsor, or endorser of this project.
10
+
11
+ GitHub's `Co-authored-by:` mechanism requires an email associated with a real GitHub account. No fake ChatGPT/OpenAI identity or email should be created. Maintainers who want commit-level disclosure may use the informational trailer:
12
+
13
+ ```text
14
+ AI-Assisted-by: ChatGPT (OpenAI)
15
+ ```
@@ -0,0 +1,79 @@
1
+ # Changelog
2
+
3
+ ## 0.4.11
4
+
5
+ - Prepare the release for standard Python packaging (wheel/sdist), GitHub Releases, PyPI Trusted Publishing, Apache-2.0/NOTICE attribution, and public API/installation documentation.
6
+ - Fix direct REST creation of Certificates and CSRs on NetBox 4.5.x. Their serializers now parse and normalize cryptographic material before NetBox `ValidatedModelSerializer` performs model `full_clean()`, preventing valid PEM input from being misreported as blank.
7
+ - No database migration or new static asset.
8
+
9
+ ## 0.4.10
10
+
11
+ - Unified import now returns HTTP 400 Bad Request for expected client-side validation failures instead of HTTP 500.
12
+ - Mismatched Certificate/Private Key/CSR public-key identities remain atomically rejected with no objects persisted.
13
+ - Missing uploads and oversized unified-import requests now use the same HTTP 400 validation semantics.
14
+
15
+ ## 0.4.9
16
+
17
+ - Fix the CSR SAN Type enhanced dropdown regression introduced in 0.4.7.
18
+ - Clone the live RSA Signature TomSelect settings so SAN Type uses the same NetBox static-choice behavior instead of an editable-looking control.
19
+ - Explicitly seed DNS, IP, Email, and URI into every SAN Type TomSelect instance.
20
+ - Render the SAN dropdown under `body` and remove the table overflow wrapper so the option menu cannot be clipped.
21
+ - No database migration or static-asset collection is required.
22
+
23
+ ## 0.4.7
24
+
25
+ - Render dynamically-created CSR SAN Type selectors with the same NetBox TomSelect control used by native ChoiceField dropdowns such as RSA Signature.
26
+ - Preserve dynamic Add SAN/remove-row behavior while synchronizing values through the underlying select element.
27
+
28
+ ## 0.4.6
29
+
30
+ - Render CSR SAN entries as a NetBox-style table/list with native table, form-control, form-select, and action-button styling.
31
+ - Rebuild the Expiration Alerts configuration layout so each field uses one consistent full-width NetBox horizontal form grid, eliminating nested unequal Bootstrap columns that misaligned labels and controls.
32
+ - No database migration and no new static asset are required.
33
+
34
+ ## 0.4.5
35
+
36
+ - Removed retired compatibility UI/API aliases instead of preserving them during development.
37
+ - Renamed the current Expiration Alerts UI route to `expiration-alerts/` and REST endpoints to `expiration-alert-*` only.
38
+ - Removed the duplicate Certificate Authority list route name, legacy Bundle import redirects, Bundle `import-archive` API action, and single-file import parameter alias.
39
+ - Expanded object-list/API filters to cover all meaningful model fields, relations, metadata, and timestamps.
40
+ - Preserved partial Bundle imports: any two matching primary objects are accepted and labeled Partial; all three are required only for Complete.
41
+
42
+ ## 0.4.4
43
+
44
+ - Made Group parent choices hierarchy-aware: an existing Group can only choose a parent at its current level or above, while itself, descendants, and deeper Groups are excluded.
45
+ - Removed explicitly duplicated Owner placement from PrimaryModel edit fieldsets and retained NetBox's native Owner handling.
46
+ - Added native NetBox bulk export to Groups and Certificate Authorities.
47
+ - Expanded list filters with page-specific fields for Certificates, Private Keys, CSRs, Bundles, Groups, and Certificate Authorities.
48
+ - Renamed the user-facing **Expiry Alerts** surface to **Expiration Alerts** while keeping existing URL/API identifiers for compatibility.
49
+ - Reorganized the Expiration Alerts configuration into consistent Alert Policy, SMTP Connection, SMTP Security, Delivery, Webhook Connection, and Webhook Options sections.
50
+ - Removed non-essential import/export/link guide banners and the main-dashboard widget's **Open dashboard** link.
51
+ - Certificate Authorities are now root-only identities. Intermediate issuer identities are removed, and certificates are associated with the stored self-signed root CA identity when a complete root path is available.
52
+ - Restored strict Bundle status semantics: **Complete** requires Certificate + Private Key + CSR; any missing primary object makes the Bundle **Partial**.
53
+ - Added migration `0013_root_authorities_and_bundle_status` to normalize existing CA identities and Bundle statuses and update expiration-alert display metadata.
54
+ - Kept the 0.4.3 Inventory colors and bumped the stylesheet cache key to 0.4.4.
55
+
56
+ ## 0.4.1
57
+
58
+ - Fixed the `ArtifactGroup` REST router basename so NetBox 4.5.9 dynamic Group fields resolve the expected `artifactgroup-list`/`artifactgroup-detail` endpoints instead of raising `NoReverseMatch`.
59
+ - Aligned Group UI route names with the `ArtifactGroup` model (`artifactgroup_list`, `artifactgroup`, and `artifactgroup_delete`) for NetBox generic view compatibility.
60
+ - Restored the 0.3.12 plugin navigation structure. `Expiry Alerts` remains under Operations; `Import Objects` is under Operations; `Certificate Authorities` is added under Overview; `Groups` is added under Inventory.
61
+ - Removed navigation-level Import buttons and the duplicate custom `Add Group` button. Page-level Import/Generate controls remain where they are useful.
62
+ - No database migration and no static-file change.
63
+
64
+ ## 0.4.0
65
+
66
+ - Fixed NetBox bulk editing by adding proper `PrimaryModelBulkEditForm` forms and bulk-edit routes for Certificates, Private Keys, CSRs, Bundles, and Groups.
67
+ - Certificate bulk edit can change Alert Trigger, Trigger Unit, Owner, Groups, Description, Comments, and Tags. Other artifact bulk forms expose their normal non-unique administrative fields.
68
+ - Added configurable expiry-alert repeat behavior: `Send once per trigger` (legacy behavior) or `Send every check while due`.
69
+ - Added first-class Groups. Certificates, Private Keys, CSRs, and Bundles have a native many-to-many `groups` field, table column, filters, UI management, and REST API support.
70
+ - Added unified `Import Objects` UI/API ingestion. Content is inspected cryptographically and imported as Certificate, Private Key, CSR, chain/container, or Bundle according to what is actually present.
71
+ - Added a Certificate Authorities overview. Any imported X.509 certificate with CA BasicConstraints appears automatically.
72
+ - Expanded reciprocal navigation among Bundles, chain CAs, Certificates, Private Keys, CSRs, Groups, and generic NetBox links.
73
+ - A valid Bundle is complete when it contains at least two matching primary artifacts, consistent with Bundle validation rules.
74
+ - Added compatibility redirects from the legacy Bundle import URLs to Import Objects.
75
+ - Added migration `0010_groups_and_repeat_alerts`.
76
+
77
+ ## 0.3.12
78
+
79
+ - Fixed expiry-alert scan cadence drift by running the NetBox system-job heartbeat every minute while retaining the configured due-time gate.
@@ -0,0 +1,12 @@
1
+ # Compatibility
2
+
3
+ ## 0.4.11
4
+
5
+ | NetBox | Support level |
6
+ | --- | --- |
7
+ | 4.5.9 | Fully live-validated and supported. |
8
+ | 4.5.10 | Declared supported by PluginConfig; same 4.5 patch line, but not yet exercised with the same exhaustive live matrix as 4.5.9. |
9
+ | <= 4.5.8 | Unsupported and rejected by `min_version = "4.5.9"`. NetBox 4.5.9 includes a fix for constrained ObjectPermission scope filtering used by this plugin. |
10
+ | >= 4.6.0 | Unsupported and rejected by `max_version = "4.5.10"`; NetBox 4.6 upgrades to Django 6.0 and changes/deprecates plugin APIs, requiring a dedicated compatibility release. |
11
+
12
+ Python 3.12+ is required by the package. Production validation for 0.4.11 was performed on NetBox 4.5.9 with Python 3.12.
@@ -0,0 +1,23 @@
1
+ # Contributing
2
+
3
+ Contributions, forks, and derivative versions are welcome.
4
+
5
+ ## License
6
+
7
+ By contributing code/documentation to this repository, you agree that your contribution may be distributed under the repository's Apache License 2.0 unless explicitly agreed otherwise by the maintainer.
8
+
9
+ When redistributing a derivative, comply with Apache-2.0 Section 4, including preservation of the license and applicable `NOTICE` attribution and prominent notices for files you modify where required.
10
+
11
+ ## Development expectations
12
+
13
+ - Keep changes compatible with the NetBox plugin API for the declared compatibility range.
14
+ - Do not widen NetBox compatibility solely because the package imports; run integration tests against each new NetBox minor line.
15
+ - Add/update tests for behavioral changes.
16
+ - Never expose private-key plaintext through ordinary serializers/logging.
17
+ - Preserve sensitive-operation token/superuser overlays unless a security review intentionally changes them.
18
+ - Update `CHANGELOG.md`, API documentation, and compatibility notes for user-visible behavior.
19
+ - Build wheel + sdist and run `twine check` before release.
20
+
21
+ ## AI-assisted contributions
22
+
23
+ AI-assisted contributions are allowed. Review generated code before submission and disclose material AI assistance when appropriate. Do not invent a fake GitHub identity for an AI system.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,14 @@
1
+ include LICENSE
2
+ include NOTICE
3
+ include README.md
4
+ include CHANGELOG.md
5
+ include COMPATIBILITY.md
6
+ include CONTRIBUTING.md
7
+ include SECURITY.md
8
+ include UPGRADE.md
9
+ include VALIDATION.md
10
+ include AI_ASSISTANCE.md
11
+ recursive-include docs *.md
12
+ recursive-include netbox_certificates/templates *.html
13
+ recursive-include netbox_certificates/static *
14
+ recursive-include netbox_certificates/migrations *.py
@@ -0,0 +1,9 @@
1
+ NetBox Certificates Plugin
2
+ Copyright 2026 NetBox Certificates Plugin contributors
3
+
4
+ Original project: NetBox Certificates Plugin
5
+ Canonical source: https://github.com/Fokkert/netbox-certificates-plugin
6
+
7
+ This work was developed with substantial assistance from ChatGPT by OpenAI under human direction and review. The human maintainer is responsible for the code and releases. OpenAI does not maintain, sponsor, or endorse this project.
8
+
9
+ This product is an independent NetBox plugin and is not part of the NetBox core repository.