DataXw.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace app\data\model;
  3. use FFMpeg\Coordinate\TimeCode;
  4. use FFMpeg\FFMpeg;
  5. use think\admin\Model;
  6. use think\db\Query;
  7. use think\helper\Str;
  8. use voku\helper\HtmlDomParser;
  9. /**
  10. * @method static|Query show()
  11. */
  12. class DataXw extends Model
  13. {
  14. protected $append=[
  15. 'user',
  16. ];
  17. protected $type=[
  18. 'has_video'=>'bool',
  19. ];
  20. public static function onBeforeWrite(self $model)
  21. {
  22. return true;
  23. // $dom = new \DOMDocument();
  24. // $dom->loadHTML($model['content']);
  25. // 获取所有的 h1 标签
  26. // $h1Tags = $dom->getElementsByTagName('video');
  27. // preg_match_all('/<video[^>]*>(.*?)<\/video>/s', $model['content'], $matches);
  28. //// var_dump($matches);die;
  29. // foreach ($matches as $k => $v){
  30. // echo htmlspecialchars($v[1]);die;
  31. // }
  32. // if (isset($matches[1])) {
  33. // echo "视频标签内容为:" . htmlspecialchars($matches[1]);
  34. // } else {
  35. // echo "未找到视频标签";
  36. // }
  37. $model['has_video']=Str::contains($model['content'],'</video>');
  38. if($model['has_video']){
  39. $html=HtmlDomParser::str_get_html($model['content']);
  40. $src = $html->findOne('video')->src;
  41. if(!$src){
  42. $src=$html->findOne('video source')->src;
  43. }
  44. if($src) {
  45. $pro = FFMpeg::create([
  46. 'ffmpeg.binaries' => root_path() . 'extend/bin/ffmpeg',
  47. 'ffprobe.binaries' => root_path() . 'extend/bin/ffprobe'
  48. ]);
  49. $video = $pro->open($src);
  50. $dir = public_path();
  51. $filename = 'upload/v-c/' . session_create_id() . '.png';
  52. !is_dir($dir . 'upload/v-c/') && @mkdir($dir . 'upload/v-c/', 0744, true);
  53. $vcPath = $dir . $filename;
  54. $video->frame(TimeCode::fromSeconds(1))->save($vcPath);
  55. $model['vc'] = request()->domain() . '/' . $filename;
  56. }
  57. }
  58. }
  59. public function comments()
  60. {
  61. return $this->hasMany(DataXwComment::class,'xw_id');
  62. }
  63. public function likes()
  64. {
  65. return $this->hasMany(DataXwLike::class,'xw_id');
  66. }
  67. public function category()
  68. {
  69. return $this->belongsTo(DataXwCategory::class,'category_id');
  70. }
  71. public function scopeShow(Query $query){
  72. $query->where('status',1);
  73. }
  74. public function getImagesAttr($images,$model){
  75. if(!Str::startsWith(request()->baseUrl(),'/data/api')){
  76. return $images;
  77. }
  78. if(!$images){
  79. return $model['vc']??'';
  80. }
  81. return $images;
  82. }
  83. public function getUserAttr(){
  84. static $config;
  85. is_null($config) && $config=sysconf('config_xw.')?:[];
  86. return [
  87. 'avatar'=>$config['user_avatar']??request()->domain().('/static/images/adminlogo.jpg'),
  88. 'username'=>$config['username']??'官方账号',
  89. ];
  90. }
  91. public function isLiked($user){
  92. if(!$user){
  93. return 0;
  94. }
  95. return $this->likes()->where('user_id',$user['id'])->value('id')?1:0;
  96. }
  97. public function makeLike($user){
  98. if($user && !$this->isLiked($user)){
  99. $this->likes()->save([
  100. 'user_id'=>$user['id']
  101. ]);
  102. return '点赞成功';
  103. }else{
  104. $this->likes()->where(['user_id'=>$user['id']])->delete();
  105. return '取消成功';
  106. }
  107. }
  108. }