kya-validator 0.2.3

Rust core KYA (Know Your Agent) validator with Python bindings, TEE support, and blockchain integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
"""
Plugin system API for KYA Validator.

This module provides interfaces for managing validation plugins
and custom rules.
"""

from typing import Optional, Any, Callable
from dataclasses import dataclass, field
from .errors import PluginError


@dataclass
class RuleResult:
    """Result of executing a validation rule.

    This dataclass contains the result of a single
    validation rule execution.

    Attributes
    ----------
    rule_name : str
        Name of the rule.
    passed : bool
        Whether the rule passed.
    message : str
        Result message.
    details : dict, optional
        Additional details about the result.
    """

    rule_name: str
    passed: bool
    message: str
    details: dict[str, Any] = field(default_factory=dict)

    def to_dict(self) -> dict[str, Any]:
        """Convert result to dictionary.

        Returns
        -------
        dict
            Dictionary representation of result.
        """
        return {
            'ruleName': self.rule_name,
            'passed': self.passed,
            'message': self.message,
            'details': self.details,
        }


@dataclass
class PluginInfo:
    """Information about a registered plugin.

    This dataclass contains metadata about a plugin.

    Attributes
    ----------
    name : str
        Plugin name.
    version : str
        Plugin version.
    description : str
        Plugin description.
    enabled : bool
        Whether plugin is enabled.
    rule_count : int
        Number of rules in plugin.
    """

    name: str
    version: str
    description: str
    enabled: bool
    rule_count: int

    def to_dict(self) -> dict[str, Any]:
        """Convert plugin info to dictionary.

        Returns
        -------
        dict
            Dictionary representation of plugin info.
        """
        return {
            'name': self.name,
            'version': self.version,
            'description': self.description,
            'enabled': self.enabled,
            'ruleCount': self.rule_count,
        }


class ValidationPlugin:
    """Base class for validation plugins.

    This is an abstract base class that users can extend
    to create custom validation rules.

    Examples
    --------
    >>> class MyPlugin(ValidationPlugin):
    ...     def name(self):
    ...         return 'my_plugin'
    ...
    >>> plugin = MyPlugin()
    >>> print(plugin.name())
    my_plugin
    """

    def name(self) -> str:
        """Get plugin name.

        Returns
        -------
        str
            Plugin name.
        """
        raise NotImplementedError('Subclasses must implement name()')

    def version(self) -> str:
        """Get plugin version.

        Returns
        -------
        str
            Plugin version.
        """
        raise NotImplementedError('Subclasses must implement version()')

    def description(self) -> str:
        """Get plugin description.

        Returns
        -------
        str
            Plugin description.
        """
        raise NotImplementedError('Subclasses must implement description()')

    def before_validation(self, manifest: dict[str, Any]) -> None:
        """Hook called before validation starts.

        Parameters
        ----------
        manifest : dict
            Manifest to be validated.
        """
        pass

    def after_validation(
        self,
        report: dict[str, Any],
    ) -> None:
        """Hook called after validation completes.

        Parameters
        ----------
        report : dict
            Validation report.
        """
        pass

    def custom_rules(self) -> list[Callable]:
        """Get custom validation rules.

        Returns
        -------
        list[Callable]
            List of validation rule functions.
        """
        return []


