Rule.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. /**
  6. * 审计规则
  7. *
  8. * @property int $id
  9. * @property int $type 类型:1-正则表达式、2-域名、3-IP、4-协议
  10. * @property string $name 规则描述
  11. * @property string $pattern 规则值
  12. * @property-read string $type_api_label
  13. * @property-read string $type_label
  14. * @method static Builder|Rule newModelQuery()
  15. * @method static Builder|Rule newQuery()
  16. * @method static Builder|Rule query()
  17. * @method static Builder|Rule whereId($value)
  18. * @method static Builder|Rule whereName($value)
  19. * @method static Builder|Rule wherePattern($value)
  20. * @method static Builder|Rule whereType($value)
  21. * @mixin \Eloquent
  22. */
  23. class Rule extends Model {
  24. protected $table = 'rule';
  25. public function getTypeLabelAttribute(): string {
  26. switch($this->attributes['type']){
  27. case 1:
  28. $type_label = '正则表达式';
  29. break;
  30. case 2:
  31. $type_label = '域 名';
  32. break;
  33. case 3:
  34. $type_label = 'I P';
  35. break;
  36. case 4:
  37. $type_label = '协 议';
  38. break;
  39. default:
  40. $type_label = '未 知';
  41. }
  42. return $type_label;
  43. }
  44. public function getTypeApiLabelAttribute(): string {
  45. switch($this->attributes['type']){
  46. case 1:
  47. $type_api_label = 'reg';
  48. break;
  49. case 2:
  50. $type_api_label = 'domain';
  51. break;
  52. case 3:
  53. $type_api_label = 'ip';
  54. break;
  55. case 4:
  56. $type_api_label = 'protocol';
  57. break;
  58. default:
  59. $type_api_label = 'unknown';
  60. }
  61. return $type_api_label;
  62. }
  63. }