Rule.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 \Illuminate\Support\Carbon $created_at
  13. * @property \Illuminate\Support\Carbon $updated_at
  14. * @property-read mixed $type_api_label
  15. * @property-read mixed $type_label
  16. * @method static Builder|Rule newModelQuery()
  17. * @method static Builder|Rule newQuery()
  18. * @method static Builder|Rule query()
  19. * @method static Builder|Rule whereCreatedAt($value)
  20. * @method static Builder|Rule whereId($value)
  21. * @method static Builder|Rule whereName($value)
  22. * @method static Builder|Rule wherePattern($value)
  23. * @method static Builder|Rule whereType($value)
  24. * @method static Builder|Rule whereUpdatedAt($value)
  25. * @mixin \Eloquent
  26. */
  27. class Rule extends Model {
  28. protected $table = 'rule';
  29. protected $primaryKey = 'id';
  30. function getTypeLabelAttribute() {
  31. switch($this->attributes['type']){
  32. case 1:
  33. $type_label = '正则表达式';
  34. break;
  35. case 2:
  36. $type_label = '域 名';
  37. break;
  38. case 3:
  39. $type_label = 'I P';
  40. break;
  41. case 4:
  42. $type_label = '协 议';
  43. break;
  44. default:
  45. $type_label = '未 知';
  46. }
  47. return $type_label;
  48. }
  49. function getTypeApiLabelAttribute() {
  50. switch($this->attributes['type']){
  51. case 1:
  52. $type_api_label = 'reg';
  53. break;
  54. case 2:
  55. $type_api_label = 'domain';
  56. break;
  57. case 3:
  58. $type_api_label = 'ip';
  59. break;
  60. case 4:
  61. $type_api_label = 'protocol';
  62. break;
  63. default:
  64. $type_api_label = 'unknown';
  65. }
  66. return $type_api_label;
  67. }
  68. }