class PluginManager:
    """Manager for validation plugins.

    This class handles plugin registration, lifecycle management,
    and execution of custom rules.

    Examples
    --------
    >>> manager = PluginManager()
    >>> plugin = MyPlugin()
    >>> manager.register(plugin)
    >>> info = manager.get_plugin_info('my_plugin')
    >>> print(info.enabled)
    True
    """

    def __init__(self):
        """Initialize plugin manager."""
        self._plugins = {}
        self._enabled = set()

    def register(self, plugin: ValidationPlugin) -> None:
        """Register a validation plugin.

        Parameters
        ----------
        plugin : ValidationPlugin
            Plugin to register.

        Raises
        ------
        PluginError
            If plugin with same name is already registered.
        """
        name = plugin.name()
        if name in self._plugins:
            raise PluginError(
                f'Plugin "{name}" already registered',
                plugin_name=name,
            )

        self._plugins[name] = plugin
        self._enabled.add(name)

    def unregister(self, name: str) -> None:
        """Unregister a validation plugin.

        Parameters
        ----------
        name : str
            Name of plugin to unregister.

        Raises
        ------
        PluginError
            If plugin is not registered.
        """
        if name not in self._plugins:
            raise PluginError(
                f'Plugin "{name}" not found',
                plugin_name=name,
            )

        del self._plugins[name]
        self._enabled.discard(name)

    def enable(self, name: str) -> None:
        """Enable a registered plugin.

        Parameters
        ----------
        name : str
            Name of plugin to enable.

        Raises
        ------
        PluginError
            If plugin is not registered.
        """
        if name not in self._plugins:
            raise PluginError(
                f'Plugin "{name}" not found',
                plugin_name=name,
            )

        self._enabled.add(name)

    def disable(self, name: str) -> None:
        """Disable a registered plugin.

        Parameters
        ----------
        name : str
            Name of plugin to disable.

        Raises
        ------
        PluginError
            If plugin is not registered.
        """
        if name not in self._plugins:
            raise PluginError(
                f'Plugin "{name}" not found',
                plugin_name=name,
            )

        self._enabled.discard(name)

    def is_enabled(self, name: str) -> bool:
        """Check if a plugin is enabled.

        Parameters
        ----------
        name : str
            Name of plugin to check.

        Returns
        -------
        bool
            True if plugin is enabled.
        """
        return name in self._enabled

    def get_registered_plugins(self) -> list[str]:
        """Get list of registered plugin names.

        Returns
        -------
        list[str]
            Names of all registered plugins.
        """
        return list(self._plugins.keys())

    def get_enabled_plugins(self) -> list[str]:
        """Get list of enabled plugin names.

        Returns
        -------
        list[str]
            Names of enabled plugins.
        """
        return list(self._enabled)

    def get_plugin_info(self, name: str) -> PluginInfo:
        """Get information about a plugin.

        Parameters
        ----------
        name : str
            Name of plugin.

        Returns
        -------
        PluginInfo
            Plugin information.

        Raises
        ------
        PluginError
            If plugin is not registered.
        """
        if name not in self._plugins:
            raise PluginError(
                f'Plugin "{name}" not found',
                plugin_name=name,
            )

        plugin = self._plugins[name]
        return PluginInfo(
            name=plugin.name(),
            version=plugin.version(),
            description=plugin.description(),
            enabled=name in self._enabled,
            rule_count=len(plugin.custom_rules()),
        )

    def get_all_plugin_info(self) -> list[PluginInfo]:
        """Get information about all plugins.

        Returns
        -------
        list[PluginInfo]
            Information for all registered plugins.
        """
        return [
            self.get_plugin_info(name)
            for name in self._plugins
        ]

    def execute_before_validation(
        self,
        manifest: dict[str, Any],
    ) -> None:
        """Execute before_validation hooks for all enabled plugins.

        Parameters
        ----------
        manifest : dict
            Manifest to be validated.
        """
        for name in self._enabled:
            plugin = self._plugins[name]
            plugin.before_validation(manifest)

    def execute_after_validation(
        self,
        report: dict[str, Any],
    ) -> None:
        """Execute after_validation hooks for all enabled plugins.

        Parameters
        ----------
        report : dict
            Validation report.
        """
        for name in self._enabled:
            plugin = self._plugins[name]
            plugin.after_validation(report)

    def execute_custom_rules(
        self,
        manifest: dict[str, Any],
        context: dict[str, Any],
    ) -> list[RuleResult]:
        """Execute custom rules from all enabled plugins.

        Parameters
        ----------
        manifest : dict
            Manifest to validate.
        context : dict
            Validation context.

        Returns
        -------
        list[RuleResult]
            Results from all custom rules.
        """
        results = []
        for name in self._enabled:
            plugin = self._plugins[name]
            for rule_func in plugin.custom_rules():
                try:
                    result = rule_func(manifest, context)
                    if isinstance(result, RuleResult):
                        results.append(result)
                    elif isinstance(result, bool):
                        results.append(RuleResult(
                            rule_name=rule_func.__name__,
                            passed=result,
                            message='Rule passed' if result else 'Rule failed',
                        ))
                except Exception as e:
                    results.append(RuleResult(
                        rule_name=rule_func.__name__,
                        passed=False,
                        message=f'Rule error: {e}',
                    ))

        return results