├── .gitattributes ├── .gitignore ├── .user.ini ├── Addons ├── .gitignore └── packlist.php ├── App ├── Handler │ └── AbstractMigration.php ├── HttpController │ ├── Api │ │ ├── Auths.php │ │ ├── Base.php │ │ ├── Roles.php │ │ ├── System.php │ │ └── Users.php │ ├── Common │ │ └── Services │ │ │ └── MenuService.php │ ├── Index.php │ ├── Panel │ │ └── Plugs.php │ └── Router.php ├── IpList.php ├── Model │ ├── AuthModel.php │ ├── BaseModel.php │ ├── RoleModel.php │ ├── SystemModel.php │ └── UserModel.php └── Utility │ └── Event.php ├── EasySwooleEvent.php ├── README.md ├── backup └── .gitignore ├── bootstrap.php ├── composer.json ├── database └── migrations │ ├── 20201112020332_system.php │ ├── 20201112021338_auth.php │ ├── 20201112022114_roles.php │ ├── 20201112022559_user.php │ └── 20201201145022_plugs_installed.php ├── dev.php ├── phinx.php ├── produce.php ├── public ├── .user.ini ├── README.md ├── favicon.ico ├── index.html ├── js │ └── jwt-decode.js ├── json │ ├── goods.js │ ├── login.js │ ├── menu.js │ └── menu_back.js ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js ├── nepadmin │ ├── config.js │ ├── css │ │ ├── admin.blue.css │ │ ├── admin.css │ │ ├── formSelects.css │ │ └── views │ │ │ └── user │ │ │ └── login.blue.css │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── ie8hack │ │ ├── html5shiv.min.js │ │ ├── placeholders.min.js │ │ └── respond.min.js │ ├── images │ │ └── login-bg.png │ ├── index.js │ ├── lay │ │ ├── extends │ │ │ ├── clipboard.js │ │ │ ├── echarts.js │ │ │ ├── echartsTheme.js │ │ │ ├── formSelects-v4.js │ │ │ ├── helper.js │ │ │ ├── md5.js │ │ │ └── qrcode.js │ │ └── modules │ │ │ ├── admin.js │ │ │ ├── api.js │ │ │ ├── dropdown.js │ │ │ ├── loadBar.js │ │ │ └── view.js │ ├── nestable.js │ ├── siam.js │ ├── views │ │ ├── .gitignore │ │ ├── auths │ │ │ └── list.html │ │ ├── chart │ │ │ └── index.html │ │ ├── detail │ │ │ ├── edit-article.html │ │ │ └── plan.html │ │ ├── exception │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ └── 500.html │ │ ├── icon │ │ │ └── index.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── list │ │ │ ├── card.html │ │ │ └── table.html │ │ ├── module │ │ │ ├── admin.html │ │ │ ├── helper.html │ │ │ └── loadbar.html │ │ ├── roles │ │ │ └── list.html │ │ └── user │ │ │ ├── list.html │ │ │ └── login.html │ └── views_back │ │ ├── chart │ │ └── index.html │ │ ├── detail │ │ ├── edit-article.html │ │ └── plan.html │ │ ├── exception │ │ ├── 403.html │ │ ├── 404.html │ │ └── 500.html │ │ ├── form │ │ ├── basic.html │ │ └── group.html │ │ ├── icon │ │ └── index.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── list │ │ ├── card.html │ │ └── table.html │ │ ├── module │ │ ├── admin.html │ │ ├── helper.html │ │ └── loadbar.html │ │ ├── popup │ │ └── phone.html │ │ ├── table │ │ └── editcheck.html │ │ └── user │ │ └── login.html ├── siam_admin.sql └── temimg │ ├── easysiam.jpg │ ├── easysiam2.jpg │ └── easysiam3.jpg └── restart_shell /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyswoole-panel/easyswoole_panel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyswoole-panel/easyswoole_panel/HEAD/.gitignore -------------------------------------------------------------------------------- /.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyswoole-panel/easyswoole_panel/HEAD/.user.ini -------------------------------------------------------------------------------- /Addons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !packlist.php -------------------------------------------------------------------------------- /Addons/packlist.php: -------------------------------------------------------------------------------- 1 |