-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8172776
commit 222f3be
Showing
20 changed files
with
9,276 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,252 @@ | ||
-- MySQL dump 10.13 Distrib 8.0.23, for Linux (x86_64) | ||
-- | ||
-- Host: localhost Database: dev_heycommunity | ||
-- ------------------------------------------------------ | ||
-- Server version 8.0.23-0ubuntu0.20.04.1 | ||
|
||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!50503 SET NAMES utf8mb4 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
|
||
-- | ||
-- Table structure for table `admin_menu` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_menu`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_menu` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`parent_id` int NOT NULL DEFAULT '0', | ||
`order` int NOT NULL DEFAULT '0', | ||
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`uri` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`permission` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_menu` | ||
-- | ||
|
||
LOCK TABLES `admin_menu` WRITE; | ||
/*!40000 ALTER TABLE `admin_menu` DISABLE KEYS */; | ||
INSERT INTO `admin_menu` VALUES (1,2,17,'Dashboard','fa-bar-chart','/',NULL,NULL,'2021-07-09 16:19:35'),(2,0,11,'Admin','fa-tasks','',NULL,NULL,'2021-07-09 16:19:35'),(3,2,12,'Users','fa-users','auth/users',NULL,NULL,'2021-07-09 16:19:35'),(4,2,13,'Roles','fa-user','auth/roles',NULL,NULL,'2021-07-09 16:19:35'),(5,2,14,'Permission','fa-ban','auth/permissions',NULL,NULL,'2021-07-09 16:19:35'),(6,2,15,'Menu','fa-bars','auth/menu',NULL,NULL,'2021-07-09 16:19:35'),(7,2,16,'Operation log','fa-history','auth/logs',NULL,NULL,'2021-07-09 16:19:35'),(8,0,1,'用户管理','fa-users','/users',NULL,'2021-04-15 06:48:03','2021-04-15 06:48:09'),(9,0,2,'动态管理','fa-rss','/posts',NULL,'2021-04-15 06:49:03','2021-04-15 06:49:09'),(10,0,7,'系统配置','fa-cog','/system',NULL,'2021-04-27 08:41:53','2021-07-09 16:19:35'),(11,15,10,'TeleScope','fa-bug','/telescope',NULL,'2021-05-10 04:54:37','2021-07-09 16:19:35'),(12,0,4,'评论管理','fa-comments','/comments',NULL,'2021-05-10 04:55:15','2021-07-09 16:16:51'),(13,0,5,'通知管理','fa-pied-piper-alt','/notices',NULL,'2021-05-10 04:58:14','2021-07-09 16:16:51'),(14,15,9,'Logs','fa-file-text-o','/logs',NULL,'2021-05-14 05:01:22','2021-07-09 16:19:35'),(15,0,8,'运维管理','fa-ship',NULL,NULL,'2021-05-14 06:09:03','2021-07-09 16:19:35'),(16,0,3,'点赞管理','fa-thumbs-up','thumbs',NULL,'2021-07-09 16:16:19','2021-07-09 16:16:51'),(17,0,6,'用户报告','fa-bug','user-reports',NULL,'2021-07-09 16:19:29','2021-07-09 16:19:35'); | ||
/*!40000 ALTER TABLE `admin_menu` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_users` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_users`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_users` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`username` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`password` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `admin_users_username_unique` (`username`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_users` | ||
-- | ||
|
||
LOCK TABLES `admin_users` WRITE; | ||
/*!40000 ALTER TABLE `admin_users` DISABLE KEYS */; | ||
INSERT INTO `admin_users` VALUES (1,'admin','$2y$10$y0VCGI4wh0OwmDgYfcQ3JO23vWmv4bSn66Xj23h//ftJKLPyXhn36','Administrator','','JYCAsugaZNgFWIG87YJEsVQOK7hvp1NZUuy6nkd2uhAPJiCBWpyqn5RJluqF','2021-04-15 06:47:26','2021-05-14 05:02:59'); | ||
/*!40000 ALTER TABLE `admin_users` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_permissions` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_permissions`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_permissions` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`slug` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`http_method` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`http_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `admin_permissions_name_unique` (`name`), | ||
UNIQUE KEY `admin_permissions_slug_unique` (`slug`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_permissions` | ||
-- | ||
|
||
LOCK TABLES `admin_permissions` WRITE; | ||
/*!40000 ALTER TABLE `admin_permissions` DISABLE KEYS */; | ||
INSERT INTO `admin_permissions` VALUES (1,'All permission','*','','*',NULL,NULL),(2,'Dashboard','dashboard','GET','/',NULL,NULL),(3,'Login','auth.login','','/auth/login\r\n/auth/logout',NULL,NULL),(4,'User setting','auth.setting','GET,PUT','/auth/setting',NULL,NULL),(5,'Auth management','auth.management','','/auth/roles\r\n/auth/permissions\r\n/auth/menu\r\n/auth/logs',NULL,NULL); | ||
/*!40000 ALTER TABLE `admin_permissions` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_roles` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_roles`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_roles` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`slug` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `admin_roles_name_unique` (`name`), | ||
UNIQUE KEY `admin_roles_slug_unique` (`slug`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_roles` | ||
-- | ||
|
||
LOCK TABLES `admin_roles` WRITE; | ||
/*!40000 ALTER TABLE `admin_roles` DISABLE KEYS */; | ||
INSERT INTO `admin_roles` VALUES (1,'Administrator','administrator','2021-04-15 06:47:26','2021-04-15 06:47:26'); | ||
/*!40000 ALTER TABLE `admin_roles` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_role_menu` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_role_menu`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_role_menu` ( | ||
`role_id` int NOT NULL, | ||
`menu_id` int NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
KEY `admin_role_menu_role_id_menu_id_index` (`role_id`,`menu_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_role_menu` | ||
-- | ||
|
||
LOCK TABLES `admin_role_menu` WRITE; | ||
/*!40000 ALTER TABLE `admin_role_menu` DISABLE KEYS */; | ||
INSERT INTO `admin_role_menu` VALUES (1,2,NULL,NULL); | ||
/*!40000 ALTER TABLE `admin_role_menu` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_role_permissions` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_role_permissions`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_role_permissions` ( | ||
`role_id` int NOT NULL, | ||
`permission_id` int NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
KEY `admin_role_permissions_role_id_permission_id_index` (`role_id`,`permission_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_role_permissions` | ||
-- | ||
|
||
LOCK TABLES `admin_role_permissions` WRITE; | ||
/*!40000 ALTER TABLE `admin_role_permissions` DISABLE KEYS */; | ||
INSERT INTO `admin_role_permissions` VALUES (1,1,NULL,NULL); | ||
/*!40000 ALTER TABLE `admin_role_permissions` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_role_users` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_role_users`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_role_users` ( | ||
`role_id` int NOT NULL, | ||
`user_id` int NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
KEY `admin_role_users_role_id_user_id_index` (`role_id`,`user_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_role_users` | ||
-- | ||
|
||
LOCK TABLES `admin_role_users` WRITE; | ||
/*!40000 ALTER TABLE `admin_role_users` DISABLE KEYS */; | ||
INSERT INTO `admin_role_users` VALUES (1,1,NULL,NULL); | ||
/*!40000 ALTER TABLE `admin_role_users` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
-- | ||
-- Table structure for table `admin_user_permissions` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `admin_user_permissions`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `admin_user_permissions` ( | ||
`user_id` int NOT NULL, | ||
`permission_id` int NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
KEY `admin_user_permissions_user_id_permission_id_index` (`user_id`,`permission_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Dumping data for table `admin_user_permissions` | ||
-- | ||
|
||
LOCK TABLES `admin_user_permissions` WRITE; | ||
/*!40000 ALTER TABLE `admin_user_permissions` DISABLE KEYS */; | ||
/*!40000 ALTER TABLE `admin_user_permissions` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
||
-- Dump completed on 2021-07-10 0:38:01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?php | ||
|
||
namespace App\Admin\Controllers; | ||
|
||
use App\Models\Common\Comment; | ||
use App\Models\Post\Post; | ||
use Encore\Admin\Controllers\AdminController; | ||
use Encore\Admin\Form; | ||
use Encore\Admin\Grid; | ||
use Encore\Admin\Show; | ||
|
||
class CommentController extends AdminController | ||
{ | ||
/** | ||
* Title for current resource. | ||
* | ||
* @var string | ||
*/ | ||
protected $title = '评论'; | ||
|
||
/** | ||
* Make a grid builder. | ||
* | ||
* @return Grid | ||
*/ | ||
protected function grid() | ||
{ | ||
$grid = new Grid(new Comment()); | ||
|
||
$grid->model()->latest(); | ||
|
||
$grid->column('id', 'ID'); | ||
$grid->column('status', '状态')->select(Comment::$statuses); | ||
$grid->column('user.nickname', '发布者'); | ||
$grid->column('content', '内容'); | ||
$grid->column('entity_text', '目标实体')->display(function () { | ||
return $this->getEntityTextForAdmin(); | ||
}); | ||
|
||
$grid->column('thumb_up_num', '点赞数'); | ||
$grid->column('comment_num', '评论数'); | ||
|
||
$grid->column('created_at', '创建时间'); | ||
|
||
$grid->disableCreateButton(); | ||
|
||
$grid->actions(function ($actions) { | ||
$actions->disableEdit(); | ||
$actions->disableView(); | ||
}); | ||
|
||
$grid->filter(function($filter){ | ||
$filter->equal('status', '状态')->select(Comment::$statuses); | ||
$filter->like('user.nickname', '作者'); | ||
$filter->like('content', '内容'); | ||
}); | ||
|
||
return $grid; | ||
} | ||
|
||
/** | ||
* Make a show builder. | ||
* | ||
* @param mixed $id | ||
* @return Show | ||
*/ | ||
protected function detail($id) | ||
{ | ||
$show = new Show(Comment::findOrFail($id)); | ||
|
||
$show->field('id', 'Id'); | ||
$show->field('root_id', 'Root id'); | ||
$show->field('parent_id', 'Parent id'); | ||
$show->field('floor_number', 'Floor number'); | ||
$show->field('user_id', 'User id'); | ||
$show->field('entity_class', 'Entity type'); | ||
$show->field('entity_id', 'Entity id'); | ||
$show->field('content', 'Content'); | ||
$show->field('thumb_up_num', 'Thumb up num'); | ||
$show->field('thumb_down_num', 'Thumb down num'); | ||
$show->field('comment_num', 'Comment num'); | ||
$show->field('status', 'Status'); | ||
$show->field('created_at', 'Created at'); | ||
$show->field('updated_at', 'Updated at'); | ||
$show->field('deleted_at', 'Deleted at'); | ||
|
||
return $show; | ||
} | ||
|
||
/** | ||
* Make a form builder. | ||
* | ||
* @return Form | ||
*/ | ||
protected function form() | ||
{ | ||
$form = new Form(new Comment()); | ||
|
||
$form->number('root_id', 'Root id'); | ||
$form->number('parent_id', 'Parent id'); | ||
$form->number('floor_number', 'Floor number'); | ||
$form->number('user_id', 'User id'); | ||
$form->text('entity_class', 'Entity type'); | ||
$form->number('entity_id', 'Entity id'); | ||
$form->textarea('content', 'Content'); | ||
$form->number('thumb_up_num', 'Thumb up num'); | ||
$form->number('thumb_down_num', 'Thumb down num'); | ||
$form->number('comment_num', 'Comment num'); | ||
$form->switch('status', 'Status'); | ||
|
||
return $form; | ||
} | ||
} |
Oops, something went wrong.