mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-10-31 07:56:23 +01:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			feature/do
			...
			feature/cr
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | ce2d3fa669 | ||
|   | d382916418 | 
| @@ -1,65 +0,0 @@ | |||||||
| Thumbs.db |  | ||||||
| .DS_Store |  | ||||||
| .idea |  | ||||||
|  |  | ||||||
| # |  | ||||||
| /.htaccess |  | ||||||
|  |  | ||||||
| # composer |  | ||||||
| composer.phar |  | ||||||
| vendor |  | ||||||
|  |  | ||||||
| # npm |  | ||||||
| node_modules |  | ||||||
| tools/ext |  | ||||||
|  |  | ||||||
| # cypress |  | ||||||
| cypress.env.json |  | ||||||
| cypress/e2e/2-advanced-examples |  | ||||||
| cypress/screenshots |  | ||||||
|  |  | ||||||
| # created by release.sh |  | ||||||
| releases |  | ||||||
| tmp |  | ||||||
|  |  | ||||||
| config.local.php |  | ||||||
| !docker/config.local.php |  | ||||||
|  |  | ||||||
| # all custom templates |  | ||||||
| templates/* |  | ||||||
| !templates/tibiacom |  | ||||||
| !templates/kathrine |  | ||||||
|  |  | ||||||
| # guild images |  | ||||||
| images/guilds/* |  | ||||||
| !images/guilds/default.gif |  | ||||||
|  |  | ||||||
| # editor images |  | ||||||
| images/editor/* |  | ||||||
| !images/editor/index.html |  | ||||||
|  |  | ||||||
| # gallery images |  | ||||||
| images/gallery/* |  | ||||||
| !images/gallery/index.html |  | ||||||
| !images/gallery/demon.jpg |  | ||||||
| !images/gallery/demon_thumb.gif |  | ||||||
|  |  | ||||||
| # cache |  | ||||||
| system/cache/* |  | ||||||
| !system/cache/index.html |  | ||||||
| !system/cache/twig/index.html |  | ||||||
| !system/cache/signatures/index.html |  | ||||||
| !system/cache/plugins/index.html |  | ||||||
| !system/cache/persistent/index.html |  | ||||||
|  |  | ||||||
| # logs |  | ||||||
| system/logs/* |  | ||||||
| !system/logs/index.html |  | ||||||
|  |  | ||||||
| # data |  | ||||||
| system/data/* |  | ||||||
| !system/data/index.html |  | ||||||
|  |  | ||||||
| # php sessions |  | ||||||
| system/php_sessions/* |  | ||||||
| !system/php_sessions/index.html |  | ||||||
| @@ -15,5 +15,5 @@ trim_trailing_whitespace = false | |||||||
| [{composer.json,package.json}] | [{composer.json,package.json}] | ||||||
| indent_style = space | indent_style = space | ||||||
|  |  | ||||||
| [{package.json, *.yml}] | [package.json] | ||||||
| indent_size = 2 | indent_size = 2 | ||||||
							
								
								
									
										98
									
								
								.github/workflows/cypress.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										98
									
								
								.github/workflows/cypress.yml
									
									
									
									
										vendored
									
									
								
							| @@ -22,9 +22,8 @@ jobs: | |||||||
|     strategy: |     strategy: | ||||||
|       fail-fast: false |       fail-fast: false | ||||||
|       matrix: |       matrix: | ||||||
|         php-versions: [ '8.1', '8.2', '8.3' ] |         php-versions: [ '7.4', '8.0', '8.1' ] | ||||||
|         ots: ['tfs-1.4', 'canary-3.1.2'] # TODO: add 'tfs-master' (actually doesn't work cause AAC doesn't support reading .env configuration) |     name: MyAAC on PHP ${{ matrix.php-versions }} | ||||||
|     name: Cypress (PHP ${{ matrix.php-versions }}, ${{ matrix.ots }}) |  | ||||||
|     steps: |     steps: | ||||||
|         - name: 📌 MySQL Start & init & show db |         - name: 📌 MySQL Start & init & show db | ||||||
|           run: | |           run: | | ||||||
| @@ -33,81 +32,47 @@ jobs: | |||||||
|             mysql -e "SHOW DATABASES" -uroot -proot |             mysql -e "SHOW DATABASES" -uroot -proot | ||||||
|  |  | ||||||
|         - name: Checkout MyAAC |         - name: Checkout MyAAC | ||||||
|           uses: actions/checkout@v4 |           uses: actions/checkout@v3 | ||||||
|           with: |           with: | ||||||
|             ref: develop |             ref: 0.9 | ||||||
|  |  | ||||||
|         - uses: actions/setup-node@v4 |  | ||||||
|           with: |  | ||||||
|             node-version: 18 |  | ||||||
|         - run: npm ci |  | ||||||
|  |  | ||||||
|         - name: Checkout TFS |         - name: Checkout TFS | ||||||
|           uses: actions/checkout@v4 |           uses: actions/checkout@v3 | ||||||
|           if: matrix.ots == 'tfs-1.4' |  | ||||||
|           with: |           with: | ||||||
|             repository: otland/forgottenserver |             repository: otland/forgottenserver | ||||||
|             ref: 1.4 |             ref: 1.4 | ||||||
|             path: ots |             path: tfs | ||||||
|  |  | ||||||
|         - name: Checkout TFS |         - name: Import TFS Schema | ||||||
|           uses: actions/checkout@v4 |  | ||||||
|           if: matrix.ots == 'tfs-master' |  | ||||||
|           with: |  | ||||||
|             repository: otland/forgottenserver |  | ||||||
|             ref: master |  | ||||||
|             path: ots |  | ||||||
|  |  | ||||||
|         - name: Checkout Canary |  | ||||||
|           uses: actions/checkout@v4 |  | ||||||
|           if: matrix.ots == 'canary-3.1.2' |  | ||||||
|           with: |  | ||||||
|             repository: opentibiabr/canary |  | ||||||
|             ref: v3.1.2 |  | ||||||
|             path: ots |  | ||||||
|  |  | ||||||
|         - name: Import OTS Schema |  | ||||||
|           run: | |           run: | | ||||||
|               mysql -uroot -proot myaac < ots/schema.sql |               mysql -uroot -proot myaac < tfs/schema.sql | ||||||
|  |  | ||||||
|         - name: Rename config.lua |         - name: Rename config.lua | ||||||
|           run: mv ots/config.lua.dist ots/config.lua |           run: mv tfs/config.lua.dist tfs/config.lua | ||||||
|  |  | ||||||
|         - name: Replace mysqlUser (TFS 1.4) |         - name: Replace mysqlUser | ||||||
|           uses: jacobtomlinson/gha-find-replace@v3 |           uses: jacobtomlinson/gha-find-replace@v2 | ||||||
|           if: matrix.ots == 'tfs-1.4' |  | ||||||
|           with: |           with: | ||||||
|             find: 'mysqlUser = "forgottenserver"' |             find: 'mysqlUser = "forgottenserver"' | ||||||
|             replace: 'mysqlUser = "root"' |             replace: 'mysqlUser = "root"' | ||||||
|             regex: false |             regex: false | ||||||
|             include: 'ots/config.lua' |             include: 'tfs/config.lua' | ||||||
|  |  | ||||||
|         - name: Replace mysqlPass (TFS 1.4) |         - name: Replace mysqlPass | ||||||
|           uses: jacobtomlinson/gha-find-replace@v3 |           uses: jacobtomlinson/gha-find-replace@v2 | ||||||
|           if: matrix.ots == 'tfs-1.4' |  | ||||||
|           with: |           with: | ||||||
|               find: 'mysqlPass = ""' |               find: 'mysqlPass = ""' | ||||||
|               replace: 'mysqlPass = "root"' |               replace: 'mysqlPass = "root"' | ||||||
|               regex: false |               regex: false | ||||||
|               include: 'ots/config.lua' |               include: 'tfs/config.lua' | ||||||
|  |  | ||||||
|         - name: Replace mysqlDatabase (TFS 1.4) |         - name: Replace mysqlDatabase | ||||||
|           uses: jacobtomlinson/gha-find-replace@v3 |           uses: jacobtomlinson/gha-find-replace@v2 | ||||||
|           if: matrix.ots == 'tfs-1.4' |  | ||||||
|           with: |           with: | ||||||
|               find: 'mysqlDatabase = "forgottenserver"' |               find: 'mysqlDatabase = "forgottenserver"' | ||||||
|               replace: 'mysqlDatabase = "myaac"' |               replace: 'mysqlDatabase = "myaac"' | ||||||
|               regex: false |               regex: false | ||||||
|               include: 'ots/config.lua' |               include: 'tfs/config.lua' | ||||||
|  |  | ||||||
|         - name: Replace mysqlDatabase (Canary) |  | ||||||
|           uses: jacobtomlinson/gha-find-replace@v3 |  | ||||||
|           if: matrix.ots == 'canary-3.1.2' |  | ||||||
|           with: |  | ||||||
|               find: 'mysqlDatabase = "otservbr-global"' |  | ||||||
|               replace: 'mysqlDatabase = "myaac"' |  | ||||||
|               regex: false |  | ||||||
|               include: 'ots/config.lua' |  | ||||||
|  |  | ||||||
|         - name: Setup PHP |         - name: Setup PHP | ||||||
|           uses: shivammathur/setup-php@v2 |           uses: shivammathur/setup-php@v2 | ||||||
| @@ -120,13 +85,13 @@ jobs: | |||||||
|           run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT |           run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||||||
|  |  | ||||||
|         - name: Cache composer dependencies |         - name: Cache composer dependencies | ||||||
|           uses: actions/cache@v4 |           uses: actions/cache@v3 | ||||||
|           with: |           with: | ||||||
|             path: ${{ steps.composer-cache.outputs.dir }} |             path: ${{ steps.composer-cache.outputs.dir }} | ||||||
|             # Use composer.json for key, if composer.lock is not committed. |             # Use composer.json for key, if composer.lock is not committed. | ||||||
|             key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} |             # key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||||||
|             #key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} |             key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||||||
|             restore-keys: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} |             restore-keys: ${{ runner.os }}-composer- | ||||||
|  |  | ||||||
|         - name: Install Composer dependencies |         - name: Install Composer dependencies | ||||||
|           run: composer install --no-progress --prefer-dist --optimize-autoloader |           run: composer install --no-progress --prefer-dist --optimize-autoloader | ||||||
| @@ -135,28 +100,21 @@ jobs: | |||||||
|           run: nohup php -S localhost:8080 > php.log 2>&1 & |           run: nohup php -S localhost:8080 > php.log 2>&1 & | ||||||
|  |  | ||||||
|         - name: Cypress Run |         - name: Cypress Run | ||||||
|           uses: cypress-io/github-action@v6 |           uses: cypress-io/github-action@v5 | ||||||
|           env: |           env: | ||||||
|             CYPRESS_URL: http://localhost:8080 |             CYPRESS_URL: http://localhost:8080 | ||||||
|             CYPRESS_SERVER_PATH: /home/runner/work/myaac/myaac/ots |             CYPRESS_SERVER_PATH: /home/runner/work/myaac/myaac/tfs | ||||||
|  |  | ||||||
|         - name: Save screenshots |         - name: Save screenshots | ||||||
|           uses: actions/upload-artifact@v4 |           uses: actions/upload-artifact@v3 | ||||||
|           if: always() |           if: always() | ||||||
|           with: |           with: | ||||||
|             name: cypress-screenshots-${{ matrix.php-versions }}-${{ matrix.ots }} |             name: cypress-screenshots | ||||||
|             path: cypress/screenshots |             path: cypress/screenshots | ||||||
|  |  | ||||||
|         - name: Upload Cypress Videos |         - name: Upload Cypress Videos | ||||||
|           uses: actions/upload-artifact@v4 |           uses: actions/upload-artifact@v3 | ||||||
|           if: always() |           if: always() | ||||||
|           with: |           with: | ||||||
|             name: cypress-videos-${{ matrix.php-versions }}-${{ matrix.ots }} |             name: cypress-videos | ||||||
|             path: cypress/videos |             path: cypress/videos | ||||||
|  |  | ||||||
|         - name: Upload PHP Logs |  | ||||||
|           uses: actions/upload-artifact@v4 |  | ||||||
|           if: always() |  | ||||||
|           with: |  | ||||||
|             name: php-log-${{ matrix.php-versions }}-${{ matrix.ots }} |  | ||||||
|             path: php.log |  | ||||||
|   | |||||||
							
								
								
									
										46
									
								
								.github/workflows/phpstan.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										46
									
								
								.github/workflows/phpstan.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,46 +0,0 @@ | |||||||
| name: "PHPStan" |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   pull_request: |  | ||||||
|     branches: [develop] |  | ||||||
|   push: |  | ||||||
|     branches: [develop] |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|   tests: |  | ||||||
|     name: PhpStan on PHP ${{ matrix.php-versions }} |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|  |  | ||||||
|     strategy: |  | ||||||
|       fail-fast: false |  | ||||||
|       matrix: |  | ||||||
|         php-versions: [ '8.1', '8.2', '8.3' ] |  | ||||||
|     steps: |  | ||||||
|       - name: "Checkout" |  | ||||||
|         uses: "actions/checkout@v4" |  | ||||||
|  |  | ||||||
|       - name: "Install PHP" |  | ||||||
|         uses: "shivammathur/setup-php@v2" |  | ||||||
|         with: |  | ||||||
|           coverage: "none" |  | ||||||
|           extensions: "intl, zip" |  | ||||||
|           ini-values: "memory_limit=-1" |  | ||||||
|           php-version: "${{ matrix.php-version }}" |  | ||||||
|  |  | ||||||
|       - name: Get composer cache directory |  | ||||||
|         id: composer-cache |  | ||||||
|         run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT |  | ||||||
|  |  | ||||||
|       - name: Cache composer dependencies |  | ||||||
|         uses: actions/cache@v4 |  | ||||||
|         with: |  | ||||||
|           path: ${{ steps.composer-cache.outputs.dir }} |  | ||||||
|           # Use composer.json for key, if composer.lock is not committed. |  | ||||||
|           key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} |  | ||||||
|           restore-keys: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} |  | ||||||
|  |  | ||||||
|       - name: "Install composer dependencies" |  | ||||||
|         run: "composer install" |  | ||||||
|  |  | ||||||
|       - name: "Run PHPStan" |  | ||||||
|         run: "/usr/bin/php vendor/bin/phpstan analyse" |  | ||||||
							
								
								
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -6,24 +6,21 @@ Thumbs.db | |||||||
| /.htaccess | /.htaccess | ||||||
|  |  | ||||||
| # composer | # composer | ||||||
| composer.phar | composer.lock | ||||||
| vendor | vendor | ||||||
|  |  | ||||||
| # npm | # npm | ||||||
| node_modules | node_modules | ||||||
| tools/ext |  | ||||||
|  |  | ||||||
| # cypress | # cypress | ||||||
| cypress.env.json | cypress.env.json | ||||||
| cypress/e2e/2-advanced-examples | cypress/e2e/2-advanced-examples | ||||||
| cypress/screenshots |  | ||||||
|  |  | ||||||
| # created by release.sh | # created by release.sh | ||||||
| releases | releases | ||||||
| tmp | tmp | ||||||
|  |  | ||||||
| config.local.php | config.local.php | ||||||
| !docker/config.local.php |  | ||||||
|  |  | ||||||
| # all custom templates | # all custom templates | ||||||
| templates/* | templates/* | ||||||
| @@ -50,7 +47,6 @@ system/cache/* | |||||||
| !system/cache/twig/index.html | !system/cache/twig/index.html | ||||||
| !system/cache/signatures/index.html | !system/cache/signatures/index.html | ||||||
| !system/cache/plugins/index.html | !system/cache/plugins/index.html | ||||||
| !system/cache/persistent/index.html |  | ||||||
|  |  | ||||||
| # logs | # logs | ||||||
| system/logs/* | system/logs/* | ||||||
|   | |||||||
							
								
								
									
										78
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										78
									
								
								CHANGELOG.md
									
									
									
									
									
								
							| @@ -1,60 +1,8 @@ | |||||||
| # Changelog | # Changelog | ||||||
|  |  | ||||||
| ## [1.0-RC.2 - 25.10.2024] | ## [0.9.0-alpha - 02.06.2023] | ||||||
|  |  | ||||||
| Still waiting for your reports about bugs found in this release. We are very close to stable release. | Minimum PHP version for this release is 7.2.5. | ||||||
|  |  | ||||||
| ### Added |  | ||||||
| * feat: rate limit settings for blocking accounts login attempts (@gpedro, #266) |  | ||||||
| * search by email in accounts editor (https://github.com/slawkens/myaac/commit/c2ec46824621468f2a1cb4046805c485ed13fea5) |  | ||||||
| * New hooks in account manage + create (https://github.com/slawkens/myaac/commit/93641fc68ac9a5f1479329e2bd41380c19534d5d) |  | ||||||
|  |  | ||||||
| ### Changed |  | ||||||
| * chore: drop raw queries + accounts - search by email + accounts - required min size for search by account number (@gpedro, #266) |  | ||||||
| * Use https for outfit & item images (https://github.com/slawkens/myaac/commit/71c00aa5e01fbdfd88802912e200dd1025976231) |  | ||||||
| * Do not require players & guilds tables on install (https://github.com/slawkens/myaac/commit/779aa152fa940261c9b161533946f44e288597a2) |  | ||||||
| * Do not create player if there is no players table in db (https://github.com/slawkens/myaac/commit/201f95caa8b70e88fa651eac8c3c3aa7cd765bd0) |  | ||||||
|  |  | ||||||
| ### Fixed |  | ||||||
| * Highscore frags fixed for TFS 0.3 (@Scrollog, #263) |  | ||||||
| * Missing groups variable #262. thanks, @Scrollog for reporting (https://github.com/slawkens/myaac/commit/8d8bdb6dac6df21672ac77288fff2f2f8d6eb665) |  | ||||||
| * Verified email for login.php (@gpedro, #265) |  | ||||||
| * Warning if core.account_country is disabled (https://github.com/slawkens/myaac/commit/ab73d60c61e14a1cacdb6cfbf7f89f4bf3be0833) |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ## [1.0-RC.1 - 23.07.2024] |  | ||||||
|  |  | ||||||
| Changes since 1.0-beta: |  | ||||||
|  |  | ||||||
| ### Added |  | ||||||
| * Feat: Hooks priority (https://github.com/slawkens/myaac/commit/dc17b701da053e04bfa64e21be9247a4f07505e1) |  | ||||||
| * Make autoload of pages, commands and themes configurable (https://github.com/slawkens/myaac/commit/c1d4b4f80cd6bb85507ee9471e47013955a26a91) |  | ||||||
| * Fraggers in characters page for TFS 1.x and canary (https://github.com/slawkens/myaac/commit/42f99c3edc8de39cccc5632cb42e88b24579c5a6) |  | ||||||
| * New hooks: HOOK_INSTALL_FINISH, HOOK_ACCOUNT_CREATE_CHARACTER_* (https://github.com/slawkens/myaac/commit/08ac8ebade106521a5c7396faa5ce7006e629f7c, https://github.com/slawkens/myaac/commit/45dda5e834ff2059faea6ef9be2efa76f1723cbd) |  | ||||||
|  |  | ||||||
| ### Changed |  | ||||||
| * Allow account_create_character_create even if account_mail_verify is activated (https://github.com/slawkens/myaac/commit/203e411b626fe62401a4b74a48420769e512aa39) |  | ||||||
| * Create guild_rank entries, in case MySQL trigger not loaded (https://github.com/slawkens/myaac/commit/d9c1b2507c81f306970642b35e4bf5f7cc04a6f2, https://github.com/slawkens/myaac/commit/47a19e85dd84e9f3b39a1b29cfc2c04b004832b9) |  | ||||||
| * Set Admin Account verified by default (https://github.com/slawkens/myaac/commit/cd49dfc79942f3301ce9c0b8d899b9f39bda9a41) |  | ||||||
| * Refactor account routes into sub folders (https://github.com/slawkens/myaac/commit/bdc0c43d3fd3a51030c3e916bdb9f008468f5ecd) |  | ||||||
| * Order towns by id (https://github.com/slawkens/myaac/commit/9ea2a5067fc4b75de395f381577b18914132ad84) |  | ||||||
| * Do not create news about myaac, if any news already exist (on installation (https://github.com/slawkens/myaac/commit/504242fb846b73b56b87bc1e39d070687ad7f5b4) |  | ||||||
|  |  | ||||||
| ### Fixed |  | ||||||
| * Not working google recaptcha plugin (https://github.com/slawkens/myaac/commit/a1bcb217ecf4e21fd58da4ba491da1852029898a) |  | ||||||
| * Not working account create if account_country is disabled (https://github.com/slawkens/myaac/commit/933b681a9fcdbb6283e0469b3806d2ded492d232) |  | ||||||
| * Account verify - do not allow login without verified email (Thanks @anyeor, https://github.com/slawkens/myaac/commit/fcb13f3c0fb8ceafda0bd614a229a26a269432bd) |  | ||||||
| * Detect tools/ext exists on install to prevent broken installs (https://github.com/slawkens/myaac/commit/10a739773c4f2911876bc802a0ee0537c3e00a92) |  | ||||||
| * Cache reloading each time page refreshes (https://github.com/slawkens/myaac/commit/ec96985872057340112f65073efc0c4bf86dddb0) |  | ||||||
| * Highscores frags for TFS 1.x and canary (https://github.com/slawkens/myaac/commit/a04d186c22912915f0a7873dfe677ef3b5a23c79) |  | ||||||
| * Monsters page: monster not found exception (https://github.com/slawkens/myaac/commit/ef79b99b8acc179f14b8475547347d9daca27512) |  | ||||||
| * Fixed bug if \<flags\> are not present in monster.xml (https://github.com/slawkens/myaac/commit/57b47ab7983f625c7c0ef4f5303a4d07ef172786) |  | ||||||
| * fastRoute duplicate errors (https://github.com/slawkens/myaac/commit/4c0739d3e93812dff0c33849ea3f38e4e49113ac) |  | ||||||
| * useGuildNick displaying (https://github.com/slawkens/myaac/commit/0db0ec1aa47e044c26bc403ff5078a2115d086f8) |  | ||||||
|  |  | ||||||
| ## [1.0-beta - 18.05.2024] |  | ||||||
|  |  | ||||||
| Minimum PHP version for this release is 8.1. |  | ||||||
|  |  | ||||||
| ### Added | ### Added | ||||||
| * reworked Admin Panel (@Leesneaks, @gpedro, @slawkens) | * reworked Admin Panel (@Leesneaks, @gpedro, @slawkens) | ||||||
| @@ -63,26 +11,17 @@ Minimum PHP version for this release is 8.1. | |||||||
|   * new Dashboard: statistics, server status |   * new Dashboard: statistics, server status | ||||||
|   * new Admin Bar showed on top when admin logged in |   * new Admin Bar showed on top when admin logged in | ||||||
|   * new page: Server Data, to reload server data |   * new page: Server Data, to reload server data | ||||||
|     * Towns, NPCs & Items are stored in permanent cache |  | ||||||
|   * new pages: mass account & teleport tools |   * new pages: mass account & teleport tools | ||||||
|   * changelogs editor |   * changelogs editor | ||||||
|   * revised Accounts & Players editors |   * revised Accounts & Players editors | ||||||
|   * option to add/modify admin menus with plugins |   * option to add/modify menus with plugins | ||||||
|   * option to enable/disable plugins |   * option to enable/disable plugins | ||||||
|   * better, updated TinyMCE editor (v6.x) |   * better, updated TinyMCE editor (v6.x) | ||||||
|     * with option to upload images |     * with option to upload images | ||||||
|   * list of open source libraries used in project page |   * list of open source libraries used in project | ||||||
| * auto-loading of themes, commands & pages from plugins/ folder. You need just to place them in correct folder and they will be loaded automatically - this allows better customization, without interfering with core AAC folders. This will allow in the future automatic updates for plugins as well the AAC as whole. |  | ||||||
| * config.php moved to Admin Panel -> Settings page |  | ||||||
| * new console script: aac - using symfony/console |  | ||||||
|   * usage: `php aac` (will list all commands by default) |  | ||||||
|   * example: `php aac cache:clear` |  | ||||||
|   * example: `php aac plugin:install theme-example.zip` |  | ||||||
| * replace POT Query Builder to Eloquent ORM. Not 100% yet - in some places there is still old $db approach used (@gpedro) (https://github.com/slawkens/myaac/pull/230) |  | ||||||
| * brand new charming installation page (by @fernandomatos) | * brand new charming installation page (by @fernandomatos) | ||||||
|   * using Bootstrap |   * using Bootstrap | ||||||
| * new pages router: nikic/fast-route, allowing for better customisation | * new pages router: nikic/fast-route, allowing for better customisation | ||||||
| * Plugin cronjobs: central control of the cronjobs |  | ||||||
| * Guild Wars support (available as plugin) | * Guild Wars support (available as plugin) | ||||||
| * support for login and create account only by email (configurable) | * support for login and create account only by email (configurable) | ||||||
|   * with no need for account name |   * with no need for account name | ||||||
| @@ -92,13 +31,10 @@ Minimum PHP version for this release is 8.1. | |||||||
|   * suggest account number option |   * suggest account number option | ||||||
| * many new functions, hooks and configurables | * many new functions, hooks and configurables | ||||||
| * better Exception Handler (Whoops - https://github.com/filp/whoops) | * better Exception Handler (Whoops - https://github.com/filp/whoops) | ||||||
| * automated website tests (using Cypress) | * add Cypress testing | ||||||
| * csrf protection (https://github.com/slawkens/myaac/pull/235) |  | ||||||
| * option to restrict Page view to specified group of users (Not-Logged in, logged-in players, tutors, gamemasters etc.) |  | ||||||
| * phpdebug bar (http://phpdebugbar.com/). Activated if env == 'dev', can be also activated in production by enabling "enable_debugbar" in local config |  | ||||||
|  |  | ||||||
| ### Changed | ### Changed | ||||||
| * Composer and NPM is now used for external libraries like: Twig, PHPMailer, fast-route, jQuery, Bootstrap etc. | * Composer is now used for external libraries like: Twig, PHPMailer, fast-route etc. | ||||||
| * mail support is disabled on fresh install, can be manually enabled by user | * mail support is disabled on fresh install, can be manually enabled by user | ||||||
| * disable add php pages in admin panel for security. Option to disable plugins upload | * disable add php pages in admin panel for security. Option to disable plugins upload | ||||||
| * visitors counter shows now user browser, and also if its bot | * visitors counter shows now user browser, and also if its bot | ||||||
| @@ -109,7 +45,7 @@ Minimum PHP version for this release is 8.1. | |||||||
| 	* Highscores | 	* Highscores | ||||||
| 		* frags works for TFS 1.x | 		* frags works for TFS 1.x | ||||||
| 		* cached | 		* cached | ||||||
| 	* Monsters | 	* creatures | ||||||
| * moved pages to Twig: | * moved pages to Twig: | ||||||
|   * experience stages |   * experience stages | ||||||
| * update player_deaths entries on name change | * update player_deaths entries on name change | ||||||
|   | |||||||
| @@ -8,11 +8,7 @@ Fernando Matos <fernando@pixele.com.br> | |||||||
| Lee <42119604+Leesneaks@users.noreply.github.com> | Lee <42119604+Leesneaks@users.noreply.github.com> | ||||||
| caio <caio.zucoli@gmail.com> | caio <caio.zucoli@gmail.com> | ||||||
| slawkens <slawkens@gmail.com> | slawkens <slawkens@gmail.com> | ||||||
| tobi132 <tobi132@gmx.net> | tobi132 <52947952+tobi132@users.noreply.github.com> | ||||||
| vankk <nwtr.otland@hotmail.com> | vankk <nwtr.otland@hotmail.com> | ||||||
| whiteblXK <krzys16001@gmail.com> | whiteblXK <krzys16001@gmail.com> | ||||||
| xitobuh <jonas.hockert92@gmail.com> | xitobuh <jonas.hockert92@gmail.com> | ||||||
| Danilo Pucci <dnlps@hotmail.com> |  | ||||||
| gpedro <gpedro831@gmail.com> |  | ||||||
| Matheus Collier <matheuscollier@gmail.com> |  | ||||||
| SRNT-GG <95472530+SRNT-GG@users.noreply.github.com> |  | ||||||
|   | |||||||
							
								
								
									
										24
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								README.md
									
									
									
									
									
								
							| @@ -10,20 +10,21 @@ Official website: https://my-aac.org | |||||||
| [](https://discord.gg/2J39Wus) | [](https://discord.gg/2J39Wus) | ||||||
| [](https://github.com/slawkens/myaac/issues?q=is%3Aissue+is%3Aclosed) | [](https://github.com/slawkens/myaac/issues?q=is%3Aissue+is%3Aclosed) | ||||||
|  |  | ||||||
| | Version | Status                 | Branch  | Requirements   | | | Version    | Status                                    | Branch  | Requirements   | | ||||||
| |:--------|:-----------------------|:--------|:---------------| | |:-----------|:------------------------------------------|:--------|:---------------| | ||||||
| | **1.x** | **Active development** | develop | **PHP >= 8.1** | | | **0.10.x** | **Active development**                    | develop | **PHP >= 8.0** | | ||||||
| | 0.9.x   | Not developed anymore  | 0.9     | PHP >= 7.2.5   | | | 0.9.x      | Active support                            | 0.9     | PHP >= 7.2.5   | | ||||||
| | 0.8.x   | Active support         | master  | PHP >= 7.2.5   | | | 0.8.x      | Active support                            | master  | PHP >= 7.2.5   | | ||||||
| | 0.7.x   | End Of Life            | 0.7     | PHP >= 5.3.3   | | | 0.7.x      | End Of Life                               | 0.7     | PHP >= 5.3.3   | | ||||||
|  |  | ||||||
| ### Requirements | ### Requirements | ||||||
|  |  | ||||||
|  | 	- PHP 8.0 or later | ||||||
| 	- MySQL database | 	- MySQL database | ||||||
| 	- PHP Extensions: pdo, xml, json | 	- PDO PHP Extension | ||||||
| 	- (optional) apache2 mod_rewrite (to use friendly_urls) | 	- XML PHP Extension | ||||||
| 	- (optional) zip PHP Extension (to install plugins) | 	- (optional) ZIP PHP Extension | ||||||
| 	- (optional) gd PHP Extension (for generating signature images) | 	- (optional) mod_rewrite to use friendly_urls | ||||||
|  |  | ||||||
| ### Installation | ### Installation | ||||||
|  |  | ||||||
| @@ -47,8 +48,7 @@ Official website: https://my-aac.org | |||||||
|  |  | ||||||
| ### Configuration | ### Configuration | ||||||
|  |  | ||||||
| Check *config.php* to get more informations. (Notice: MyAAC 1.0+ doesn't use config.php anymore, it has been moved to Admin Panel - Settings page). | Check *config.php* to get more informations. | ||||||
|  |  | ||||||
| Use *config.local.php* for your local configuration changes. | Use *config.local.php* for your local configuration changes. | ||||||
|  |  | ||||||
| ### Branches | ### Branches | ||||||
|   | |||||||
							
								
								
									
										36
									
								
								aac
									
									
									
									
									
								
							
							
						
						
									
										36
									
								
								aac
									
									
									
									
									
								
							| @@ -1,36 +0,0 @@ | |||||||
| #!/usr/bin/env php |  | ||||||
| <?php |  | ||||||
|  |  | ||||||
| require_once __DIR__ . '/common.php'; |  | ||||||
|  |  | ||||||
| if(!IS_CLI) { |  | ||||||
| 	echo 'This script can be run only in command line mode.'; |  | ||||||
| 	exit(1); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| require_once SYSTEM . 'functions.php'; |  | ||||||
|  |  | ||||||
| define('SELF_NAME', basename(__FILE__)); |  | ||||||
|  |  | ||||||
| use MyAAC\Plugins; |  | ||||||
| use Symfony\Component\Console\Application; |  | ||||||
|  |  | ||||||
| $application = new Application('MyAAC', MYAAC_VERSION); |  | ||||||
|  |  | ||||||
| $commandsGlob = glob(SYSTEM . 'src/Commands/*.php'); |  | ||||||
| foreach ($commandsGlob as $item) { |  | ||||||
| 	$name = pathinfo($item, PATHINFO_FILENAME); |  | ||||||
| 	if ($name == 'Command') { // ignore base Command class |  | ||||||
| 		continue; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$commandPre = '\\MyAAC\Commands\\'; |  | ||||||
| 	$application->add(new ($commandPre . $name)); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $pluginCommands = Plugins::getCommands(); |  | ||||||
| foreach ($pluginCommands as $item) { |  | ||||||
| 	$application->add(require $item); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $application->run(); |  | ||||||
| @@ -1,22 +0,0 @@ | |||||||
| <?php |  | ||||||
|  |  | ||||||
| $hooks->register('debugbar_admin_head_end', HOOK_ADMIN_HEAD_END, function ($params) { |  | ||||||
| 	global $debugBar; |  | ||||||
|  |  | ||||||
| 	if (!isset($debugBar)) { |  | ||||||
| 		return; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$debugBarRenderer = $debugBar->getJavascriptRenderer(); |  | ||||||
| 	echo $debugBarRenderer->renderHead(); |  | ||||||
| }); |  | ||||||
| $hooks->register('debugbar_admin_body_end', HOOK_ADMIN_BODY_END, function ($params) { |  | ||||||
| 	global $debugBar; |  | ||||||
|  |  | ||||||
| 	if (!isset($debugBar)) { |  | ||||||
| 		return; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$debugBarRenderer = $debugBar->getJavascriptRenderer(); |  | ||||||
| 	echo $debugBarRenderer->render(); |  | ||||||
| }); |  | ||||||
| @@ -1,7 +1,5 @@ | |||||||
| <?php | <?php | ||||||
|  |  | ||||||
| use MyAAC\Plugins; |  | ||||||
|  |  | ||||||
| $order = 10; | $order = 10; | ||||||
|  |  | ||||||
| $settingsMenu = []; | $settingsMenu = []; | ||||||
|   | |||||||
| @@ -25,7 +25,16 @@ define('PAGE', $page); | |||||||
| require SYSTEM . 'functions.php'; | require SYSTEM . 'functions.php'; | ||||||
| require SYSTEM . 'init.php'; | require SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
| require __DIR__ . '/includes/debugbar.php'; | // verify myaac tables exists in database | ||||||
|  | if(!$db->hasTable('myaac_account_actions')) { | ||||||
|  | 	throw new RuntimeException('Seems that the table <strong>myaac_account_actions</strong> of MyAAC doesn\'t exist in the database. This is a fatal error. You can try to reinstall MyAAC by visiting <a href="' . BASE_URL . 'install">this</a> url.'); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // event system | ||||||
|  | require_once SYSTEM . 'hooks.php'; | ||||||
|  | $hooks = new Hooks(); | ||||||
|  | $hooks->load(); | ||||||
|  |  | ||||||
| require SYSTEM . 'status.php'; | require SYSTEM . 'status.php'; | ||||||
| require SYSTEM . 'login.php'; | require SYSTEM . 'login.php'; | ||||||
| require __DIR__ . '/includes/functions.php'; | require __DIR__ . '/includes/functions.php'; | ||||||
| @@ -45,7 +54,7 @@ if(!$logged || !admin()) { | |||||||
| // include our page | // include our page | ||||||
| $file = __DIR__ . '/pages/' . $page . '.php'; | $file = __DIR__ . '/pages/' . $page . '.php'; | ||||||
| if(!@file_exists($file)) { | if(!@file_exists($file)) { | ||||||
| 	if (str_contains($page, 'plugins/')) { | 	if (strpos($page, 'plugins/') !== false) { | ||||||
| 		$file = BASE . $page; | 		$file = BASE . $page; | ||||||
| 	} | 	} | ||||||
| 	else { | 	else { | ||||||
|   | |||||||
| @@ -8,22 +8,21 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Models\Account as AccountModel; |  | ||||||
| use MyAAC\Models\Player; | use MyAAC\Models\Player; | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| $title = 'Account editor'; | $title = 'Account editor'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| $admin_base = ADMIN_URL . '?p=accounts'; | $admin_base = ADMIN_URL . '?p=accounts'; | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
|  |  | ||||||
| if (setting('core.account_country')) | if (setting('core.account_country')) | ||||||
| 	require SYSTEM . 'countries.conf.php'; | 	require SYSTEM . 'countries.conf.php'; | ||||||
|  |  | ||||||
| $nameOrNumberColumn = getAccountIdentityColumn(); | $nameOrNumberColumn = 'name'; | ||||||
|  | if (USE_ACCOUNT_NUMBER) { | ||||||
|  | 	$nameOrNumberColumn = 'number'; | ||||||
|  | } | ||||||
|  |  | ||||||
| $hasSecretColumn = $db->hasColumn('accounts', 'secret'); | $hasSecretColumn = $db->hasColumn('accounts', 'secret'); | ||||||
| $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | ||||||
| @@ -49,56 +48,41 @@ $acc_type = setting('core.account_types'); | |||||||
|  |  | ||||||
| <?php | <?php | ||||||
| $id = 0; | $id = 0; | ||||||
| $search_account = $search_account_email = ''; | $search_account = ''; | ||||||
| if (isset($_REQUEST['id'])) | if (isset($_REQUEST['id'])) | ||||||
| 	$id = (int)$_REQUEST['id']; | 	$id = (int)$_REQUEST['id']; | ||||||
| else if (isset($_REQUEST['search_email'])) { |  | ||||||
| 	$search_account_email = $_REQUEST['search_email']; |  | ||||||
| 	$accountModel = AccountModel::where('email', $search_account_email)->limit(11)->get(['email', 'id']); |  | ||||||
| 	if (count($accountModel) == 0) { |  | ||||||
| 		echo_error('No entries found.'); |  | ||||||
| 	} else if (count($accountModel) == 1) { |  | ||||||
| 		$id = $accountModel->first()->getKey(); |  | ||||||
| 	} else if (count($accountModel) > 10) { |  | ||||||
| 		echo_error('Specified e-mail resulted with too many accounts.'); |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| else if (isset($_REQUEST['search'])) { | else if (isset($_REQUEST['search'])) { | ||||||
| 	$search_account = $_REQUEST['search']; | 	$search_account = $_REQUEST['search']; | ||||||
| 	$min_size = 3; | 	if (strlen($search_account) < 3 && !Validator::number($search_account)) { | ||||||
| 	if (in_array($nameOrNumberColumn, ['id', 'number'])) { | 		echo_error('Player name is too short.'); | ||||||
| 		$min_size = 1; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if (strlen($search_account) < $min_size && !Validator::number($search_account)) { |  | ||||||
| 		echo_error('Account ' . $nameOrNumberColumn . ' is too short.'); |  | ||||||
| 	} else { | 	} else { | ||||||
| 		$query = AccountModel::where($nameOrNumberColumn, '=', $search_account)->limit(11)->get(['id', $nameOrNumberColumn]); | 		$query = $db->query('SELECT `id` FROM `accounts` WHERE `' . $nameOrNumberColumn . '` = ' . $db->quote($search_account)); | ||||||
| 		if (count($query) == 0) { | 		if ($query->rowCount() == 1) { | ||||||
| 			echo_error('No entries found.'); | 			$query = $query->fetch(); | ||||||
| 		} else if (count($query) == 1) { | 			$id = (int)$query['id']; | ||||||
| 			$id = $query->first()->getKey(); |  | ||||||
| 		} else if (count($query) > 10) { |  | ||||||
| 			echo_error('Specified name resulted with too many accounts.'); |  | ||||||
| 		} else { | 		} else { | ||||||
| 			$str_construct = 'Do you mean?<ul class="mb-0">'; | 			$query = $db->query('SELECT `id`, `' . $nameOrNumberColumn . '` FROM `accounts` WHERE `' . $nameOrNumberColumn . '` LIKE ' . $db->quote('%' . $search_account . '%')); | ||||||
| 			foreach ($query as $row) { | 			if ($query->rowCount() > 0 && $query->rowCount() <= 10) { | ||||||
| 				$str_construct .= '<li><a href="' . $admin_base . '&id=' . $row->getKey() . '">' . $row->attributes[$nameOrNumberColumn] . '</a></li>'; | 				$str_construct = 'Do you mean?<ul class="mb-0">'; | ||||||
| 			} | 				foreach ($query as $row) | ||||||
| 			$str_construct .= '</ul>'; | 					$str_construct .= '<li><a href="' . $admin_base . '&id=' . $row['id'] . '">' . $row[$nameOrNumberColumn] . '</a></li>'; | ||||||
| 			echo_error($str_construct); | 				$str_construct .= '</ul>'; | ||||||
|  | 				echo_error($str_construct); | ||||||
|  | 			} else if ($query->rowCount() > 10) | ||||||
|  | 				echo_error('Specified name resulted with too many accounts.'); | ||||||
|  | 			else | ||||||
|  | 				echo_error('No entries found.'); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| ?> | ?> | ||||||
| <div class="row"> | <div class="row"> | ||||||
| 	<?php | 	<?php | ||||||
| 	$groups = new OTS_Groups_List(); |  | ||||||
| 	if ($id > 0) { | 	if ($id > 0) { | ||||||
| 		$account = new OTS_Account(); | 		$account = new OTS_Account(); | ||||||
| 		$account->load($id); | 		$account->load($id); | ||||||
|  |  | ||||||
| 		if (isset($_POST['save']) && $account->isLoaded()) { | 		if (isset($account, $_POST['save']) && $account->isLoaded()) { | ||||||
| 			$error = false; | 			$error = false; | ||||||
|  |  | ||||||
| 			$_error = ''; | 			$_error = ''; | ||||||
| @@ -156,9 +140,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 			$rl_loca = $_POST['rl_loca']; | 			$rl_loca = $_POST['rl_loca']; | ||||||
|  |  | ||||||
| 			//country | 			//country | ||||||
| 			if(setting('core.account_country')) { | 			$rl_country = $_POST['rl_country']; | ||||||
| 				$rl_country = $_POST['rl_country']; |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			$web_flags = $_POST['web_flags']; | 			$web_flags = $_POST['web_flags']; | ||||||
| 			verify_number($web_flags, 'Web Flags', 1); | 			verify_number($web_flags, 'Web Flags', 1); | ||||||
| @@ -205,11 +187,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 				} | 				} | ||||||
| 				$account->setRLName($rl_name); | 				$account->setRLName($rl_name); | ||||||
| 				$account->setLocation($rl_loca); | 				$account->setLocation($rl_loca); | ||||||
|  | 				$account->setCountry($rl_country); | ||||||
| 				if(setting('core.account_country')) { |  | ||||||
| 					$account->setCountry($rl_country); |  | ||||||
| 				} |  | ||||||
|  |  | ||||||
| 				$account->setCustomField('created', $created); | 				$account->setCustomField('created', $created); | ||||||
| 				$account->setWebFlags($web_flags); | 				$account->setWebFlags($web_flags); | ||||||
| 				$account->setCustomField('web_lastlogin', $web_lastlogin); | 				$account->setCustomField('web_lastlogin', $web_lastlogin); | ||||||
| @@ -233,7 +211,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} else if ($id == 0) { | 	} else if ($id == 0) { | ||||||
| 		$accounts_db = $db->query('SELECT `id`, `' . $nameOrNumberColumn . '`' . ($hasTypeColumn ? ',type' : ($hasGroupColumn ? ',group_id' : '')) . ', email FROM `accounts` ORDER BY `id` ASC'); | 		$accounts_db = $db->query('SELECT `id`, `' . $nameOrNumberColumn . '`' . ($hasTypeColumn ? ',type' : ($hasGroupColumn ? ',group_id' : '')) . ' FROM `accounts` ORDER BY `id` ASC'); | ||||||
| 		?> | 		?> | ||||||
| 		<div class="col-12 col-sm-12 col-lg-10"> | 		<div class="col-12 col-sm-12 col-lg-10"> | ||||||
| 			<div class="card card-info card-outline"> | 			<div class="card card-info card-outline"> | ||||||
| @@ -245,9 +223,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 						<thead> | 						<thead> | ||||||
| 						<tr> | 						<tr> | ||||||
| 							<th>ID</th> | 							<th>ID</th> | ||||||
| 							<th><?= ($nameOrNumberColumn == 'name' ? 'Name' : 'Number'); ?></th> | 							<th><?= ($nameOrNumberColumn == 'number' ? 'Number' : 'Name'); ?></th> | ||||||
| 							<?php if($hasTypeColumn || $hasGroupColumn): ?> | 							<?php if($hasTypeColumn || $hasGroupColumn): ?> | ||||||
| 							<th>E-Mail</th> |  | ||||||
| 							<th>Position</th> | 							<th>Position</th> | ||||||
| 							<?php endif; ?> | 							<?php endif; ?> | ||||||
| 							<th style="width: 40px">Edit</th> | 							<th style="width: 40px">Edit</th> | ||||||
| @@ -258,7 +235,6 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 							<tr> | 							<tr> | ||||||
| 								<th><?php echo $account_lst['id']; ?></th> | 								<th><?php echo $account_lst['id']; ?></th> | ||||||
| 								<td><?php echo $account_lst[$nameOrNumberColumn]; ?></a></td> | 								<td><?php echo $account_lst[$nameOrNumberColumn]; ?></a></td> | ||||||
| 								<td><?php echo $account_lst['email']; ?></td> |  | ||||||
| 								<?php if($hasTypeColumn || $hasGroupColumn): ?> | 								<?php if($hasTypeColumn || $hasGroupColumn): ?> | ||||||
| 								<td> | 								<td> | ||||||
| 									<?php if ($hasTypeColumn) { | 									<?php if ($hasTypeColumn) { | ||||||
| @@ -290,9 +266,6 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 						<li class="nav-item"> | 						<li class="nav-item"> | ||||||
| 							<a class="nav-link active" id="accounts-acc-tab" data-toggle="pill" href="#accounts-acc">Account</a> | 							<a class="nav-link active" id="accounts-acc-tab" data-toggle="pill" href="#accounts-acc">Account</a> | ||||||
| 						</li> | 						</li> | ||||||
| 						<li class="nav-item"> |  | ||||||
| 							<a class="nav-link" id="accounts-logs-tab" data-toggle="pill" href="#accounts-logs">Logs</a> |  | ||||||
| 						</li> |  | ||||||
| 						<li class="nav-item"> | 						<li class="nav-item"> | ||||||
| 							<a class="nav-link" id="accounts-chars-tab" data-toggle="pill" href="#accounts-chars">Characters</a> | 							<a class="nav-link" id="accounts-chars-tab" data-toggle="pill" href="#accounts-chars">Characters</a> | ||||||
| 						</li> | 						</li> | ||||||
| @@ -312,8 +285,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 				<div class="card-body"> | 				<div class="card-body"> | ||||||
| 					<div class="tab-content" id="accounts-tabContent"> | 					<div class="tab-content" id="accounts-tabContent"> | ||||||
| 						<div class="tab-pane fade active show" id="accounts-acc"> | 						<div class="tab-pane fade active show" id="accounts-acc"> | ||||||
| 							<form action="<?php echo $admin_base . ($id > 0 ? '&id=' . $id : ''); ?>" method="post"> | 							<form action="<?php echo $admin_base . ((isset($id) && $id > 0) ? '&id=' . $id : ''); ?>" method="post"> | ||||||
| 								<?php csrf(); ?> |  | ||||||
| 								<div class="form-group row"> | 								<div class="form-group row"> | ||||||
| 									<?php if (USE_ACCOUNT_NAME): ?> | 									<?php if (USE_ACCOUNT_NAME): ?> | ||||||
| 										<div class="col-12 col-sm-12 col-lg-4"> | 										<div class="col-12 col-sm-12 col-lg-4"> | ||||||
| @@ -352,8 +324,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 										<div class="col-12 col-sm-12 col-lg-6"> | 										<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 											<label for="group">Account Type:</label> | 											<label for="group">Account Type:</label> | ||||||
| 											<select name="group" id="group" class="form-control"> | 											<select name="group" id="group" class="form-control"> | ||||||
| 												<?php foreach ($acc_type as $_id => $a_type): ?> | 												<?php foreach ($acc_type as $id => $a_type): ?> | ||||||
| 													<option value="<?php echo($_id); ?>" <?php echo($acc_group == ($_id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | 													<option value="<?php echo($id); ?>" <?php echo($acc_group == ($id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | ||||||
| 												<?php endforeach; ?> | 												<?php endforeach; ?> | ||||||
| 											</select> | 											</select> | ||||||
| 										</div> | 										</div> | ||||||
| @@ -363,8 +335,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 										<div class="col-12 col-sm-12 col-lg-6"> | 										<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 											<label for="group">Account Type:</label> | 											<label for="group">Account Type:</label> | ||||||
| 											<select name="group" id="group" class="form-control"> | 											<select name="group" id="group" class="form-control"> | ||||||
| 												<?php foreach ($groups->getGroups() as $_id => $group): ?> | 												<?php foreach ($groups->getGroups() as $id => $group): ?> | ||||||
| 													<option value="<?php echo $_id; ?>" <?php echo($acc_group == $_id ? 'selected' : ''); ?>><?php echo $group->getName(); ?></option> | 													<option value="<?php echo $id; ?>" <?php echo($acc_group == $id ? 'selected' : ''); ?>><?php echo $group->getName(); ?></option> | ||||||
| 												<?php endforeach; ?> | 												<?php endforeach; ?> | ||||||
| 											</select> | 											</select> | ||||||
| 										</div> | 										</div> | ||||||
| @@ -372,8 +344,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 									<div class="col-12 col-sm-12 col-lg-6"> | 									<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 										<label for="web_flags">Website Access:</label> | 										<label for="web_flags">Website Access:</label> | ||||||
| 										<select name="web_flags" id="web_flags" class="form-control"> | 										<select name="web_flags" id="web_flags" class="form-control"> | ||||||
| 											<?php foreach ($web_acc as $_id => $a_type): ?> | 											<?php foreach ($web_acc as $id => $a_type): ?> | ||||||
| 												<option value="<?php echo($_id); ?>" <?php echo($account->getWebFlags() == ($_id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | 												<option value="<?php echo($id); ?>" <?php echo($account->getWebFlags() == ($id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | ||||||
| 											<?php endforeach; ?> | 											<?php endforeach; ?> | ||||||
| 										</select> | 										</select> | ||||||
| 									</div> | 									</div> | ||||||
| @@ -425,16 +397,14 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 											   autocomplete="off" maxlength="20" | 											   autocomplete="off" maxlength="20" | ||||||
| 											   value="<?php echo $account->getLocation(); ?>"/> | 											   value="<?php echo $account->getLocation(); ?>"/> | ||||||
| 									</div> | 									</div> | ||||||
| 									<?php if(setting('core.account_country')): ?> |  | ||||||
| 									<div class="col-12 col-sm-12 col-lg-4"> | 									<div class="col-12 col-sm-12 col-lg-4"> | ||||||
| 										<label for="rl_country">Country:</label> | 										<label for="rl_country">Country:</label> | ||||||
| 										<select name="rl_country" id="rl_country" class="form-control"> | 										<select name="rl_country" id="rl_country" class="form-control"> | ||||||
| 											<?php foreach ($countries as $_id => $a_type): ?> | 											<?php foreach ($countries as $id => $a_type): ?> | ||||||
| 												<option value="<?php echo($_id); ?>" <?php echo($account->getCountry() == ($_id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | 												<option value="<?php echo($id); ?>" <?php echo($account->getCountry() == ($id) ? 'selected' : ''); ?>><?php echo $a_type; ?></option> | ||||||
| 											<?php endforeach; ?> | 											<?php endforeach; ?> | ||||||
| 										</select> | 										</select> | ||||||
| 									</div> | 									</div> | ||||||
| 									<?php endif; ?> |  | ||||||
| 								</div> | 								</div> | ||||||
| 								<div class="form-group row"> | 								<div class="form-group row"> | ||||||
| 									<div class="col-12 col-sm-12 col-lg-6"> | 									<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| @@ -453,34 +423,6 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 								<a href="<?php echo ADMIN_URL; ?>?p=accounts" class="btn btn-danger float-right"><i class="fas fa-cancel"></i> Cancel</a> | 								<a href="<?php echo ADMIN_URL; ?>?p=accounts" class="btn btn-danger float-right"><i class="fas fa-cancel"></i> Cancel</a> | ||||||
| 							</form> | 							</form> | ||||||
| 						</div> | 						</div> | ||||||
| 						<div class="tab-pane fade" id="accounts-logs"> |  | ||||||
| 							<div class="row"> |  | ||||||
| 								<table class="table table-striped table-condensed table-responsive d-md-table"> |  | ||||||
| 									<thead> |  | ||||||
| 										<tr> |  | ||||||
| 											<th>#</th> |  | ||||||
| 											<th>Date</th> |  | ||||||
| 											<th>Action</th> |  | ||||||
| 											<th>IP</th> |  | ||||||
| 										</tr> |  | ||||||
| 									</thead> |  | ||||||
| 									<tbody> |  | ||||||
| 										<?php |  | ||||||
| 											$accountActions = \MyAAC\Models\AccountAction::where('account_id', $account->getId())->orderByDesc('date')->get(); |  | ||||||
| 											foreach ($accountActions as $i => $log): |  | ||||||
| 												$log->ip = ($log->ip != 0 ? long2ip($log->ip) : inet_ntop($log->ipv6)); |  | ||||||
| 												?> |  | ||||||
| 											<tr> |  | ||||||
| 												<td><?php echo $i + 1; ?></td> |  | ||||||
| 												<td><?= date("M d Y, H:i:s", $log->date); ?></td> |  | ||||||
| 												<td><?= $log->action; ?></td> |  | ||||||
| 												<td><?= $log->ip; ?></td> |  | ||||||
| 											</tr> |  | ||||||
| 											<?php endforeach; ?> |  | ||||||
| 									</tbody> |  | ||||||
| 								</table> |  | ||||||
| 							</div> |  | ||||||
| 						</div> |  | ||||||
| 						<div class="tab-pane fade" id="accounts-chars"> | 						<div class="tab-pane fade" id="accounts-chars"> | ||||||
| 							<div class="row"> | 							<div class="row"> | ||||||
| 								<?php | 								<?php | ||||||
| @@ -608,30 +550,18 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 				<div class="row"> | 				<div class="row"> | ||||||
| 					<div class="col-6 col-lg-12"> | 					<div class="col-6 col-lg-12"> | ||||||
| 						<form action="<?php echo $admin_base; ?>" method="post"> | 						<form action="<?php echo $admin_base; ?>" method="post"> | ||||||
| 							<?php csrf(); ?> | 							<label for="name">Account Name:</label> | ||||||
| 							<label for="search">Account E-Mail:</label> |  | ||||||
| 							<div class="input-group input-group-sm"> | 							<div class="input-group input-group-sm"> | ||||||
| 								<input type="email" class="form-control" id="search_email" name="search_email" value="<?= escapeHtml($search_account_email); ?>" maxlength="255" size="255"> | 								<input type="text" class="form-control" name="search" value="<?php echo $search_account; ?>" maxlength="32" size="32"> | ||||||
| 								<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | 								<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | ||||||
| 							</div> | 							</div> | ||||||
| 						</form> | 						</form> | ||||||
| 					</div> | 					</div> | ||||||
| 					<div class="col-6 col-lg-12"> | 					<div class="col-6 col-lg-12"> | ||||||
| 						<form action="<?php echo $admin_base; ?>" method="post"> | 						<form action="<?php echo $admin_base; ?>" method="post"> | ||||||
| 							<?php csrf(); ?> | 							<label for="name">Account ID:</label> | ||||||
| 							<label for="search">Account Name:</label> |  | ||||||
| 							<div class="input-group input-group-sm"> | 							<div class="input-group input-group-sm"> | ||||||
| 								<input type="text" class="form-control" id="search" name="search" value="<?= escapeHtml($search_account); ?>" maxlength="32" size="32"> | 								<input type="text" class="form-control" name="id" value="" maxlength="32" size="32"> | ||||||
| 								<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> |  | ||||||
| 							</div> |  | ||||||
| 						</form> |  | ||||||
| 					</div> |  | ||||||
| 					<div class="col-6 col-lg-12"> |  | ||||||
| 						<form action="<?php echo $admin_base; ?>" method="post"> |  | ||||||
| 							<?php csrf(); ?> |  | ||||||
| 							<label for="id">Account ID:</label> |  | ||||||
| 							<div class="input-group input-group-sm"> |  | ||||||
| 								<input type="text" class="form-control" id="id" name="id" value="<?= $id; ?>" maxlength="32" size="32"> |  | ||||||
| 								<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | 								<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | ||||||
| 							</div> | 							</div> | ||||||
| 						</form> | 						</form> | ||||||
|   | |||||||
| @@ -9,33 +9,34 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Changelog; |  | ||||||
| use MyAAC\Models\Changelog as ModelsChangelog; | use MyAAC\Models\Changelog as ModelsChangelog; | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| $title = 'Changelog'; |  | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | ||||||
| 	echo 'Access denied.'; | 	echo 'Access denied.'; | ||||||
| 	return; | 	return; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | $title = 'Changelog'; | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
| const CL_LIMIT = 600; // maximum changelog body length | const CL_LIMIT = 600; // maximum changelog body length | ||||||
|  | ?> | ||||||
|  |  | ||||||
|  | <link rel="stylesheet" type="text/css" href="<?php echo BASE_URL; ?>tools/css/jquery.datetimepicker.css"/ > | ||||||
|  | <script src="<?php echo BASE_URL; ?>tools/js/jquery.datetimepicker.js"></script> | ||||||
|  | <?php | ||||||
| $id = $_GET['id'] ?? 0; | $id = $_GET['id'] ?? 0; | ||||||
|  | require_once LIBS . 'changelog.php'; | ||||||
|  |  | ||||||
| if(!empty($action) && isRequestMethod('post')) | if(!empty($action)) | ||||||
| { | { | ||||||
| 	$id = $_POST['id'] ?? null; | 	$id = $_REQUEST['id'] ?? null; | ||||||
| 	$body = isset($_POST['body']) ? stripslashes($_POST['body']) : null; | 	$body = isset($_REQUEST['body']) ? stripslashes($_REQUEST['body']) : null; | ||||||
| 	$create_date = isset($_POST['createdate']) ? (int)strtotime($_POST['createdate'] ): null; | 	$create_date = isset($_REQUEST['createdate']) ? (int)strtotime($_REQUEST['createdate'] ): null; | ||||||
| 	$player_id = isset($_POST['player_id']) ? (int)$_POST['player_id'] : null; | 	$player_id = isset($_REQUEST['player_id']) ? (int)$_REQUEST['player_id'] : null; | ||||||
| 	$type = isset($_POST['type']) ? (int)$_POST['type'] : null; | 	$type = isset($_REQUEST['type']) ? (int)$_REQUEST['type'] : null; | ||||||
| 	$where = isset($_POST['where']) ? (int)$_POST['where'] : null; | 	$where = isset($_REQUEST['where']) ? (int)$_REQUEST['where'] : null; | ||||||
|  |  | ||||||
| 	$errors = array(); | 	$errors = array(); | ||||||
|  |  | ||||||
| @@ -45,13 +46,12 @@ if(!empty($action) && isRequestMethod('post')) | |||||||
| 			$body = ''; | 			$body = ''; | ||||||
| 			$type = $where = $player_id = $create_date = 0; | 			$type = $where = $player_id = $create_date = 0; | ||||||
|  |  | ||||||
| 			success('Added successful.'); | 			success("Added successful."); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 	else if($action == 'delete') { | 	else if($action == 'delete') { | ||||||
| 		if (Changelog::delete($id, $errors)) { | 		Changelog::delete($id, $errors); | ||||||
| 			success('Deleted successful.'); | 		success("Deleted successful."); | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
| 	else if($action == 'edit') | 	else if($action == 'edit') | ||||||
| 	{ | 	{ | ||||||
| @@ -68,14 +68,13 @@ if(!empty($action) && isRequestMethod('post')) | |||||||
| 				$action = $body = ''; | 				$action = $body = ''; | ||||||
| 				$type = $where = $player_id = $create_date = 0; | 				$type = $where = $player_id = $create_date = 0; | ||||||
|  |  | ||||||
| 				success('Updated successful.'); | 				success("Updated successful."); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 	else if($action == 'hide') { | 	else if($action == 'hide') { | ||||||
| 		if (Changelog::toggleHide($id, $errors, $status)) { | 		Changelog::toggleHidden($id, $errors, $status); | ||||||
| 			success(($status == 1 ? 'Hide' : 'Show') . ' successful.'); | 		success(($status == 1 ? 'Show' : 'Hide') . " successful."); | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if(!empty($errors)) | 	if(!empty($errors)) | ||||||
| @@ -114,7 +113,7 @@ if($action == 'edit' || $action == 'new') { | |||||||
| 	$account_players->orderBy('group_id', POT::ORDER_DESC); | 	$account_players->orderBy('group_id', POT::ORDER_DESC); | ||||||
| 	$twig->display('admin.changelog.form.html.twig', array( | 	$twig->display('admin.changelog.form.html.twig', array( | ||||||
| 		'action' => $action, | 		'action' => $action, | ||||||
| 		'cl_link_form' => constant('ADMIN_URL').'?p=changelog', | 		'cl_link_form' => constant('ADMIN_URL').'?p=changelog&action=' . ($action == 'edit' ? 'edit' : 'new'), | ||||||
| 		'cl_id' => $id ?? null, | 		'cl_id' => $id ?? null, | ||||||
| 		'body' => isset($body) ? escapeHtml($body) : '', | 		'body' => isset($body) ? escapeHtml($body) : '', | ||||||
| 		'create_date' => $create_date ?? '', | 		'create_date' => $create_date ?? '', | ||||||
| @@ -129,3 +128,15 @@ if($action == 'edit' || $action == 'new') { | |||||||
| $twig->display('admin.changelog.html.twig', array( | $twig->display('admin.changelog.html.twig', array( | ||||||
| 	'changelogs' => $changelogs, | 	'changelogs' => $changelogs, | ||||||
| )); | )); | ||||||
|  |  | ||||||
|  | ?> | ||||||
|  | <script> | ||||||
|  | 	$(document).ready(function () { | ||||||
|  | 		$('#createdate').datetimepicker({format: "M d Y, H:i:s",}); | ||||||
|  |  | ||||||
|  | 		$('.tb_datatable').DataTable({ | ||||||
|  | 			"order": [[0, "desc"]], | ||||||
|  | 			"columnDefs": [{targets: [1, 2,4,5],orderable: false}] | ||||||
|  | 		}); | ||||||
|  | 	}); | ||||||
|  | </script> | ||||||
|   | |||||||
| @@ -10,9 +10,7 @@ | |||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Dashboard'; | $title = 'Dashboard'; | ||||||
|  |  | ||||||
| csrfProtect(); | if (isset($_GET['clear_cache'])) { | ||||||
|  |  | ||||||
| if (isset($_POST['clear_cache'])) { |  | ||||||
| 	if (clearCache()) { | 	if (clearCache()) { | ||||||
| 		success('Cache cleared.'); | 		success('Cache cleared.'); | ||||||
| 	} else { | 	} else { | ||||||
| @@ -20,7 +18,7 @@ if (isset($_POST['clear_cache'])) { | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| if (isset($_POST['maintenance'])) { | if (isset($_GET['maintenance'])) { | ||||||
| 	$message = (!empty($_POST['message']) ? $_POST['message'] : null); | 	$message = (!empty($_POST['message']) ? $_POST['message'] : null); | ||||||
| 	$_status = (isset($_POST['status']) && $_POST['status'] == 'true'); | 	$_status = (isset($_POST['status']) && $_POST['status'] == 'true'); | ||||||
| 	$_status = ($_status ? '0' : '1'); | 	$_status = ($_status ? '0' : '1'); | ||||||
|   | |||||||
| @@ -10,8 +10,6 @@ | |||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Login'; | $title = 'Login'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| require PAGES . 'account/login.php'; | require PAGES . 'account/login.php'; | ||||||
| if ($logged) { | if ($logged) { | ||||||
| 	header('Location: ' . (admin() ? ADMIN_URL : BASE_URL)); | 	header('Location: ' . (admin() ? ADMIN_URL : BASE_URL)); | ||||||
|   | |||||||
| @@ -7,14 +7,9 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Models\Account; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Mailer'; | $title = 'Mailer'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| if (!hasFlag(FLAG_CONTENT_MAILER) && !superAdmin()) { | if (!hasFlag(FLAG_CONTENT_MAILER) && !superAdmin()) { | ||||||
| 	echo 'Access denied.'; | 	echo 'Access denied.'; | ||||||
| 	return; | 	return; | ||||||
| @@ -25,7 +20,7 @@ if (!setting('core.mail_enabled')) { | |||||||
| 	return; | 	return; | ||||||
| } | } | ||||||
|  |  | ||||||
| $mail_to = isset($_POST['mail_to']) ? stripslashes(trim($_POST['mail_to'])) : null; | $mail_to = isset($_REQUEST['mail_to']) ? stripslashes(trim($_REQUEST['mail_to'])) : null; | ||||||
| $mail_subject = isset($_POST['mail_subject']) ? stripslashes($_POST['mail_subject']) : null; | $mail_subject = isset($_POST['mail_subject']) ? stripslashes($_POST['mail_subject']) : null; | ||||||
| $mail_content = isset($_POST['mail_content']) ? stripslashes($_POST['mail_content']) : null; | $mail_content = isset($_POST['mail_content']) ? stripslashes($_POST['mail_content']) : null; | ||||||
|  |  | ||||||
| @@ -64,15 +59,15 @@ if (!empty($mail_content) && !empty($mail_subject) && empty($mail_to)) { | |||||||
| 		$add = ' AND `email_verified` = 1'; | 		$add = ' AND `email_verified` = 1'; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	$query = Account::where('email', '!=', '')->get(['email']); | 	$query = $db->query('SELECT `email` FROM `accounts` WHERE `email` != ""' . $add); | ||||||
| 	foreach ($query as $email) { | 	foreach ($query as $email) { | ||||||
| 		if (_mail($email->email, $mail_subject, $mail_content)) { | 		if (_mail($email['email'], $mail_subject, $mail_content)) { | ||||||
| 			$success++; | 			$success++; | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			$failed++; | 			$failed++; | ||||||
| 			echo '<br />'; | 			echo '<br />'; | ||||||
| 			error('An error occorred while sending email to <b>' . $email->email . '</b>. For Admin: More info can be found in system/logs/mailer-error.log'); | 			error('An error occorred while sending email to <b>' . $email['email'] . '</b>. For Admin: More info can be found in system/logs/mailer-error.log'); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|   | |||||||
| @@ -16,21 +16,26 @@ defined('MYAAC') or die('Direct access not allowed!'); | |||||||
|  |  | ||||||
| $title = 'Mass Account Actions'; | $title = 'Mass Account Actions'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | ||||||
| $hasPointsColumn = $db->hasColumn('accounts', 'premium_points'); | $hasPointsColumn = $db->hasColumn('accounts', 'premium_points'); | ||||||
| $freePremium = $config['lua']['freePremium']; | $freePremium = $config['lua']['freePremium']; | ||||||
|  |  | ||||||
| function admin_give_points($points) | function admin_give_points($points) | ||||||
| { | { | ||||||
| 	global $hasPointsColumn; | 	global $db, $hasPointsColumn; | ||||||
|  |  | ||||||
| 	if (!$hasPointsColumn) { | 	if (!$hasPointsColumn) { | ||||||
| 		displayMessage('Points not supported.'); | 		displayMessage('Points not supported.'); | ||||||
| 		return; | 		return; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  |  | ||||||
|  | 	$statement = $db->prepare('UPDATE `accounts` SET `premium_points` = `premium_points` + :points'); | ||||||
|  | 	if (!$statement) { | ||||||
|  | 		displayMessage('Failed to prepare query statement.'); | ||||||
|  | 		return; | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	if (!Account::query()->increment('premium_points', $points)) { | 	if (!Account::query()->increment('premium_points', $points)) { | ||||||
| 		displayMessage('Failed to add points.'); | 		displayMessage('Failed to add points.'); | ||||||
| 		return; | 		return; | ||||||
| @@ -40,7 +45,7 @@ function admin_give_points($points) | |||||||
|  |  | ||||||
| function admin_give_coins($coins) | function admin_give_coins($coins) | ||||||
| { | { | ||||||
| 	global $hasCoinsColumn; | 	global $db, $hasCoinsColumn; | ||||||
|  |  | ||||||
| 	if (!$hasCoinsColumn) { | 	if (!$hasCoinsColumn) { | ||||||
| 		displayMessage('Coins not supported.'); | 		displayMessage('Coins not supported.'); | ||||||
| @@ -55,6 +60,24 @@ function admin_give_coins($coins) | |||||||
| 	displayMessage($coins . ' coins added to all accounts.', true); | 	displayMessage($coins . ' coins added to all accounts.', true); | ||||||
| } | } | ||||||
|  |  | ||||||
|  | function query_add_premium($column, $value_query, $condition_query = '1=1', $params = []) | ||||||
|  | { | ||||||
|  | 	global $db; | ||||||
|  |  | ||||||
|  | 	$statement = $db->prepare("UPDATE `accounts` SET `{$column}` = $value_query WHERE $condition_query"); | ||||||
|  | 	if (!$statement) { | ||||||
|  | 		displayMessage('Failed to prepare query statement.'); | ||||||
|  | 		return false; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if (!$statement->execute($params)) { | ||||||
|  | 		displayMessage('Failed to add premium days.'); | ||||||
|  | 		return false; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return true; | ||||||
|  | } | ||||||
|  |  | ||||||
| function admin_give_premdays($days) | function admin_give_premdays($days) | ||||||
| { | { | ||||||
| 	global $db, $freePremium; | 	global $db, $freePremium; | ||||||
| @@ -69,9 +92,9 @@ function admin_give_premdays($days) | |||||||
| 	// othire | 	// othire | ||||||
| 	if ($db->hasColumn('accounts', 'premend')) { | 	if ($db->hasColumn('accounts', 'premend')) { | ||||||
| 		// append premend | 		// append premend | ||||||
| 		if (Account::where('premend', '>', $now)->increment('premend', $value)) { | 		if (query_add_premium('premend', '`premend` + :value', '`premend` > :now', ['value' => $value, 'now' => $now])) { | ||||||
| 			// set premend | 			// set premend | ||||||
| 			if (Account::where('premend', '<=', $now)->update(['premend' => $now + $value])) { | 			if (query_add_premium('premend', ':value', '`premend` <= :now', ['value' => $now + $value, 'now' => $now])) { | ||||||
| 				displayMessage($days . ' premium days added to all accounts.', true); | 				displayMessage($days . ' premium days added to all accounts.', true); | ||||||
| 				return; | 				return; | ||||||
| 			} else { | 			} else { | ||||||
| @@ -89,11 +112,11 @@ function admin_give_premdays($days) | |||||||
| 	// tfs 0.x | 	// tfs 0.x | ||||||
| 	if ($db->hasColumn('accounts', 'premdays')) { | 	if ($db->hasColumn('accounts', 'premdays')) { | ||||||
| 		// append premdays | 		// append premdays | ||||||
| 		if (Account::query()->update(['premdays' => $days])) { | 		if (query_add_premium('premdays', '`premdays` + :value', '1=1', ['value' => $days])) { | ||||||
| 			// append lastday | 			// append lastday | ||||||
| 			if (Account::where('lastday', '>', $now)->increment('lastday', $value)) { | 			if (query_add_premium('lastday', '`lastday` + :value', '`lastday` > :now', ['value' => $value, 'now' => $now])) { | ||||||
| 				// set lastday | 				// set lastday | ||||||
| 				if (Account::where('lastday', '<=', $now)->update(['lastday' => $now + $value])) { | 				if (query_add_premium('lastday', ':value', '`lastday` <= :now', ['value' => $now + $value, 'now' => $now])) { | ||||||
| 					displayMessage($days . ' premium days added to all accounts.', true); | 					displayMessage($days . ' premium days added to all accounts.', true); | ||||||
| 					return; | 					return; | ||||||
| 				} else { | 				} else { | ||||||
| @@ -117,9 +140,9 @@ function admin_give_premdays($days) | |||||||
| 	// tfs 1.x | 	// tfs 1.x | ||||||
| 	if ($db->hasColumn('accounts', 'premium_ends_at')) { | 	if ($db->hasColumn('accounts', 'premium_ends_at')) { | ||||||
| 		// append premium_ends_at | 		// append premium_ends_at | ||||||
| 		if (Account::where('premium_ends_at', '>', $now)->increment('premium_ends_at', $value)) { | 		if (query_add_premium('premium_ends_at', '`premium_ends_at` + :value', '`premium_ends_at` > :now', ['value' => $value, 'now' => $now])) { | ||||||
| 			// set premium_ends_at | 			// set premium_ends_at | ||||||
| 			if (Account::where('premium_ends_at', '<=', $now)->update(['premium_ends_at' => $now + $value])) { | 			if (query_add_premium('premium_ends_at', ':value', '`premium_ends_at` <= :now', ['value' => $now + $value, 'now' => $now])) { | ||||||
| 				displayMessage($days . ' premium days added to all accounts.', true); | 				displayMessage($days . ' premium days added to all accounts.', true); | ||||||
| 				return; | 				return; | ||||||
| 			} else { | 			} else { | ||||||
| @@ -137,9 +160,9 @@ function admin_give_premdays($days) | |||||||
| 	displayMessage('Premium Days not supported.'); | 	displayMessage('Premium Days not supported.'); | ||||||
| } | } | ||||||
|  |  | ||||||
| if (!empty(ACTION) && isRequestMethod('post')) { | if (isset($_POST['action']) && $_POST['action']) { | ||||||
|  |  | ||||||
| 	$action = ACTION; | 	$action = $_POST['action']; | ||||||
|  |  | ||||||
| 	if (preg_match("/[^A-z0-9_\-]/", $action)) { | 	if (preg_match("/[^A-z0-9_\-]/", $action)) { | ||||||
| 		displayMessage('Invalid action.'); | 		displayMessage('Invalid action.'); | ||||||
|   | |||||||
| @@ -16,8 +16,6 @@ defined('MYAAC') or die('Direct access not allowed!'); | |||||||
|  |  | ||||||
| $title = 'Mass Teleport Actions'; | $title = 'Mass Teleport Actions'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| function admin_teleport_position($x, $y, $z) { | function admin_teleport_position($x, $y, $z) { | ||||||
| 	if (!Player::query()->update([ | 	if (!Player::query()->update([ | ||||||
| 		'posx' => $x, 'posy' => $y, 'posz' => $z | 		'posx' => $x, 'posy' => $y, 'posz' => $z | ||||||
| @@ -40,9 +38,9 @@ function admin_teleport_town($town_id) { | |||||||
| 	displayMessage('Player\'s town updated.', true); | 	displayMessage('Player\'s town updated.', true); | ||||||
| } | } | ||||||
|  |  | ||||||
| if (!empty(ACTION) && isRequestMethod('post'))    { | if (isset($_POST['action']) && $_POST['action'])    { | ||||||
|  |  | ||||||
| 	$action = ACTION; | 	$action = $_POST['action']; | ||||||
|  |  | ||||||
| 	if (preg_match("/[^A-z0-9_\-]/", $action)) { | 	if (preg_match("/[^A-z0-9_\-]/", $action)) { | ||||||
| 		displayMessage('Invalid action.'); | 		displayMessage('Invalid action.'); | ||||||
|   | |||||||
| @@ -8,27 +8,24 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\Models\Menu; | use MyAAC\Models\Menu; | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Menus'; | $title = 'Menus'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| if (!hasFlag(FLAG_CONTENT_MENUS) && !superAdmin()) { | if (!hasFlag(FLAG_CONTENT_MENUS) && !superAdmin()) { | ||||||
| 	echo 'Access denied.'; | 	echo 'Access denied.'; | ||||||
| 	return; | 	return; | ||||||
| } | } | ||||||
|  |  | ||||||
| if (isset($_POST['template'])) { | if (isset($_REQUEST['template'])) { | ||||||
| 	$template = $_POST['template']; | 	$template = $_REQUEST['template']; | ||||||
|  |  | ||||||
| 	if (isset($_POST['menu'])) { | 	if (isset($_REQUEST['menu'])) { | ||||||
| 		$post_menu = $_POST['menu']; | 		$post_menu = $_REQUEST['menu']; | ||||||
| 		$post_menu_link = $_POST['menu_link']; | 		$post_menu_link = $_REQUEST['menu_link']; | ||||||
| 		$post_menu_blank = $_POST['menu_blank']; | 		$post_menu_blank = $_REQUEST['menu_blank']; | ||||||
| 		$post_menu_color = $_POST['menu_color']; | 		$post_menu_color = $_REQUEST['menu_color']; | ||||||
| 		if (count($post_menu) != count($post_menu_link)) { | 		if (count($post_menu) != count($post_menu_link)) { | ||||||
| 			echo 'Menu count is not equal menu links. Something went wrong when sending form.'; | 			echo 'Menu count is not equal menu links. Something went wrong when sending form.'; | ||||||
| 			return; | 			return; | ||||||
| @@ -72,10 +69,9 @@ if (isset($_POST['template'])) { | |||||||
| 		return; | 		return; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (isset($_GET['reset_colors'])) { | 	if (isset($_REQUEST['reset_colors'])) { | ||||||
| 		if (isset($config['menu_default_color'])) { | 		if (isset($config['menu_default_color'])) { | ||||||
| 			Menu::where('template', $template)->update(['color' => str_replace('#', '', $config['menu_default_color'])]); | 			Menu::where('template', $template)->update(['color' => str_replace('#', '', $config['menu_default_color'])]); | ||||||
| 			success('Colors has been reset.'); |  | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			warning('There is no default color defined, cannot reset colors.'); | 			warning('There is no default color defined, cannot reset colors.'); | ||||||
| @@ -97,7 +93,6 @@ if (isset($_POST['template'])) { | |||||||
| 		</p> | 		</p> | ||||||
| 		<?php if (isset($config['menu_default_color'])) {?> | 		<?php if (isset($config['menu_default_color'])) {?> | ||||||
| 		<form method="post" action="?p=menus&reset_colors" onsubmit="return confirm('Do you really want to reset colors?');"> | 		<form method="post" action="?p=menus&reset_colors" onsubmit="return confirm('Do you really want to reset colors?');"> | ||||||
| 			<?php csrf(); ?> |  | ||||||
| 			<input type="hidden" name="template" value="<?php echo $template ?>"/> | 			<input type="hidden" name="template" value="<?php echo $template ?>"/> | ||||||
| 			<button type="submit" class="btn btn-danger">Reset Colors to default</button> | 			<button type="submit" class="btn btn-danger">Reset Colors to default</button> | ||||||
| 		</form> | 		</form> | ||||||
| @@ -117,7 +112,6 @@ if (isset($_POST['template'])) { | |||||||
| 	$last_id = array(); | 	$last_id = array(); | ||||||
| 	?> | 	?> | ||||||
| 	<form method="post" id="menus-form" action="?p=menus"> | 	<form method="post" id="menus-form" action="?p=menus"> | ||||||
| 		<?php csrf(); ?> |  | ||||||
| 		<input type="hidden" name="template" value="<?php echo $template ?>"/> | 		<input type="hidden" name="template" value="<?php echo $template ?>"/> | ||||||
| 		<button type="submit" class="btn btn-info">Save</button><br/><br/> | 		<button type="submit" class="btn btn-info">Save</button><br/><br/> | ||||||
| 		<div class="row"> | 		<div class="row"> | ||||||
|   | |||||||
| @@ -7,7 +7,7 @@ defined('MYAAC') or die('Direct access not allowed!'); | |||||||
| $accounts = 0; | $accounts = 0; | ||||||
|  |  | ||||||
| if ($db->hasColumn('accounts', 'created')) { | if ($db->hasColumn('accounts', 'created')) { | ||||||
| 	$accounts = Account::orderByDesc('created')->limit(10)->get(['id', 'created'])->toArray(); | 	$accounts = Account::orderByDesc('created')->limit(10)->get(['created', (USE_ACCOUNT_NAME ? 'name' : 'id')])->toArray(); | ||||||
| } | } | ||||||
|  |  | ||||||
| $twig->display('created.html.twig', array( | $twig->display('created.html.twig', array( | ||||||
|   | |||||||
| @@ -19,7 +19,7 @@ | |||||||
| 						{% set i = i + 1 %} | 						{% set i = i + 1 %} | ||||||
| 						<tr> | 						<tr> | ||||||
| 							<th>{{ i }}</th> | 							<th>{{ i }}</th> | ||||||
| 							<td><a href="?p=accounts&id={{ result.id }}">{{ result.id }}</a></td> | 							<td><a href="?p=accounts&search_name={{ result.name }}">{{ result.name }}</a></td> | ||||||
| 							<td>{{ result.created|date("M d Y, H:i:s") }}</td> | 							<td>{{ result.created|date("M d Y, H:i:s") }}</td> | ||||||
| 						</tr> | 						</tr> | ||||||
| 					{% endfor %} | 					{% endfor %} | ||||||
|   | |||||||
| @@ -1,32 +1,28 @@ | |||||||
| <div class="col-12 col-md-6"> | <div class="col-12 col-md-6"> | ||||||
| 	<div class="card card-warning card-outline"> | 	<div class="card card-warning card-outline"> | ||||||
| 		<div class="card-header"> | 		<form action="?p=dashboard&maintenance" method="post" class="form-horizontal"> | ||||||
| 			<span class="m-0">Website Status<span class="float-right"> | 			<div class="card-header"> | ||||||
| 			<div class="custom-control custom-switch custom-switch-off-danger custom-switch-on-success"> | 				<span class="m-0">Website Status<span class="float-right"> | ||||||
| 				<input form="maintenance-form" type="checkbox" class="custom-control-input" name="status" id="status" value="true" {% if not is_closed %} checked{% endif %}> | 				<div class="custom-control custom-switch custom-switch-off-danger custom-switch-on-success"> | ||||||
| 				<label id="status-label" class="custom-control-label" for="status"> {% if is_closed %}Closed{% else %}Open{% endif %}</label> | 					<input type="checkbox" class="custom-control-input" name="status" id="status" value="true" {% if not is_closed %} checked{% endif %}> | ||||||
| 			</div></span> | 					<label id="status-label" class="custom-control-label" for="status"> {% if is_closed %}Closed{% else %}Open{% endif %}</label> | ||||||
| 			</span> | 				</div></span> | ||||||
| 		</div> | 				</span> | ||||||
| 		<div class="card-body p-2"> |  | ||||||
| 			<div class="col-sm-12"> |  | ||||||
| 				<label for="message" class="col-form-label">Maintenance Message</label> |  | ||||||
| 				<textarea form="maintenance-form" name="message" class="form-control" cols="40" rows="3" maxlength="255" placeholder="Enter ...">{{ closed_message }}</textarea> |  | ||||||
| 				<small>(only visible if closed)</small> |  | ||||||
| 			</div> | 			</div> | ||||||
| 		</div> | 			<div class="card-body p-2"> | ||||||
| 		<div class="card-footer"> | 				<div class="col-sm-12"> | ||||||
| 			<form id="maintenance-form" method="post" action="?p=dashboard" class="float-left"> | 					<label for="message" class="col-form-label">Maintenance Message</label> | ||||||
| 				{{ csrf() }} | 					<textarea name="message" class="form-control" cols="40" rows="3" maxlength="255" placeholder="Enter ...">{{ closed_message }}</textarea> | ||||||
| 				<input type="hidden" name="maintenance" value="1" /> | 					<small>(only visible if closed)</small> | ||||||
|  | 				</div> | ||||||
|  | 			</div> | ||||||
|  | 			<div class="card-footer"> | ||||||
| 				<button type="submit" class="btn btn-info"><i class="far fa-update"></i> Update</button> | 				<button type="submit" class="btn btn-info"><i class="far fa-update"></i> Update</button> | ||||||
| 			</form> | 				<a href="?p=dashboard&clear_cache" onclick="return confirm('Are you sure?');" class="float-right"> | ||||||
| 			<form method="post" action="?p=dashboard" class="float-right"> | 					<span class="btn btn-danger"><i class="fas fa-clear"></i>Clear cache</span> | ||||||
| 				{{ csrf() }} | 				</a> | ||||||
| 				<input type="hidden" name="clear_cache" value="1" /> | 			</div> | ||||||
| 				<button type="submit" onclick="return confirm('Are you sure that you want to clear cache?');" class="btn btn-danger" title="Clear Cache"><i class="fas fa-clear"></i>Clear cache</button> | 		</form> | ||||||
| 			</form> |  | ||||||
| 		</div> |  | ||||||
| 	</div> | 	</div> | ||||||
| </div> | </div> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -7,16 +7,12 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Forum; |  | ||||||
| use MyAAC\News; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
|  | require_once LIBS . 'forum.php'; | ||||||
|  | require_once LIBS . 'news.php'; | ||||||
|  |  | ||||||
| $title = 'News Panel'; | $title = 'News Panel'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
|  |  | ||||||
| if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | ||||||
| @@ -26,80 +22,81 @@ if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | |||||||
|  |  | ||||||
| header('X-XSS-Protection:0'); | header('X-XSS-Protection:0'); | ||||||
|  |  | ||||||
| // some constants, used mainly by database (cannot be modified without schema changes) | // some constants, used mainly by database (cannot by modified without schema changes) | ||||||
| const NEWS_TITLE_LIMIT = 100; | define('NEWS_TITLE_LIMIT', 100); | ||||||
| const NEWS_BODY_LIMIT = 65535; // maximum news body length | define('NEWS_BODY_LIMIT', 65535); // maximum news body length | ||||||
| const ARTICLE_TEXT_LIMIT = 300; | define('ARTICLE_TEXT_LIMIT', 300); | ||||||
| const ARTICLE_IMAGE_LIMIT = 100; | define('ARTICLE_IMAGE_LIMIT', 100); | ||||||
|  |  | ||||||
| $name = $p_title = ''; | $name = $p_title = ''; | ||||||
| if(!empty($action)) | if(!empty($action)) | ||||||
| { | { | ||||||
| 	$id = $_POST['id'] ?? null; | 	$id = isset($_REQUEST['id']) ? $_REQUEST['id'] : null; | ||||||
| 	$p_title = $_POST['title'] ?? null; | 	$p_title = isset($_REQUEST['title']) ? $_REQUEST['title'] : null; | ||||||
| 	$body = isset($_POST['body']) ? stripslashes($_POST['body']) : null; | 	$body = isset($_REQUEST['body']) ? stripslashes($_REQUEST['body']) : null; | ||||||
| 	$comments = $_POST['comments'] ?? null; | 	$comments = isset($_REQUEST['comments']) ? $_REQUEST['comments'] : null; | ||||||
| 	$type = isset($_REQUEST['type']) ? (int)$_REQUEST['type'] : 1; | 	$type = isset($_REQUEST['type']) ? (int)$_REQUEST['type'] : null; | ||||||
| 	$category = isset($_POST['category']) ? (int)$_POST['category'] : null; | 	$category = isset($_REQUEST['category']) ? (int)$_REQUEST['category'] : null; | ||||||
| 	$player_id = isset($_POST['player_id']) ? (int)$_POST['player_id'] : null; | 	$player_id = isset($_REQUEST['player_id']) ? (int)$_REQUEST['player_id'] : null; | ||||||
| 	$article_text = $_POST['article_text'] ?? null; | 	$article_text = isset($_REQUEST['article_text']) ? $_REQUEST['article_text'] : null; | ||||||
| 	$article_image = $_POST['article_image'] ?? null; | 	$article_image = isset($_REQUEST['article_image']) ? $_REQUEST['article_image'] : null; | ||||||
| 	$forum_section = $_POST['forum_section'] ?? null; | 	$forum_section = isset($_REQUEST['forum_section']) ? $_REQUEST['forum_section'] : null; | ||||||
| 	$errors = []; | 	$errors = array(); | ||||||
|  |  | ||||||
| 	if (isRequestMethod('post')) { | 	if($action == 'new') { | ||||||
| 		if ($action == 'new') { | 		if(isset($forum_section) && $forum_section != '-1') { | ||||||
| 			if (isset($forum_section) && $forum_section != '-1') { | 			$forum_add = Forum::add_thread($p_title, $body, $forum_section, $player_id, $account_logged->getId(), $errors); | ||||||
| 				$forum_add = Forum::add_thread($p_title, $body, $forum_section, $player_id, $account_logged->getId(), $errors); | 		} | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			if (isset($p_title) && News::add($p_title, $body, $type, $category, $player_id, isset($forum_add) && $forum_add != 0 ? $forum_add : 0, $article_text, $article_image, $errors)) { | 		if(isset($p_title) && News::add($p_title, $body, $type, $category, $player_id, isset($forum_add) && $forum_add != 0 ? $forum_add : 0, $article_text, $article_image, $errors)) { | ||||||
| 				$p_title = $body = $comments = $article_text = $article_image = ''; | 			$p_title = $body = $comments = $article_text = $article_image = ''; | ||||||
|  | 			$type = $category = $player_id = 0; | ||||||
|  |  | ||||||
|  | 			success("Added successful."); | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	else if($action == 'delete') { | ||||||
|  | 		News::delete($id, $errors); | ||||||
|  | 		success("Deleted successful."); | ||||||
|  | 	} | ||||||
|  | 	else if($action == 'edit') | ||||||
|  | 	{ | ||||||
|  | 		if(isset($id) && !isset($p_title)) { | ||||||
|  | 			$news = News::get($id); | ||||||
|  | 			$p_title = $news['title']; | ||||||
|  | 			$body = $news['body']; | ||||||
|  | 			$comments = $news['comments']; | ||||||
|  | 			$type = $news['type']; | ||||||
|  | 			$category = $news['category']; | ||||||
|  | 			$player_id = $news['player_id']; | ||||||
|  | 			$article_text = $news['article_text']; | ||||||
|  | 			$article_image = $news['article_image']; | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			if(News::update($id, $p_title, $body, $type, $category, $player_id, $forum_section, $article_text, $article_image, $errors)) { | ||||||
|  | 				// update forum thread if exists | ||||||
|  | 				if(isset($forum_section) && Validator::number($forum_section)) { | ||||||
|  | 					$db->query("UPDATE `" . TABLE_PREFIX . "forum` SET `author_guid` = ".(int) $player_id.", `post_text` = ".$db->quote($body).", `post_topic` = ".$db->quote($p_title).", `edit_date` = " . time() . " WHERE `id` = " . $db->quote($forum_section)); | ||||||
|  | 				} | ||||||
|  |  | ||||||
|  | 				$action = $p_title = $body = $comments = $article_text = $article_image = ''; | ||||||
| 				$type = $category = $player_id = 0; | 				$type = $category = $player_id = 0; | ||||||
|  |  | ||||||
| 				success('Added successful.'); | 				success("Updated successful."); | ||||||
| 			} |  | ||||||
| 		} else if ($action == 'delete') { |  | ||||||
| 			if (News::delete($id, $errors)) { |  | ||||||
| 				success('Deleted successful.'); |  | ||||||
| 			} |  | ||||||
| 		} else if ($action == 'edit') { |  | ||||||
| 			if (isset($id) && !isset($p_title)) { |  | ||||||
| 				$news = News::get($id); |  | ||||||
| 				$p_title = $news['title']; |  | ||||||
| 				$body = $news['body']; |  | ||||||
| 				$comments = $news['comments']; |  | ||||||
| 				$type = $news['type']; |  | ||||||
| 				$category = $news['category']; |  | ||||||
| 				$player_id = $news['player_id']; |  | ||||||
| 				$article_text = $news['article_text']; |  | ||||||
| 				$article_image = $news['article_image']; |  | ||||||
| 			} else { |  | ||||||
| 				if (News::update($id, $p_title, $body, $type, $category, $player_id, $forum_section, $article_text, $article_image, $errors)) { |  | ||||||
| 					// update forum thread if exists |  | ||||||
| 					if (isset($forum_section) && Validator::number($forum_section)) { |  | ||||||
| 						$db->query("UPDATE `" . TABLE_PREFIX . "forum` SET `author_guid` = " . (int)$player_id . ", `post_text` = " . $db->quote($body) . ", `post_topic` = " . $db->quote($p_title) . ", `edit_date` = " . time() . " WHERE `id` = " . $db->quote($forum_section)); |  | ||||||
| 					} |  | ||||||
|  |  | ||||||
| 					$action = $p_title = $body = $comments = $article_text = $article_image = ''; |  | ||||||
| 					$type = $category = $player_id = 0; |  | ||||||
|  |  | ||||||
| 					success('Updated successful.'); |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 		} else if ($action == 'hide') { |  | ||||||
| 			if (News::toggleHide($id, $errors, $status)) { |  | ||||||
| 				success(($status == 1 ? 'Hide' : 'Show') . ' successful.'); |  | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  | 	else if($action == 'hide') { | ||||||
|  | 		News::toggleHidden($id, $errors, $status); | ||||||
|  | 		success(($status == 1 ? 'Show' : 'Hide') . " successful."); | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	if(!empty($errors)) | 	if(!empty($errors)) | ||||||
| 		error(implode(", ", $errors)); | 		error(implode(", ", $errors)); | ||||||
| } | } | ||||||
|  |  | ||||||
| $categories = array(); | $categories = array(); | ||||||
| foreach($db->query('SELECT `id`, `name`, `icon_id` FROM `' . TABLE_PREFIX . 'news_categories` WHERE `hide` != 1') as $cat) | foreach($db->query('SELECT `id`, `name`, `icon_id` FROM `' . TABLE_PREFIX . 'news_categories` WHERE `hidden` != 1') as $cat) | ||||||
| { | { | ||||||
| 	$categories[$cat['id']] = array( | 	$categories[$cat['id']] = array( | ||||||
| 		'name' => $cat['name'], | 		'name' => $cat['name'], | ||||||
| @@ -117,10 +114,12 @@ if($action == 'edit' || $action == 'new') { | |||||||
| 	$account_players->orderBy('group_id', POT::ORDER_DESC); | 	$account_players->orderBy('group_id', POT::ORDER_DESC); | ||||||
| 	$twig->display('admin.news.form.html.twig', array( | 	$twig->display('admin.news.form.html.twig', array( | ||||||
| 		'action' => $action, | 		'action' => $action, | ||||||
|  | 		'news_link' => getLink(PAGE), | ||||||
|  | 		'news_link_form' => '?p=news&action=' . ($action == 'edit' ? 'edit' : 'new'), | ||||||
| 		'news_id' => $id ?? null, | 		'news_id' => $id ?? null, | ||||||
| 		'title' => $p_title ?? '', | 		'title' => $p_title ?? '', | ||||||
| 		'body' => isset($body) ? escapeHtml($body) : '', | 		'body' => isset($body) ? escapeHtml($body) : '', | ||||||
| 		'type' => $type, | 		'type' => $type ?? null, | ||||||
| 		'player' => isset($player) && $player->isLoaded() ? $player : null, | 		'player' => isset($player) && $player->isLoaded() ? $player : null, | ||||||
| 		'player_id' => $player_id ?? null, | 		'player_id' => $player_id ?? null, | ||||||
| 		'account_players' => $account_players, | 		'account_players' => $account_players, | ||||||
| @@ -136,27 +135,18 @@ if($action == 'edit' || $action == 'new') { | |||||||
|  |  | ||||||
| $query = $db->query('SELECT * FROM ' . $db->tableName(TABLE_PREFIX . 'news')); | $query = $db->query('SELECT * FROM ' . $db->tableName(TABLE_PREFIX . 'news')); | ||||||
| $newses = array(); | $newses = array(); | ||||||
|  |  | ||||||
| $cachePlayers = []; |  | ||||||
| foreach ($query as $_news) { | foreach ($query as $_news) { | ||||||
| 	$playerId = $_news['player_id']; | 	$_player = new OTS_Player(); | ||||||
| 	if (isset($cachePlayers[$playerId])) { | 	$_player->load($_news['player_id']); | ||||||
| 		$_player = $cachePlayers[$playerId]; |  | ||||||
| 	} |  | ||||||
| 	else { |  | ||||||
| 		$_player = new OTS_Player(); |  | ||||||
| 		$_player->load($playerId); |  | ||||||
| 		$cachePlayers[$playerId] = $_player; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$newses[$_news['type']][] = array( | 	$newses[$_news['type']][] = array( | ||||||
| 		'id' => $_news['id'], | 		'id' => $_news['id'], | ||||||
| 		'hide' => $_news['hide'], | 		'hidden' => $_news['hidden'], | ||||||
| 		'archive_link' => getLink('news') . '/archive/' . $_news['id'], | 		'archive_link' => getLink('news') . '/archive/' . $_news['id'], | ||||||
| 		'title' => $_news['title'], | 		'title' => $_news['title'], | ||||||
| 		'date' => $_news['date'], | 		'date' => $_news['date'], | ||||||
| 		'player_name' => $_player->isLoaded() ? $_player->getName() : '', | 		'player_name' => isset($_player) && $_player->isLoaded() ? $_player->getName() : '', | ||||||
| 		'player_link' => $_player->isLoaded() ? getPlayerLink($_player, false) : '', | 		'player_link' => isset($_player) && $_player->isLoaded() ? getPlayerLink($_player->getName(), false) : '', | ||||||
| 	); | 	); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -13,10 +13,8 @@ use MyAAC\Models\Notepad as ModelsNotepad; | |||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Notepad'; | $title = 'Notepad'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * @var OTS_Account $account_logged |  * @var $account_logged OTS_Account | ||||||
|  */ |  */ | ||||||
| $_content = ''; | $_content = ''; | ||||||
| $notepad = ModelsNotepad::where('account_id', $account_logged->getId())->first(); | $notepad = ModelsNotepad::where('account_id', $account_logged->getId())->first(); | ||||||
|   | |||||||
| @@ -9,14 +9,11 @@ | |||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Models\Pages as ModelsPages; | use MyAAC\Models\Pages as ModelsPages; | ||||||
| use MyAAC\Admin\Pages; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Pages'; | $title = 'Pages'; | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | if (!hasFlag(FLAG_CONTENT_PAGES) && !superAdmin()) { | ||||||
| 	echo 'Access denied.'; | 	echo 'Access denied.'; | ||||||
| 	return; | 	return; | ||||||
| @@ -32,36 +29,31 @@ $enable_tinymce = true; | |||||||
| $access = 0; | $access = 0; | ||||||
|  |  | ||||||
| // some constants, used mainly by database (cannot by modified without schema changes) | // some constants, used mainly by database (cannot by modified without schema changes) | ||||||
| const PAGE_TITLE_LIMIT = 30; | define('PAGE_TITLE_LIMIT', 30); | ||||||
| const PAGE_NAME_LIMIT = 30; | define('PAGE_NAME_LIMIT', 30); | ||||||
| const PAGE_BODY_LIMIT = 65535; // maximum page body length | define('PAGE_BODY_LIMIT', 65535); // maximum page body length | ||||||
|  |  | ||||||
| if (!empty($action) && isRequestMethod('post')) { | if (!empty($action)) { | ||||||
| 	if ($action == 'delete' || $action == 'edit' || $action == 'hide') { | 	if ($action == 'delete' || $action == 'edit' || $action == 'hide') | ||||||
| 		$id = $_POST['id']; | 		$id = $_REQUEST['id']; | ||||||
|  |  | ||||||
|  | 	if (isset($_REQUEST['name'])) | ||||||
|  | 		$name = $_REQUEST['name']; | ||||||
|  |  | ||||||
|  | 	if (isset($_REQUEST['title'])) | ||||||
|  | 		$p_title = $_REQUEST['title']; | ||||||
|  |  | ||||||
|  | 	$php = isset($_REQUEST['php']) && $_REQUEST['php'] == 1; | ||||||
|  | 	$enable_tinymce = isset($_REQUEST['enable_tinymce']) && $_REQUEST['enable_tinymce'] == 1; | ||||||
|  | 	if ($php) | ||||||
|  | 		$body = $_REQUEST['body']; | ||||||
|  | 	else if (isset($_REQUEST['body'])) { | ||||||
|  | 		//$body = $_REQUEST['body']; | ||||||
|  | 		$body = html_entity_decode(stripslashes($_REQUEST['body'])); | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (isset($_POST['name'])) { | 	if (isset($_REQUEST['access'])) | ||||||
| 		$name = $_POST['name']; | 		$access = $_REQUEST['access']; | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if (isset($_POST['title'])) { |  | ||||||
| 		$p_title = $_POST['title']; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$php = isset($_POST['php']) && $_POST['php'] == 1; |  | ||||||
| 	$enable_tinymce = (isset($_POST['enable_tinymce']) && $_POST['enable_tinymce'] == 1) ?: $enable_tinymce; |  | ||||||
| 	if ($php) { |  | ||||||
| 		$body = $_POST['body']; |  | ||||||
| 	} |  | ||||||
| 	else if (isset($_POST['body'])) { |  | ||||||
| 		//$body = $_POST['body']; |  | ||||||
| 		$body = html_entity_decode(stripslashes($_POST['body'])); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if (isset($_POST['access'])) { |  | ||||||
| 		$access = $_POST['access']; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$errors = array(); | 	$errors = array(); | ||||||
| 	$player_id = 1; | 	$player_id = 1; | ||||||
| @@ -78,7 +70,7 @@ if (!empty($action) && isRequestMethod('post')) { | |||||||
| 		if (Pages::delete($id, $errors)) | 		if (Pages::delete($id, $errors)) | ||||||
| 			success('Page with id ' . $id . ' has been deleted'); | 			success('Page with id ' . $id . ' has been deleted'); | ||||||
| 	} else if ($action == 'edit') { | 	} else if ($action == 'edit') { | ||||||
| 		if (isset($id) && !isset($_POST['name'])) { | 		if (isset($id) && !isset($_REQUEST['name'])) { | ||||||
| 			$_page = Pages::get($id); | 			$_page = Pages::get($id); | ||||||
| 			$name = $_page['name']; | 			$name = $_page['name']; | ||||||
| 			$p_title = $_page['title']; | 			$p_title = $_page['title']; | ||||||
| @@ -97,9 +89,8 @@ if (!empty($action) && isRequestMethod('post')) { | |||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} else if ($action == 'hide') { | 	} else if ($action == 'hide') { | ||||||
| 		if (Pages::toggleHide($id, $errors, $status)) { | 		Pages::toggleHidden($id, $errors, $status); | ||||||
| 			success(($status == 0 ? 'Show' : 'Hide') . ' successful.'); | 		success(($status == 1 ? 'Show' : 'Hide') . ' successful.'); | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (!empty($errors)) | 	if (!empty($errors)) | ||||||
| @@ -112,11 +103,11 @@ $pages = ModelsPages::all()->map(function ($e) { | |||||||
| 		'title' => substr($e->title, 0, 20), | 		'title' => substr($e->title, 0, 20), | ||||||
| 		'php' => $e->php == '1', | 		'php' => $e->php == '1', | ||||||
| 		'id' => $e->id, | 		'id' => $e->id, | ||||||
| 		'hide' => $e->hide | 		'hidden' => $e->hidden | ||||||
| 	]; | 	]; | ||||||
| })->toArray(); | })->toArray(); | ||||||
|  |  | ||||||
| $twig->display('admin.pages.form.html.twig', [ | $twig->display('admin.pages.form.html.twig', array( | ||||||
| 	'action' => $action, | 	'action' => $action, | ||||||
| 	'id' => $action == 'edit' ? $id : null, | 	'id' => $action == 'edit' ? $id : null, | ||||||
| 	'name' => $name, | 	'name' => $name, | ||||||
| @@ -126,8 +117,136 @@ $twig->display('admin.pages.form.html.twig', [ | |||||||
| 	'body' => isset($body) ? escapeHtml($body) : '', | 	'body' => isset($body) ? escapeHtml($body) : '', | ||||||
| 	'groups' => $groups->getGroups(), | 	'groups' => $groups->getGroups(), | ||||||
| 	'access' => $access | 	'access' => $access | ||||||
| ]); | )); | ||||||
|  |  | ||||||
| $twig->display('admin.pages.html.twig', [ | $twig->display('admin.pages.html.twig', array( | ||||||
| 	'pages' => $pages | 	'pages' => $pages | ||||||
| ]); | )); | ||||||
|  |  | ||||||
|  | class Pages | ||||||
|  | { | ||||||
|  | 	static public function verify($name, $title, $body, $player_id, $php, $enable_tinymce, $access, &$errors) | ||||||
|  | 	{ | ||||||
|  | 		if(!isset($title[0]) || !isset($body[0])) { | ||||||
|  | 			$errors[] = 'Please fill all inputs.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(strlen($name) > PAGE_NAME_LIMIT) { | ||||||
|  | 			$errors[] = 'Page name cannot be longer than ' . PAGE_NAME_LIMIT . ' characters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(strlen($title) > PAGE_TITLE_LIMIT) { | ||||||
|  | 			$errors[] = 'Page title cannot be longer than ' . PAGE_TITLE_LIMIT . ' characters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(strlen($body) > PAGE_BODY_LIMIT) { | ||||||
|  | 			$errors[] = 'Page content cannot be longer than ' . PAGE_BODY_LIMIT . ' characters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(!isset($player_id) || $player_id == 0) { | ||||||
|  | 			$errors[] = 'Player ID is wrong.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(!isset($php) || ($php != 0 && $php != 1)) { | ||||||
|  | 			$errors[] = 'Enable PHP is wrong.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if ($php == 1 && !getBoolean(setting('core.admin_pages_php_enable'))) { | ||||||
|  | 			$errors[] = 'PHP pages disabled on this server. To enable go to Settings in Admin Panel and enable <strong>Enable PHP Pages</strong>.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(!isset($enable_tinymce) || ($enable_tinymce != 0 && $enable_tinymce != 1)) { | ||||||
|  | 			$errors[] = 'Enable TinyMCE is wrong.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 		if(!isset($access) || $access < 0 || $access > PHP_INT_MAX) { | ||||||
|  | 			$errors[] = 'Access is wrong.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return true; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	static public function get($id) | ||||||
|  | 	{ | ||||||
|  | 		$row = ModelsPages::find($id); | ||||||
|  | 		if ($row) { | ||||||
|  | 			return $row->toArray(); | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return false; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	static public function add($name, $title, $body, $player_id, $php, $enable_tinymce, $access, &$errors) | ||||||
|  | 	{ | ||||||
|  | 		if(!self::verify($name, $title, $body, $player_id, $php, $enable_tinymce, $access, $errors)) { | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if (!ModelsPages::where('name', $name)->exists()) | ||||||
|  | 			ModelsPages::create([ | ||||||
|  | 				'name' => $name, | ||||||
|  | 				'title' => $title, | ||||||
|  | 				'body' => $body, | ||||||
|  | 				'player_id' => $player_id, | ||||||
|  | 				'php' => $php ? '1' : '0', | ||||||
|  | 				'enable_tinymce' => $enable_tinymce ? '1' : '0', | ||||||
|  | 				'access' => $access | ||||||
|  | 			]); | ||||||
|  | 		else | ||||||
|  | 			$errors[] = 'Page with this link already exists.'; | ||||||
|  |  | ||||||
|  | 		return !count($errors); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	static public function update($id, $name, $title, $body, $player_id, $php, $enable_tinymce, $access, &$errors) | ||||||
|  | 	{ | ||||||
|  | 		if(!self::verify($name, $title, $body, $player_id, $php, $enable_tinymce, $access, $errors)) { | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		ModelsPages::where('id', $id)->update([ | ||||||
|  | 			'name' => $name, | ||||||
|  | 			'title' => $title, | ||||||
|  | 			'body' => $body, | ||||||
|  | 			'player_id' => $player_id, | ||||||
|  | 			'php' => $php ? '1' : '0', | ||||||
|  | 			'enable_tinymce' => $enable_tinymce ? '1' : '0', | ||||||
|  | 			'access' => $access | ||||||
|  | 		]); | ||||||
|  | 		return true; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	static public function delete($id, &$errors) | ||||||
|  | 	{ | ||||||
|  | 		if (isset($id)) { | ||||||
|  | 			$row = ModelsPages::find($id); | ||||||
|  | 			if ($row) { | ||||||
|  | 				$row->delete(); | ||||||
|  | 			} | ||||||
|  | 			else | ||||||
|  | 				$errors[] = 'Page with id ' . $id . ' does not exists.'; | ||||||
|  | 		} else | ||||||
|  | 			$errors[] = 'id not set'; | ||||||
|  |  | ||||||
|  | 		return !count($errors); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	static public function toggleHidden($id, &$errors, &$status) | ||||||
|  | 	{ | ||||||
|  | 		if (isset($id)) { | ||||||
|  | 			$row = ModelsPages::find($id); | ||||||
|  | 			if ($row) { | ||||||
|  | 				$row->hidden = $row->hidden == 1 ? 0 : 1; | ||||||
|  | 				$row->save(); | ||||||
|  | 				$status = $row->hidden; | ||||||
|  | 			} | ||||||
|  | 			else { | ||||||
|  | 				$errors[] = 'Page with id ' . $id . ' does not exists.'; | ||||||
|  | 			} | ||||||
|  | 		} else | ||||||
|  | 			$errors[] = 'id not set'; | ||||||
|  |  | ||||||
|  | 		return !count($errors); | ||||||
|  | 	} | ||||||
|  | } | ||||||
|   | |||||||
| @@ -8,18 +8,15 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Forum; |  | ||||||
| use MyAAC\Models\Player; | use MyAAC\Models\Player; | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| $title = 'Player editor'; | $title = 'Player editor'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| $player_base = ADMIN_URL . '?p=players'; | $player_base = ADMIN_URL . '?p=players'; | ||||||
|  |  | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
|  | require_once LIBS . 'forum.php'; | ||||||
|  |  | ||||||
| $skills = array( | $skills = array( | ||||||
| 	POT::SKILL_FIST => array('Fist fighting', 'fist'), | 	POT::SKILL_FIST => array('Fist fighting', 'fist'), | ||||||
| @@ -51,20 +48,22 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 	if (strlen($search_player) < 3 && !Validator::number($search_player)) { | 	if (strlen($search_player) < 3 && !Validator::number($search_player)) { | ||||||
| 		echo_error('Player name is too short.'); | 		echo_error('Player name is too short.'); | ||||||
| 	} else { | 	} else { | ||||||
| 		$query = Player::where('name', 'like', '%' . $search_player . '%')->orderBy('name')->limit(11)->get(['id', 'name']); | 		$query = $db->query('SELECT `id` FROM `players` WHERE `name` = ' . $db->quote($search_player)); | ||||||
| 		if (count($query) == 0) { | 		if ($query->rowCount() == 1) { | ||||||
| 			echo_error('No entries found.'); | 			$query = $query->fetch(); | ||||||
| 		} else if (count($query) == 1) { | 			$id = (int)$query['id']; | ||||||
| 			$id = $query->first()->getKey(); |  | ||||||
| 		} else if (count($query) > 10) { |  | ||||||
| 			echo_error('Specified name resulted with too many players.'); |  | ||||||
| 		} else { | 		} else { | ||||||
| 			$str_construct = 'Do you mean?<ul>'; | 			$query = $db->query('SELECT `id`, `name` FROM `players` WHERE `name` LIKE ' . $db->quote('%' . $search_player . '%')); | ||||||
| 			foreach ($query as $row) { | 			if ($query->rowCount() > 0 && $query->rowCount() <= 10) { | ||||||
| 				$str_construct .= '<li><a href="' . $player_base . '&id=' . $row->getKey() . '">' . $row->name . '</a></li>'; | 				$str_construct = 'Do you mean?<ul>'; | ||||||
| 			} | 				foreach ($query as $row) | ||||||
| 			$str_construct .= '</ul>'; | 					$str_construct .= '<li><a href="' . $player_base . '&id=' . $row['id'] . '">' . $row['name'] . '</a></li>'; | ||||||
| 			echo_error($str_construct); | 				$str_construct .= '</ul>'; | ||||||
|  | 				echo_error($str_construct); | ||||||
|  | 			} else if ($query->rowCount() > 10) | ||||||
|  | 				echo_error('Specified name resulted with too many players.'); | ||||||
|  | 			else | ||||||
|  | 				echo_error('No entries found.'); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -76,7 +75,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 		$player = new OTS_Player(); | 		$player = new OTS_Player(); | ||||||
| 		$player->load($id); | 		$player->load($id); | ||||||
|  |  | ||||||
| 		if ($player->isLoaded() && isset($_POST['save'])) {// we want to save | 		if (isset($player) && $player->isLoaded() && isset($_POST['save'])) {// we want to save | ||||||
| 			$error = false; | 			$error = false; | ||||||
|  |  | ||||||
| 			if ($player->isOnline()) | 			if ($player->isOnline()) | ||||||
| @@ -200,7 +199,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
|  |  | ||||||
| 			if ($hasBlessingsColumn) { | 			if ($hasBlessingsColumn) { | ||||||
| 				$blessings = $_POST['blessings']; | 				$blessings = $_POST['blessings']; | ||||||
| 				verify_number($blessings, 'Blessings', 3); | 				verify_number($blessings, 'Blessings', 2); | ||||||
| 			} | 			} | ||||||
|  |  | ||||||
| 			$balance = $_POST['balance']; | 			$balance = $_POST['balance']; | ||||||
| @@ -211,7 +210,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 			} | 			} | ||||||
|  |  | ||||||
| 			$deleted = (isset($_POST['deleted']) && $_POST['deleted'] == 'true'); | 			$deleted = (isset($_POST['deleted']) && $_POST['deleted'] == 'true'); | ||||||
| 			$hide = (isset($_POST['hide']) && $_POST['hide'] == 'true'); | 			$hidden = (isset($_POST['hidden']) && $_POST['hidden'] == 'true'); | ||||||
|  |  | ||||||
| 			$created = strtotime($_POST['created']); | 			$created = strtotime($_POST['created']); | ||||||
| 			verify_number($created, 'Created', 11); | 			verify_number($created, 'Created', 11); | ||||||
| @@ -272,7 +271,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 					$player->setLossContainers($loss_containers); | 					$player->setLossContainers($loss_containers); | ||||||
| 					$player->setLossItems($loss_items); | 					$player->setLossItems($loss_items); | ||||||
| 				} | 				} | ||||||
| 				if ($hasBlessingsColumn) | 				if ($db->hasColumn('players', 'blessings')) | ||||||
| 					$player->setBlessings($blessings); | 					$player->setBlessings($blessings); | ||||||
|  |  | ||||||
| 				if ($hasBlessingColumn) { | 				if ($hasBlessingColumn) { | ||||||
| @@ -288,7 +287,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 					$player->setCustomField('deletion', $deleted ? '1' : '0'); | 					$player->setCustomField('deletion', $deleted ? '1' : '0'); | ||||||
| 				else | 				else | ||||||
| 					$player->setCustomField('deleted', $deleted ? '1' : '0'); | 					$player->setCustomField('deleted', $deleted ? '1' : '0'); | ||||||
| 				$player->setCustomField('hide', $hide ? '1' : '0'); | 				$player->setCustomField('hidden', $hidden ? '1' : '0'); | ||||||
| 				$player->setCustomField('created', $created); | 				$player->setCustomField('created', $created); | ||||||
| 				if (isset($comment)) | 				if (isset($comment)) | ||||||
| 					$player->setCustomField('comment', $comment); | 					$player->setCustomField('comment', $comment); | ||||||
| @@ -305,7 +304,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} else if ($id == 0) { | 	} else if ($id == 0) { | ||||||
| 		$players_db = Player::orderBy('id')->get(['id','name', 'level']); | 		$players_db = $db->query('SELECT `id`, `name`, `level` FROM `players` ORDER BY `id` asc'); | ||||||
| 		?> | 		?> | ||||||
| 		<div class="col-12 col-sm-12 col-lg-10"> | 		<div class="col-12 col-sm-12 col-lg-10"> | ||||||
| 			<div class="card card-info card-outline"> | 			<div class="card card-info card-outline"> | ||||||
| @@ -325,11 +324,11 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 						<tbody> | 						<tbody> | ||||||
| 						<?php foreach ($players_db as $player_db): ?> | 						<?php foreach ($players_db as $player_db): ?> | ||||||
| 							<tr> | 							<tr> | ||||||
| 								<th><?php echo $player_db->id; ?></th> | 								<th><?php echo $player_db['id']; ?></th> | ||||||
| 								<td><?php echo $player_db->name; ?></a></td> | 								<td><?php echo $player_db['name']; ?></a></td> | ||||||
| 								<td><?php echo $player_db->level; ?></a></td> | 								<td><?php echo $player_db['level']; ?></a></td> | ||||||
|  |  | ||||||
| 								<td><a href="?p=players&id=<?php echo $player_db->id; ?>" class="btn btn-success btn-sm" title="Edit"> | 								<td><a href="?p=players&id=<?php echo $player_db['id']; ?>" class="btn btn-success btn-sm" title="Edit"> | ||||||
| 										<i class="fas fa-pencil-alt"></i> | 										<i class="fas fa-pencil-alt"></i> | ||||||
| 									</a> | 									</a> | ||||||
| 								</td> | 								</td> | ||||||
| @@ -373,8 +372,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 						</li> | 						</li> | ||||||
| 					</ul> | 					</ul> | ||||||
| 				</div> | 				</div> | ||||||
| 				<form action="<?php echo $player_base . ($id > 0 ? '&id=' . $id : ''); ?>" method="post"> | 				<form action="<?php echo $player_base . ((isset($id) && $id > 0) ? '&id=' . $id : ''); ?>" method="post"> | ||||||
| 					<?php csrf(); ?> |  | ||||||
| 					<div class="card-body"> | 					<div class="card-body"> | ||||||
| 						<div class="tab-content" id="tabs-tabContent"> | 						<div class="tab-content" id="tabs-tabContent"> | ||||||
| 							<div class="tab-pane fade active show" id="tabs-home"> | 							<div class="tab-pane fade active show" id="tabs-home"> | ||||||
| @@ -392,8 +390,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 									<div class="col-12 col-sm-12 col-lg-6"> | 									<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 										<label for="group">Group:</label> | 										<label for="group">Group:</label> | ||||||
| 										<select name="group" id="group" class="form-control custom-select"> | 										<select name="group" id="group" class="form-control custom-select"> | ||||||
| 											<?php foreach ($groups->getGroups() as $_id => $group): ?> | 											<?php foreach ($groups->getGroups() as $id => $group): ?> | ||||||
| 												<option value="<?php echo $_id; ?>" <?php echo($player->getGroup()->getId() == $_id ? 'selected' : ''); ?>><?php echo $group->getName(); ?></option> | 												<option value="<?php echo $id; ?>" <?php echo($player->getGroup()->getId() == $id ? 'selected' : ''); ?>><?php echo $group->getName(); ?></option> | ||||||
| 											<?php endforeach; ?> | 											<?php endforeach; ?> | ||||||
| 										</select> | 										</select> | ||||||
| 									</div> | 									</div> | ||||||
| @@ -401,8 +399,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 										<label for="vocation">Vocation</label> | 										<label for="vocation">Vocation</label> | ||||||
| 										<select name="vocation" id="vocation" class="form-control custom-select"> | 										<select name="vocation" id="vocation" class="form-control custom-select"> | ||||||
| 											<?php | 											<?php | ||||||
| 											foreach ($config['vocations'] as $_id => $name) { | 											foreach ($config['vocations'] as $id => $name) { | ||||||
| 												echo '<option value=' . $_id . ($_id == $player->getVocation() ? ' selected' : '') . '>' . $name . '</option>'; | 												echo '<option value=' . $id . ($id == $player->getVocation() ? ' selected' : '') . '>' . $name . '</option>'; | ||||||
| 											} | 											} | ||||||
| 											?> | 											?> | ||||||
| 										</select> | 										</select> | ||||||
| @@ -412,8 +410,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 									<div class="col-12 col-sm-12 col-lg-6"> | 									<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 										<label for="sex">Sex:</label> | 										<label for="sex">Sex:</label> | ||||||
| 										<select name="sex" id="sex" class="form-control custom-select">> | 										<select name="sex" id="sex" class="form-control custom-select">> | ||||||
| 											<?php foreach ($config['genders'] as $_id => $sex): ?> | 											<?php foreach ($config['genders'] as $id => $sex): ?> | ||||||
| 												<option value="<?php echo $_id; ?>" <?php echo($player->getSex() == $_id ? 'selected' : ''); ?>><?php echo strtolower($sex); ?></option> | 												<option value="<?php echo $id; ?>" <?php echo($player->getSex() == $id ? 'selected' : ''); ?>><?php echo strtolower($sex); ?></option> | ||||||
| 											<?php endforeach; ?> | 											<?php endforeach; ?> | ||||||
| 										</select> | 										</select> | ||||||
| 									</div> | 									</div> | ||||||
| @@ -426,8 +424,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 												$configTowns[$player->getTownId()] = 'Unknown Town'; | 												$configTowns[$player->getTownId()] = 'Unknown Town'; | ||||||
| 											} | 											} | ||||||
|  |  | ||||||
| 											foreach ($configTowns as $_id => $town): ?> | 											foreach ($configTowns as $id => $town): ?> | ||||||
| 												<option value="<?php echo $_id; ?>" <?php echo($player->getTownId() == $_id ? 'selected' : ''); ?>><?php echo $town; ?></option> | 												<option value="<?php echo $id; ?>" <?php echo($player->getTownId() == $id ? 'selected' : ''); ?>><?php echo $town; ?></option> | ||||||
| 											<?php endforeach; ?> | 											<?php endforeach; ?> | ||||||
| 										</select> | 										</select> | ||||||
| 									</div> | 									</div> | ||||||
| @@ -438,8 +436,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 										<select name="skull" id="skull" class="form-control custom-select"> | 										<select name="skull" id="skull" class="form-control custom-select"> | ||||||
| 											<?php | 											<?php | ||||||
|  |  | ||||||
| 											foreach ($skull_type as $_id => $s_name) { | 											foreach ($skull_type as $id => $s_name) { | ||||||
| 												echo '<option value=' . $_id . ($_id == $player->getSkull() ? ' selected' : '') . '>' . $s_name . '</option>'; | 												echo '<option value=' . $id . ($id == $player->getSkull() ? ' selected' : '') . '>' . $s_name . '</option>'; | ||||||
| 											} | 											} | ||||||
| 											?> | 											?> | ||||||
| 										</select> | 										</select> | ||||||
| @@ -483,8 +481,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 									</div> | 									</div> | ||||||
| 									<div class="col-12 col-sm-12 col-lg-6"> | 									<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 										<div class="custom-control custom-switch custom-switch-on-success"> | 										<div class="custom-control custom-switch custom-switch-on-success"> | ||||||
| 											<input type="checkbox" class="custom-control-input" name="hide" id="hide" value="true" <?php echo($player->isHidden() ? ' checked' : ''); ?>> | 											<input type="checkbox" class="custom-control-input" name="hidden" id="hidden" value="true" <?php echo($player->isHidden() ? ' checked' : ''); ?>> | ||||||
| 											<label class="custom-control-label" for="hide">Hidden</label> | 											<label class="custom-control-label" for="hidden">Hidden</label> | ||||||
| 										</div> | 										</div> | ||||||
| 									</div> | 									</div> | ||||||
| 								</div> | 								</div> | ||||||
| @@ -556,16 +554,16 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 							</div> | 							</div> | ||||||
| 							<div class="tab-pane fade" id="tabs-skills"> | 							<div class="tab-pane fade" id="tabs-skills"> | ||||||
| 								<?php | 								<?php | ||||||
| 								foreach ($skills as $_id => $info) { | 								foreach ($skills as $id => $info) { | ||||||
| 									?> | 									?> | ||||||
| 									<div class="form-group row"> | 									<div class="form-group row"> | ||||||
| 										<div class="col-12 col-sm-12 col-lg-6"> | 										<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 											<?php echo '<label for="skills[' . $_id . ']" class="control-label">' . $info[0] . '</label> | 											<?php echo '<label for="skills[' . $id . ']" class="control-label">' . $info[0] . '</label> | ||||||
| 									<input type="text" class="form-control" id="skills[' . $_id . ']" name="skills[' . $_id . ']" maxlength="10" autocomplete="off" value="' . $player->getSkill($_id) . '"/>'; ?> | 									<input type="text" class="form-control" id="skills[' . $id . ']" name="skills[' . $id . ']" maxlength="10" autocomplete="off" value="' . $player->getSkill($id) . '"/>'; ?> | ||||||
| 										</div> | 										</div> | ||||||
| 										<div class="col-12 col-sm-12 col-lg-6"> | 										<div class="col-12 col-sm-12 col-lg-6"> | ||||||
| 											<?php echo '<label for="skills_tries[' . $_id . ']" class="control-label">' . $info[0] . ' tries</label> | 											<?php echo '<label for="skills_tries[' . $id . ']" class="control-label">' . $info[0] . ' tries</label> | ||||||
| 									<input type="text" class="form-control" id="skills_tries[' . $_id . ']" name="skills_tries[' . $_id . ']" maxlength="10" autocomplete="off" value="' . $player->getSkillTries($_id) . '"/>'; ?> | 									<input type="text" class="form-control" id="skills_tries[' . $id . ']" name="skills_tries[' . $id . ']" maxlength="10" autocomplete="off" value="' . $player->getSkillTries($id) . '"/>'; ?> | ||||||
| 										</div> | 										</div> | ||||||
| 									</div> | 									</div> | ||||||
| 								<?php } ?> | 								<?php } ?> | ||||||
| @@ -624,7 +622,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 										if ($outfitlist) { ?> | 										if ($outfitlist) { ?> | ||||||
| 											<select name="look_type" id="look_type" class="form-control custom-select"> | 											<select name="look_type" id="look_type" class="form-control custom-select"> | ||||||
| 												<?php | 												<?php | ||||||
| 												foreach ($outfitlist as $_id => $outfit) { | 												foreach ($outfitlist as $id => $outfit) { | ||||||
| 													if ($outfit['enabled'] == 'yes') ; | 													if ($outfit['enabled'] == 'yes') ; | ||||||
| 													echo '<option value=' . $outfit['id'] . ($outfit['id'] == $player->getLookType() ? ' selected' : '') . '>' . $outfit['name'] . ' - ' . ($outfit['type'] == 1 ? 'Male' : 'Female') . '</option>'; | 													echo '<option value=' . $outfit['id'] . ($outfit['id'] == $player->getLookType() ? ' selected' : '') . '>' . $outfit['name'] . ' - ' . ($outfit['type'] == 1 ? 'Male' : 'Female') . '</option>'; | ||||||
| 												} | 												} | ||||||
| @@ -640,8 +638,8 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 											<select name="look_addons" id="look_addons" class="form-control custom-select"> | 											<select name="look_addons" id="look_addons" class="form-control custom-select"> | ||||||
| 												<?php | 												<?php | ||||||
| 												$addon_type = array("None", "First", "Second", "Both"); | 												$addon_type = array("None", "First", "Second", "Both"); | ||||||
| 												foreach ($addon_type as $_id => $s_name) { | 												foreach ($addon_type as $id => $s_name) { | ||||||
| 													echo '<option value=' . $_id . ($_id == $player->getLookAddons() ? ' selected' : '') . '>' . $s_name . '</option>'; | 													echo '<option value=' . $id . ($id == $player->getLookAddons() ? ' selected' : '') . '>' . $s_name . '</option>'; | ||||||
| 												} | 												} | ||||||
| 												?> | 												?> | ||||||
| 											</select> | 											</select> | ||||||
| @@ -706,7 +704,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 								<div class="form-group row"> | 								<div class="form-group row"> | ||||||
| 									<div class="col-12"> | 									<div class="col-12"> | ||||||
| 										<label for="comment" class="control-label">Comment:</label> | 										<label for="comment" class="control-label">Comment:</label> | ||||||
| 										<textarea class="form-control" id="comment" name="comment" rows="10" cols="50" wrap="virtual"><?php echo $player->getCustomField("comment"); ?></textarea> | 										<textarea class="form-control" name="comment" rows="10" cols="50" wrap="virtual"><?php echo $player->getCustomField("comment"); ?></textarea> | ||||||
| 										<small>[max. length: 2000 chars, 50 lines (ENTERs)]</small> | 										<small>[max. length: 2000 chars, 50 lines (ENTERs)]</small> | ||||||
| 									</div> | 									</div> | ||||||
| 								</div> | 								</div> | ||||||
| @@ -843,7 +841,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
|  |  | ||||||
| 				<?php if($hasLookAddons): ?> | 				<?php if($hasLookAddons): ?> | ||||||
| 				const $addonvalue = $('#look_addons'); | 				const $addonvalue = $('#look_addons'); | ||||||
| 				$addonvalue.on('change', () => { | 				$('#look_addons').on('change', () => { | ||||||
| 					updateOutfit(); | 					updateOutfit(); | ||||||
| 				}); | 				}); | ||||||
| 				<?php endif; ?> | 				<?php endif; ?> | ||||||
| @@ -872,20 +870,18 @@ else if (isset($_REQUEST['search'])) { | |||||||
| 			<div class="card-body row"> | 			<div class="card-body row"> | ||||||
| 				<div class="col-6 col-lg-12"> | 				<div class="col-6 col-lg-12"> | ||||||
| 					<form action="<?php echo $player_base; ?>" method="post"> | 					<form action="<?php echo $player_base; ?>" method="post"> | ||||||
| 						<?php csrf(); ?> | 						<label for="name">Player Name:</label> | ||||||
| 						<label for="search">Player Name:</label> |  | ||||||
| 						<div class="input-group input-group-sm"> | 						<div class="input-group input-group-sm"> | ||||||
| 							<input type="text" class="form-control" id="search" name="search" value="<?= escapeHtml($search_player); ?>" maxlength="32" size="32"> | 							<input type="text" class="form-control" name="search" value="<?php echo $search_player; ?>" maxlength="32" size="32"> | ||||||
| 							<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | 							<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | ||||||
| 						</div> | 						</div> | ||||||
| 					</form> | 					</form> | ||||||
| 				</div> | 				</div> | ||||||
| 				<div class="col-6 col-lg-12"> | 				<div class="col-6 col-lg-12"> | ||||||
| 					<form action="<?php echo $player_base; ?>" method="post"> | 					<form action="<?php echo $player_base; ?>" method="post"> | ||||||
| 						<?php csrf(); ?> | 						<label for="name">Player ID:</label> | ||||||
| 						<label for="id">Player ID:</label> |  | ||||||
| 						<div class="input-group input-group-sm"> | 						<div class="input-group input-group-sm"> | ||||||
| 							<input type="text" class="form-control" id="id" name="id" value="<?= $id; ?>" maxlength="32" size="32"> | 							<input type="text" class="form-control" name="id" value="" maxlength="32" size="32"> | ||||||
| 							<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | 							<span class="input-group-append"><button type="submit" class="btn btn-info btn-flat">Search</button></span> | ||||||
| 						</div> | 						</div> | ||||||
| 					</form> | 					</form> | ||||||
| @@ -896,7 +892,7 @@ else if (isset($_REQUEST['search'])) { | |||||||
| </div> | </div> | ||||||
|  |  | ||||||
| <script> | <script> | ||||||
| 	$(function () { | 	$(document).ready(function () { | ||||||
| 		$('.player_datatable').DataTable({ | 		$('.player_datatable').DataTable({ | ||||||
| 			"order": [[0, "asc"]] | 			"order": [[0, "asc"]] | ||||||
| 		}); | 		}); | ||||||
|   | |||||||
| @@ -7,45 +7,35 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Plugins; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Plugin manager'; | $title = 'Plugin manager'; | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
|  |  | ||||||
|  | require_once LIBS . 'plugins.php'; | ||||||
|  |  | ||||||
| if (!getBoolean(setting('core.admin_plugins_manage_enable'))) { | if (!getBoolean(setting('core.admin_plugins_manage_enable'))) { | ||||||
| 	warning('Plugin installation and management is disabled in Settings.<br/>If you wish to enable, go to Settings and enable <strong>Enable Plugins Manage</strong>.'); | 	warning('Plugin installation and management is disabled in Settings.<br/>If you wish to enable, go to Settings and enable <strong>Enable Plugins Manage</strong>.'); | ||||||
| } | } | ||||||
| else { | else { | ||||||
| 	$pluginUploadEnabled = true; | 	$twig->display('admin.plugins.form.html.twig'); | ||||||
| 	if(!\class_exists('\ZipArchive')) { |  | ||||||
| 		error('Please install PHP zip extension. Plugins upload disabled until then.'); |  | ||||||
| 		$pluginUploadEnabled = false; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$twig->display('admin.plugins.form.html.twig', ['pluginUploadEnabled' => $pluginUploadEnabled]); | 	if (isset($_REQUEST['uninstall'])) { | ||||||
|  | 		$uninstall = $_REQUEST['uninstall']; | ||||||
| 	if (isset($_POST['uninstall'])) { |  | ||||||
| 		$uninstall = $_POST['uninstall']; |  | ||||||
|  |  | ||||||
| 		if (Plugins::uninstall($uninstall)) { | 		if (Plugins::uninstall($uninstall)) { | ||||||
| 			success('Successfully uninstalled plugin ' . $uninstall); | 			success('Successfully uninstalled plugin ' . $uninstall); | ||||||
| 		} else { | 		} else { | ||||||
| 			error('Error while uninstalling plugin ' . $uninstall . ': ' . Plugins::getError()); | 			error('Error while uninstalling plugin ' . $uninstall . ': ' . Plugins::getError()); | ||||||
| 		} | 		} | ||||||
| 	} else if (isset($_POST['enable'])) { | 	} else if (isset($_REQUEST['enable'])) { | ||||||
| 		$enable = $_POST['enable']; | 		$enable = $_REQUEST['enable']; | ||||||
| 		if (Plugins::enable($enable)) { | 		if (Plugins::enable($enable)) { | ||||||
| 			success('Successfully enabled plugin ' . $enable); | 			success('Successfully enabled plugin ' . $enable); | ||||||
| 		} else { | 		} else { | ||||||
| 			error('Error while enabling plugin ' . $enable . ': ' . Plugins::getError()); | 			error('Error while enabling plugin ' . $enable . ': ' . Plugins::getError()); | ||||||
| 		} | 		} | ||||||
| 	} else if (isset($_POST['disable'])) { | 	} else if (isset($_REQUEST['disable'])) { | ||||||
| 		$disable = $_POST['disable']; | 		$disable = $_REQUEST['disable']; | ||||||
| 		if (Plugins::disable($disable)) { | 		if (Plugins::disable($disable)) { | ||||||
| 			success('Successfully disabled plugin ' . $disable); | 			success('Successfully disabled plugin ' . $disable); | ||||||
| 		} else { | 		} else { | ||||||
| @@ -126,7 +116,7 @@ foreach (get_plugins(true) as $plugin) { | |||||||
| 	if (!$plugin_info) { | 	if (!$plugin_info) { | ||||||
| 		warning('Cannot load plugin info ' . $plugin . '.json'); | 		warning('Cannot load plugin info ' . $plugin . '.json'); | ||||||
| 	} else { | 	} else { | ||||||
| 		$disabled = (str_contains($plugin, 'disabled.')); | 		$disabled = (strpos($plugin, 'disabled.') !== false); | ||||||
| 		$pluginOriginal = ($disabled ? str_replace('disabled.', '', $plugin) : $plugin); | 		$pluginOriginal = ($disabled ? str_replace('disabled.', '', $plugin) : $plugin); | ||||||
| 		$plugins[] = array( | 		$plugins[] = array( | ||||||
| 			'name' => $plugin_info['name'] ?? '', | 			'name' => $plugin_info['name'] ?? '', | ||||||
|   | |||||||
| @@ -7,10 +7,6 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Plugins; |  | ||||||
| use MyAAC\Settings; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| $title = 'Settings'; | $title = 'Settings'; | ||||||
|  |  | ||||||
| @@ -48,7 +44,7 @@ if (!is_array($settingsFile)) { | |||||||
|  |  | ||||||
| $settingsKeyName = ($plugin == 'core' ? $plugin : $settingsFile['key']); | $settingsKeyName = ($plugin == 'core' ? $plugin : $settingsFile['key']); | ||||||
|  |  | ||||||
| $title = ($plugin == 'core' ? 'Settings' : 'Plugin Settings - ' . $settingsFile['name']); | $title = ($plugin == 'core' ? 'Settings' : 'Plugin Settings - ' . $plugin); | ||||||
|  |  | ||||||
| $settingsParsed = Settings::display($settingsKeyName, $settingsFile['settings']); | $settingsParsed = Settings::display($settingsKeyName, $settingsFile['settings']); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -12,7 +12,6 @@ defined('MYAAC') or die('Direct access not allowed!'); | |||||||
| use DeviceDetector\DeviceDetector; | use DeviceDetector\DeviceDetector; | ||||||
| use DeviceDetector\Parser\Client\Browser; | use DeviceDetector\Parser\Client\Browser; | ||||||
| use DeviceDetector\Parser\OperatingSystem; | use DeviceDetector\Parser\OperatingSystem; | ||||||
| use MyAAC\Visitors; |  | ||||||
|  |  | ||||||
| $title = 'Visitors'; | $title = 'Visitors'; | ||||||
| $use_datatable = true; | $use_datatable = true; | ||||||
| @@ -25,6 +24,7 @@ if (!setting('core.visitors_counter')): ?> | |||||||
| 	return; | 	return; | ||||||
| endif; | endif; | ||||||
|  |  | ||||||
|  | require SYSTEM . 'libs/visitors.php'; | ||||||
| $visitors = new Visitors(setting('core.visitors_counter_ttl')); | $visitors = new Visitors(setting('core.visitors_counter_ttl')); | ||||||
|  |  | ||||||
| function compare($a, $b): int { | function compare($a, $b): int { | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| <?php | <?php | ||||||
|  |  | ||||||
| $menus = [ | return [ | ||||||
| 	['name' => 'Dashboard', 'icon' => 'tachometer-alt', 'order' => 10, 'link' => 'dashboard'], | 	['name' => 'Dashboard', 'icon' => 'tachometer-alt', 'order' => 10, 'link' => 'dashboard'], | ||||||
| 	['name' => 'Settings', 'icon' => 'edit', 'order' => 19, 'link' => | 	['name' => 'Settings', 'icon' => 'edit', 'order' => 19, 'link' => | ||||||
| 		require ADMIN . 'includes/settings_menus.php' | 		require ADMIN . 'includes/settings_menus.php' | ||||||
|   | |||||||
| @@ -7,9 +7,4 @@ | |||||||
|  |  | ||||||
| .sidebar-mini.sidebar-collapse .menu-text { | .sidebar-mini.sidebar-collapse .menu-text { | ||||||
| 	display: none; | 	display: none; | ||||||
| } | } | ||||||
|  |  | ||||||
| .myaac-table tbody tr:nth-child(even) {background: #FFF} /* light border */ |  | ||||||
| .myaac-table tbody tr:nth-child(odd) {background: #CCC} /* dark border */ |  | ||||||
| .myaac-table thead td {background: #000000; color: #ffffff !important;} /* vdark border */ |  | ||||||
| .myaac-table tfoot td {background: #000000; color: #ffffff !important;} /* vdark border */ |  | ||||||
| @@ -191,8 +191,8 @@ if ($logged && admin()) { | |||||||
| 	]); | 	]); | ||||||
| } | } | ||||||
| ?> | ?> | ||||||
| <script src="<?php echo BASE_URL; ?>tools/ext/bootstrap/js/bootstrap.min.js"></script> | <script src="<?php echo BASE_URL; ?>tools/js/bootstrap.min.js"></script> | ||||||
| <script src="<?php echo BASE_URL; ?>tools/ext/jquery-ui/jquery-ui.min.js"></script> | <script src="<?php echo BASE_URL; ?>tools/js/jquery-ui.min.js"></script> | ||||||
| <?php if (isset($use_datatable))  { ?> | <?php if (isset($use_datatable))  { ?> | ||||||
| <script src="<?php echo BASE_URL; ?>tools/js/datatables.min.js"></script> | <script src="<?php echo BASE_URL; ?>tools/js/datatables.min.js"></script> | ||||||
| <script src="<?php echo BASE_URL; ?>tools/js/datatables.bs.min.js"></script> | <script src="<?php echo BASE_URL; ?>tools/js/datatables.bs.min.js"></script> | ||||||
|   | |||||||
| @@ -22,10 +22,7 @@ | |||||||
|  * @copyright 2020 MyAAC |  * @copyright 2020 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | define('MYAAC_ADMIN', true); | ||||||
| use MyAAC\DataLoader; |  | ||||||
|  |  | ||||||
| const MYAAC_ADMIN = true; |  | ||||||
|  |  | ||||||
| require '../../common.php'; | require '../../common.php'; | ||||||
| require SYSTEM . 'functions.php'; | require SYSTEM . 'functions.php'; | ||||||
| @@ -37,9 +34,11 @@ if (!admin()) | |||||||
|  |  | ||||||
| ini_set('max_execution_time', 300); | ini_set('max_execution_time', 300); | ||||||
| ob_implicit_flush(); | ob_implicit_flush(); | ||||||
| @ob_end_flush(); | ob_end_flush(); | ||||||
| header('X-Accel-Buffering: no'); | header('X-Accel-Buffering: no'); | ||||||
|  |  | ||||||
|  | require LIBS . 'DataLoader.php'; | ||||||
|  |  | ||||||
| require LOCALE . 'en/main.php'; | require LOCALE . 'en/main.php'; | ||||||
| require LOCALE . 'en/install.php'; | require LOCALE . 'en/install.php'; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,8 +1,4 @@ | |||||||
| <?php | <?php | ||||||
|  |  | ||||||
| use MyAAC\Hooks; |  | ||||||
| use MyAAC\Settings; |  | ||||||
|  |  | ||||||
| const MYAAC_ADMIN = true; | const MYAAC_ADMIN = true; | ||||||
|  |  | ||||||
| require '../../common.php'; | require '../../common.php'; | ||||||
| @@ -10,13 +6,16 @@ require SYSTEM . 'functions.php'; | |||||||
| require SYSTEM . 'init.php'; | require SYSTEM . 'init.php'; | ||||||
| require SYSTEM . 'login.php'; | require SYSTEM . 'login.php'; | ||||||
|  |  | ||||||
|  | // event system | ||||||
|  | require_once SYSTEM . 'hooks.php'; | ||||||
|  | $hooks = new Hooks(); | ||||||
|  | $hooks->load(); | ||||||
|  |  | ||||||
| if(!admin()) { | if(!admin()) { | ||||||
| 	http_response_code(500); | 	http_response_code(500); | ||||||
| 	die('Access denied.'); | 	die('Access denied.'); | ||||||
| } | } | ||||||
|  |  | ||||||
| csrfProtect(); |  | ||||||
|  |  | ||||||
| if (!isset($_REQUEST['plugin'])) { | if (!isset($_REQUEST['plugin'])) { | ||||||
| 	http_response_code(500); | 	http_response_code(500); | ||||||
| 	die('Please enter plugin name.'); | 	die('Please enter plugin name.'); | ||||||
|   | |||||||
							
								
								
									
										28
									
								
								common.php
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								common.php
									
									
									
									
									
								
							| @@ -20,14 +20,14 @@ | |||||||
|  * |  * | ||||||
|  * @package   MyAAC |  * @package   MyAAC | ||||||
|  * @author    Slawkens <slawkens@gmail.com> |  * @author    Slawkens <slawkens@gmail.com> | ||||||
|  * @copyright 2024 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
| if (version_compare(phpversion(), '8.1', '<')) die('PHP version 8.1 or higher is required.'); | if (version_compare(phpversion(), '8.0', '<')) die('PHP version 8.0 or higher is required.'); | ||||||
|  |  | ||||||
| const MYAAC = true; | const MYAAC = true; | ||||||
| const MYAAC_VERSION = '1.0-RC.2'; | const MYAAC_VERSION = '0.10.0-dev'; | ||||||
| const DATABASE_VERSION = 41; | const DATABASE_VERSION = 36; | ||||||
| const TABLE_PREFIX = 'myaac_'; | const TABLE_PREFIX = 'myaac_'; | ||||||
| define('START_TIME', microtime(true)); | define('START_TIME', microtime(true)); | ||||||
| define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX')); | define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX')); | ||||||
| @@ -108,13 +108,6 @@ const TFS_FIRST = TFS_02; | |||||||
| const TFS_LAST = TFS_03; | const TFS_LAST = TFS_03; | ||||||
|  |  | ||||||
| // other definitions | // other definitions | ||||||
| const MAIL_MAIL = 0; |  | ||||||
| const MAIL_SMTP = 1; |  | ||||||
|  |  | ||||||
| const SMTP_SECURITY_NONE = 0; |  | ||||||
| const SMTP_SECURITY_SSL = 1; |  | ||||||
| const SMTP_SECURITY_TLS = 2; |  | ||||||
|  |  | ||||||
| const ACCOUNT_NUMBER_LENGTH = 8; | const ACCOUNT_NUMBER_LENGTH = 8; | ||||||
|  |  | ||||||
| if (!IS_CLI) { | if (!IS_CLI) { | ||||||
| @@ -143,7 +136,7 @@ if(!IS_CLI) { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	define('SERVER_URL', 'http' . (isHttps() ? 's' : '') . '://' . $baseHost); | 	define('SERVER_URL', 'http' . (isset($_SERVER['HTTPS'][0]) && strtolower($_SERVER['HTTPS']) === 'on' ? 's' : '') . '://' . $baseHost); | ||||||
| 	define('BASE_URL', SERVER_URL . BASE_DIR . '/'); | 	define('BASE_URL', SERVER_URL . BASE_DIR . '/'); | ||||||
| 	define('ADMIN_URL', SERVER_URL . BASE_DIR . '/' . ADMIN_PANEL_FOLDER . '/'); | 	define('ADMIN_URL', SERVER_URL . BASE_DIR . '/' . ADMIN_PANEL_FOLDER . '/'); | ||||||
|  |  | ||||||
| @@ -154,9 +147,8 @@ if (file_exists(BASE . 'config.local.php')) { | |||||||
| 	require BASE . 'config.local.php'; | 	require BASE . 'config.local.php'; | ||||||
| } | } | ||||||
|  |  | ||||||
| /** @var array $config */ |  | ||||||
| ini_set('log_errors', 1); | ini_set('log_errors', 1); | ||||||
| if(@$config['env'] === 'dev' || defined('MYAAC_INSTALL')) { | if(@$config['env'] === 'dev') { | ||||||
| 	ini_set('display_errors', 1); | 	ini_set('display_errors', 1); | ||||||
| 	ini_set('display_startup_errors', 1); | 	ini_set('display_startup_errors', 1); | ||||||
| 	error_reporting(E_ALL); | 	error_reporting(E_ALL); | ||||||
| @@ -173,11 +165,3 @@ if (!is_file($autoloadFile)) { | |||||||
| } | } | ||||||
|  |  | ||||||
| require $autoloadFile; | require $autoloadFile; | ||||||
|  |  | ||||||
| function isHttps(): bool |  | ||||||
| { |  | ||||||
| 	return |  | ||||||
| 		(!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https') |  | ||||||
| 		|| (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') |  | ||||||
| 		|| (isset($_SERVER['SERVER_PORT']) && (int) $_SERVER['SERVER_PORT'] === 443); |  | ||||||
| } |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|     "require": { |     "require": { | ||||||
|         "php": "^8.1", |         "php": "^8.0", | ||||||
|         "ext-pdo": "*", |         "ext-pdo": "*", | ||||||
|         "ext-pdo_mysql": "*", |         "ext-pdo_mysql": "*", | ||||||
|         "ext-json": "*", |         "ext-json": "*", | ||||||
| @@ -13,20 +13,14 @@ | |||||||
|         "nikic/fast-route": "^1.3", |         "nikic/fast-route": "^1.3", | ||||||
|         "matomo/device-detector": "^6.0", |         "matomo/device-detector": "^6.0", | ||||||
|         "illuminate/database": "^10.18", |         "illuminate/database": "^10.18", | ||||||
|         "peppeocchi/php-cron-scheduler": "4.*", |         "peppeocchi/php-cron-scheduler": "4.*" | ||||||
|         "symfony/console": "^6.4", |  | ||||||
|         "symfony/string": "^6.4", |  | ||||||
|         "symfony/var-dumper": "^6.4", |  | ||||||
|         "filp/whoops": "^2.15", |  | ||||||
|         "maximebf/debugbar": "1.*" |  | ||||||
|     }, |     }, | ||||||
|     "require-dev": { |     "require-dev": { | ||||||
|         "phpstan/phpstan": "^1.10" |         "filp/whoops": "^2.15" | ||||||
|     }, |     }, | ||||||
|     "autoload": { |     "autoload": { | ||||||
|         "psr-4": { |         "psr-4": { | ||||||
|             "MyAAC\\": "system/src" |             "MyAAC\\": "system/src" | ||||||
|         }, |         } | ||||||
|         "files": ["system/src/global.php"] |  | ||||||
|     } |     } | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										2915
									
								
								composer.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2915
									
								
								composer.lock
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -38,6 +38,7 @@ describe('Install MyAAC', () => { | |||||||
| 		cy.contains('Basic configuration'); | 		cy.contains('Basic configuration'); | ||||||
|  |  | ||||||
| 		cy.get('#vars_server_path').click().clear().type(Cypress.env('SERVER_PATH')) | 		cy.get('#vars_server_path').click().clear().type(Cypress.env('SERVER_PATH')) | ||||||
|  | 		cy.get('#vars_mail_admin').click().clear().type('noone@example.net') | ||||||
|  |  | ||||||
| 		cy.get('[type="checkbox"]').uncheck() // usage statistics uncheck | 		cy.get('[type="checkbox"]').uncheck() // usage statistics uncheck | ||||||
|  |  | ||||||
| @@ -67,9 +68,7 @@ describe('Install MyAAC', () => { | |||||||
|  |  | ||||||
| 		cy.get('form').submit() | 		cy.get('form').submit() | ||||||
|  |  | ||||||
| 		cy.contains('[class="alert alert-success"]', 'Congratulations', { timeout: 60000 }).should('be.visible') | 		cy.contains('[class="alert alert-success"]', 'Congratulations', { timeout: 30000 }).should('be.visible') | ||||||
|  |  | ||||||
| 		cy.wait(2000); |  | ||||||
|  |  | ||||||
| 		cy.screenshot('install-finish') | 		cy.screenshot('install-finish') | ||||||
| 	}) | 	}) | ||||||
|   | |||||||
| @@ -14,7 +14,7 @@ describe('Create Account Page', () => { | |||||||
| 		cy.get('#email').type('tester@example.com') | 		cy.get('#email').type('tester@example.com') | ||||||
|  |  | ||||||
| 		cy.get('#password').type('test1234') | 		cy.get('#password').type('test1234') | ||||||
| 		cy.get('#password_confirm').type('test1234') | 		cy.get('#password2').type('test1234') | ||||||
|  |  | ||||||
| 		cy.get('#character_name').type('Slaw') | 		cy.get('#character_name').type('Slaw') | ||||||
|  |  | ||||||
|   | |||||||
| @@ -82,7 +82,7 @@ describe('Check Public Pages', () => { | |||||||
|  |  | ||||||
| 	it('Go to last kills page', () => { | 	it('Go to last kills page', () => { | ||||||
| 		cy.visit({ | 		cy.visit({ | ||||||
| 			url: Cypress.env('URL') + '/last-kills', | 			url: Cypress.env('URL') + '/lastkills', | ||||||
| 			method: 'GET', | 			method: 'GET', | ||||||
| 		}) | 		}) | ||||||
| 	}) | 	}) | ||||||
| @@ -132,7 +132,7 @@ describe('Check Public Pages', () => { | |||||||
|  |  | ||||||
| 	it('Go to server info page', () => { | 	it('Go to server info page', () => { | ||||||
| 		cy.visit({ | 		cy.visit({ | ||||||
| 			url: Cypress.env('URL') + '/server-info', | 			url: Cypress.env('URL') + '/serverInfo', | ||||||
| 			method: 'GET', | 			method: 'GET', | ||||||
| 		}) | 		}) | ||||||
| 	}) | 	}) | ||||||
| @@ -160,7 +160,7 @@ describe('Check Public Pages', () => { | |||||||
|  |  | ||||||
| 	it('Go to experience table page', () => { | 	it('Go to experience table page', () => { | ||||||
| 		cy.visit({ | 		cy.visit({ | ||||||
| 			url: Cypress.env('URL') + '/exp-table', | 			url: Cypress.env('URL') + '/experienceTable', | ||||||
| 			method: 'GET', | 			method: 'GET', | ||||||
| 		}) | 		}) | ||||||
| 	}) | 	}) | ||||||
|   | |||||||
| @@ -1,40 +0,0 @@ | |||||||
| services: |  | ||||||
|   web: |  | ||||||
|     ports: |  | ||||||
|       - 8001:80 |  | ||||||
|     build: |  | ||||||
|       args: |  | ||||||
|         user: www-data |  | ||||||
|         uid: 33 |  | ||||||
|       context: ./ |  | ||||||
|       dockerfile: ./docker/Dockerfile |  | ||||||
|     restart: unless-stopped |  | ||||||
|     working_dir: /var/www/html |  | ||||||
|     depends_on: |  | ||||||
|       - db |  | ||||||
|     #volumes: |  | ||||||
|     #  - ./:/var/www/html |  | ||||||
|  |  | ||||||
|   db: |  | ||||||
|     image: mysql:8.0 |  | ||||||
|     restart: unless-stopped # always? |  | ||||||
|     environment: |  | ||||||
|       MYSQL_RANDOM_ROOT_PASSWORD: "yes" |  | ||||||
|       MYSQL_DATABASE: myaac |  | ||||||
|       #MYSQL_ROOT_PASSWORD: root |  | ||||||
|       MYSQL_PASSWORD: myaac |  | ||||||
|       MYSQL_USER: myaac |  | ||||||
|     ports: |  | ||||||
|       - 8003:3306 |  | ||||||
|     volumes: |  | ||||||
|       - ./docker/tfs_schema.sql:/docker-entrypoint-initdb.d/tfs_schema.sql |  | ||||||
|       - db:/var/lib/mysql |  | ||||||
|  |  | ||||||
|   phpmyadmin: |  | ||||||
|     image: phpmyadmin |  | ||||||
|     restart: always |  | ||||||
|     ports: |  | ||||||
|       - 8002:80 |  | ||||||
|  |  | ||||||
| volumes: |  | ||||||
|   db: |  | ||||||
| @@ -1,56 +0,0 @@ | |||||||
| FROM php:8.2-apache |  | ||||||
|  |  | ||||||
| ARG APCU_VERSION=5.1.22 |  | ||||||
|  |  | ||||||
| # Arguments defined in docker-compose.yml |  | ||||||
| ARG user |  | ||||||
| ARG uid |  | ||||||
|  |  | ||||||
| # Install system dependencies |  | ||||||
| RUN apt-get update && apt-get install -y \ |  | ||||||
|     git \ |  | ||||||
|     curl \ |  | ||||||
|     libpng-dev \ |  | ||||||
|     libonig-dev \ |  | ||||||
|     libxml2-dev \ |  | ||||||
|     libzip-dev \ |  | ||||||
|     zip \ |  | ||||||
|     unzip \ |  | ||||||
|     nano \ |  | ||||||
|     vim |  | ||||||
|  |  | ||||||
| RUN apt-get install -y nodejs npm |  | ||||||
|  |  | ||||||
| # Clear cache |  | ||||||
| RUN apt-get clean && rm -rf /var/lib/apt/lists/* |  | ||||||
|  |  | ||||||
| # Install PHP extensions |  | ||||||
| RUN docker-php-ext-install pdo pdo_mysql gd zip opcache |  | ||||||
| RUN docker-php-ext-configure opcache --enable-opcache |  | ||||||
| RUN pecl install apcu-${APCU_VERSION} && docker-php-ext-enable apcu |  | ||||||
|  |  | ||||||
| # Get latest Composer |  | ||||||
| COPY --from=composer:latest /usr/bin/composer /usr/bin/composer |  | ||||||
|  |  | ||||||
| # Create system user to run Composer Commands |  | ||||||
| #RUN useradd -G www-data,root -u $uid -d /home/$user $user |  | ||||||
| RUN mkdir -p /home/$user/.composer && \ |  | ||||||
|     chown -R $user:$user /home/$user |  | ||||||
|  |  | ||||||
| RUN chown -R www-data.www-data /var/www |  | ||||||
|  |  | ||||||
| USER $user |  | ||||||
|  |  | ||||||
| WORKDIR /home/$user |  | ||||||
| RUN git clone https://github.com/otland/forgottenserver.git |  | ||||||
|  |  | ||||||
| COPY --chown=www-data:www-data docker/config.lua /home/$user/forgottenserver |  | ||||||
| COPY --chown=www-data:www-data docker/config.local.php /var/www/html |  | ||||||
|  |  | ||||||
| #WORKDIR /home/$user/forgottenserver |  | ||||||
|  |  | ||||||
| WORKDIR /var/www/html |  | ||||||
|  |  | ||||||
| COPY --chown=www-data:www-data . . |  | ||||||
| RUN composer install |  | ||||||
| RUN npm install |  | ||||||
| @@ -1,4 +0,0 @@ | |||||||
| <?php |  | ||||||
| $config['installed'] = false; |  | ||||||
| $config['server_path'] = '/home/www-data/forgottenserver'; |  | ||||||
| $config['install_ignore_ip_check'] = true; |  | ||||||
| @@ -1,12 +0,0 @@ | |||||||
| serverName = "Forgotten" |  | ||||||
| mysqlHost = "db" |  | ||||||
| mysqlUser = "myaac" |  | ||||||
| mysqlPass = "myaac" |  | ||||||
| mysqlDatabase = "myaac" |  | ||||||
| mysqlPort = 3306 |  | ||||||
| mysqlSock = "" |  | ||||||
|  |  | ||||||
| ip = "192.168.176.1" |  | ||||||
| statusPort = 7171 |  | ||||||
| statusTimeout = 2000 |  | ||||||
|  |  | ||||||
| @@ -1,384 +0,0 @@ | |||||||
| CREATE TABLE IF NOT EXISTS `accounts` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `name` varchar(32) NOT NULL, |  | ||||||
|   `password` char(40) NOT NULL, |  | ||||||
|   `secret` char(16) DEFAULT NULL, |  | ||||||
|   `type` int NOT NULL DEFAULT '1', |  | ||||||
|   `premium_ends_at` int unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `email` varchar(255) NOT NULL DEFAULT '', |  | ||||||
|   `creation` int NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   UNIQUE KEY `name` (`name`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `players` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `name` varchar(255) NOT NULL, |  | ||||||
|   `group_id` int NOT NULL DEFAULT '1', |  | ||||||
|   `account_id` int NOT NULL DEFAULT '0', |  | ||||||
|   `level` int NOT NULL DEFAULT '1', |  | ||||||
|   `vocation` int NOT NULL DEFAULT '0', |  | ||||||
|   `health` int NOT NULL DEFAULT '150', |  | ||||||
|   `healthmax` int NOT NULL DEFAULT '150', |  | ||||||
|   `experience` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `lookbody` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookfeet` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookhead` int NOT NULL DEFAULT '0', |  | ||||||
|   `looklegs` int NOT NULL DEFAULT '0', |  | ||||||
|   `looktype` int NOT NULL DEFAULT '136', |  | ||||||
|   `lookaddons` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookmount` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookmounthead` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookmountbody` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookmountlegs` int NOT NULL DEFAULT '0', |  | ||||||
|   `lookmountfeet` int NOT NULL DEFAULT '0', |  | ||||||
|   `randomizemount` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `direction` tinyint unsigned NOT NULL DEFAULT '2', |  | ||||||
|   `maglevel` int NOT NULL DEFAULT '0', |  | ||||||
|   `mana` int NOT NULL DEFAULT '0', |  | ||||||
|   `manamax` int NOT NULL DEFAULT '0', |  | ||||||
|   `manaspent` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `soul` int unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `town_id` int NOT NULL DEFAULT '1', |  | ||||||
|   `posx` int NOT NULL DEFAULT '0', |  | ||||||
|   `posy` int NOT NULL DEFAULT '0', |  | ||||||
|   `posz` int NOT NULL DEFAULT '0', |  | ||||||
|   `conditions` blob DEFAULT NULL, |  | ||||||
|   `cap` int NOT NULL DEFAULT '400', |  | ||||||
|   `sex` int NOT NULL DEFAULT '0', |  | ||||||
|   `lastlogin` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `lastip` varbinary(16) NOT NULL DEFAULT '0', |  | ||||||
|   `save` tinyint NOT NULL DEFAULT '1', |  | ||||||
|   `skull` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `skulltime` bigint NOT NULL DEFAULT '0', |  | ||||||
|   `lastlogout` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `blessings` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `onlinetime` bigint NOT NULL DEFAULT '0', |  | ||||||
|   `deletion` bigint NOT NULL DEFAULT '0', |  | ||||||
|   `balance` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `offlinetraining_time` smallint unsigned NOT NULL DEFAULT '43200', |  | ||||||
|   `offlinetraining_skill` int NOT NULL DEFAULT '-1', |  | ||||||
|   `stamina` smallint unsigned NOT NULL DEFAULT '2520', |  | ||||||
|   `skill_fist` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_fist_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_club` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_club_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_sword` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_sword_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_axe` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_axe_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_dist` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_dist_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_shielding` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_shielding_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   `skill_fishing` int unsigned NOT NULL DEFAULT 10, |  | ||||||
|   `skill_fishing_tries` bigint unsigned NOT NULL DEFAULT 0, |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   UNIQUE KEY `name` (`name`), |  | ||||||
|   FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE, |  | ||||||
|   KEY `vocation` (`vocation`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `account_bans` ( |  | ||||||
|   `account_id` int NOT NULL, |  | ||||||
|   `reason` varchar(255) NOT NULL, |  | ||||||
|   `banned_at` bigint NOT NULL, |  | ||||||
|   `expires_at` bigint NOT NULL, |  | ||||||
|   `banned_by` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`account_id`), |  | ||||||
|   FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, |  | ||||||
|   FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `account_ban_history` ( |  | ||||||
|   `id` int unsigned NOT NULL AUTO_INCREMENT, |  | ||||||
|   `account_id` int NOT NULL, |  | ||||||
|   `reason` varchar(255) NOT NULL, |  | ||||||
|   `banned_at` bigint NOT NULL, |  | ||||||
|   `expired_at` bigint NOT NULL, |  | ||||||
|   `banned_by` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, |  | ||||||
|   FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `account_storage` ( |  | ||||||
|   `account_id` int NOT NULL, |  | ||||||
|   `key` int unsigned NOT NULL, |  | ||||||
|   `value` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`account_id`, `key`), |  | ||||||
|   FOREIGN KEY (`account_id`) REFERENCES `accounts`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `ip_bans` ( |  | ||||||
|   `ip` varbinary(16) NOT NULL, |  | ||||||
|   `reason` varchar(255) NOT NULL, |  | ||||||
|   `banned_at` bigint NOT NULL, |  | ||||||
|   `expires_at` bigint NOT NULL, |  | ||||||
|   `banned_by` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`ip`), |  | ||||||
|   FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_namelocks` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `reason` varchar(255) NOT NULL, |  | ||||||
|   `namelocked_at` bigint NOT NULL, |  | ||||||
|   `namelocked_by` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`player_id`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, |  | ||||||
|   FOREIGN KEY (`namelocked_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `account_viplist` ( |  | ||||||
|   `account_id` int NOT NULL COMMENT 'id of account whose viplist entry it is', |  | ||||||
|   `player_id` int NOT NULL COMMENT 'id of target player of viplist entry', |  | ||||||
|   `description` varchar(128) NOT NULL DEFAULT '', |  | ||||||
|   `icon` tinyint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `notify` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   UNIQUE KEY `account_player_index` (`account_id`,`player_id`), |  | ||||||
|   FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE, |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guilds` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `name` varchar(255) NOT NULL, |  | ||||||
|   `ownerid` int NOT NULL, |  | ||||||
|   `creationdata` int NOT NULL, |  | ||||||
|   `motd` varchar(255) NOT NULL DEFAULT '', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   UNIQUE KEY (`name`), |  | ||||||
|   UNIQUE KEY (`ownerid`), |  | ||||||
|   FOREIGN KEY (`ownerid`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guild_invites` ( |  | ||||||
|   `player_id` int NOT NULL DEFAULT '0', |  | ||||||
|   `guild_id` int NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`player_id`,`guild_id`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE, |  | ||||||
|   FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guild_ranks` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `guild_id` int NOT NULL COMMENT 'guild', |  | ||||||
|   `name` varchar(255) NOT NULL COMMENT 'rank name', |  | ||||||
|   `level` int NOT NULL COMMENT 'rank level - leader, vice, member, maybe something else', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guild_membership` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `guild_id` int NOT NULL, |  | ||||||
|   `rank_id` int NOT NULL, |  | ||||||
|   `nick` varchar(15) NOT NULL DEFAULT '', |  | ||||||
|   PRIMARY KEY (`player_id`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, |  | ||||||
|   FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, |  | ||||||
|   FOREIGN KEY (`rank_id`) REFERENCES `guild_ranks` (`id`) ON DELETE CASCADE ON UPDATE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guild_wars` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `guild1` int NOT NULL DEFAULT '0', |  | ||||||
|   `guild2` int NOT NULL DEFAULT '0', |  | ||||||
|   `name1` varchar(255) NOT NULL, |  | ||||||
|   `name2` varchar(255) NOT NULL, |  | ||||||
|   `status` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `started` bigint NOT NULL DEFAULT '0', |  | ||||||
|   `ended` bigint NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   KEY `guild1` (`guild1`), |  | ||||||
|   KEY `guild2` (`guild2`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `guildwar_kills` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `killer` varchar(50) NOT NULL, |  | ||||||
|   `target` varchar(50) NOT NULL, |  | ||||||
|   `killerguild` int NOT NULL DEFAULT '0', |  | ||||||
|   `targetguild` int NOT NULL DEFAULT '0', |  | ||||||
|   `warid` int NOT NULL DEFAULT '0', |  | ||||||
|   `time` bigint NOT NULL, |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   FOREIGN KEY (`warid`) REFERENCES `guild_wars` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `houses` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `owner` int NOT NULL, |  | ||||||
|   `paid` int unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `warnings` int NOT NULL DEFAULT '0', |  | ||||||
|   `name` varchar(255) NOT NULL, |  | ||||||
|   `rent` int NOT NULL DEFAULT '0', |  | ||||||
|   `town_id` int NOT NULL DEFAULT '0', |  | ||||||
|   `bid` int NOT NULL DEFAULT '0', |  | ||||||
|   `bid_end` int NOT NULL DEFAULT '0', |  | ||||||
|   `last_bid` int NOT NULL DEFAULT '0', |  | ||||||
|   `highest_bidder` int NOT NULL DEFAULT '0', |  | ||||||
|   `size` int NOT NULL DEFAULT '0', |  | ||||||
|   `beds` int NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   KEY `owner` (`owner`), |  | ||||||
|   KEY `town_id` (`town_id`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `house_lists` ( |  | ||||||
|   `house_id` int NOT NULL, |  | ||||||
|   `listid` int NOT NULL, |  | ||||||
|   `list` text NOT NULL, |  | ||||||
|   FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `market_history` ( |  | ||||||
|   `id` int unsigned NOT NULL AUTO_INCREMENT, |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `sale` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL, |  | ||||||
|   `amount` smallint unsigned NOT NULL, |  | ||||||
|   `price` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `expires_at` bigint unsigned NOT NULL, |  | ||||||
|   `inserted` bigint unsigned NOT NULL, |  | ||||||
|   `state` tinyint unsigned NOT NULL, |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   KEY `player_id` (`player_id`, `sale`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `market_offers` ( |  | ||||||
|   `id` int unsigned NOT NULL AUTO_INCREMENT, |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `sale` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL, |  | ||||||
|   `amount` smallint unsigned NOT NULL, |  | ||||||
|   `created` bigint unsigned NOT NULL, |  | ||||||
|   `anonymous` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `price` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   KEY `sale` (`sale`,`itemtype`), |  | ||||||
|   KEY `created` (`created`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `players_online` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   PRIMARY KEY (`player_id`) |  | ||||||
| ) ENGINE=MEMORY DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_deaths` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `time` bigint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `level` int NOT NULL DEFAULT '1', |  | ||||||
|   `killed_by` varchar(255) NOT NULL, |  | ||||||
|   `is_player` tinyint NOT NULL DEFAULT '1', |  | ||||||
|   `mostdamage_by` varchar(100) NOT NULL, |  | ||||||
|   `mostdamage_is_player` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `unjustified` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   `mostdamage_unjustified` tinyint NOT NULL DEFAULT '0', |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE, |  | ||||||
|   KEY `killed_by` (`killed_by`), |  | ||||||
|   KEY `mostdamage_by` (`mostdamage_by`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_depotitems` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `sid` int NOT NULL COMMENT 'any given range eg 0-100 will be reserved for depot lockers and all > 100 will be then normal items inside depots', |  | ||||||
|   `pid` int NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL, |  | ||||||
|   `count` smallint NOT NULL DEFAULT '0', |  | ||||||
|   `attributes` blob NOT NULL, |  | ||||||
|   UNIQUE KEY `player_id_2` (`player_id`, `sid`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_inboxitems` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `sid` int NOT NULL, |  | ||||||
|   `pid` int NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL, |  | ||||||
|   `count` smallint NOT NULL DEFAULT '0', |  | ||||||
|   `attributes` blob NOT NULL, |  | ||||||
|   UNIQUE KEY `player_id_2` (`player_id`, `sid`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_storeinboxitems` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `sid` int NOT NULL, |  | ||||||
|   `pid` int NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL, |  | ||||||
|   `count` smallint NOT NULL DEFAULT '0', |  | ||||||
|   `attributes` blob NOT NULL, |  | ||||||
|   UNIQUE KEY `player_id_2` (`player_id`, `sid`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_items` ( |  | ||||||
|   `player_id` int NOT NULL DEFAULT '0', |  | ||||||
|   `pid` int NOT NULL DEFAULT '0', |  | ||||||
|   `sid` int NOT NULL DEFAULT '0', |  | ||||||
|   `itemtype` smallint unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `count` smallint NOT NULL DEFAULT '0', |  | ||||||
|   `attributes` blob NOT NULL, |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE, |  | ||||||
|   KEY `sid` (`sid`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_spells` ( |  | ||||||
|   `player_id` int NOT NULL, |  | ||||||
|   `name` varchar(255) NOT NULL, |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `player_storage` ( |  | ||||||
|   `player_id` int NOT NULL DEFAULT '0', |  | ||||||
|   `key` int unsigned NOT NULL DEFAULT '0', |  | ||||||
|   `value` int NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`player_id`,`key`), |  | ||||||
|   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `server_config` ( |  | ||||||
|   `config` varchar(50) NOT NULL, |  | ||||||
|   `value` varchar(256) NOT NULL DEFAULT '', |  | ||||||
|   PRIMARY KEY `config` (`config`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `tile_store` ( |  | ||||||
|   `house_id` int NOT NULL, |  | ||||||
|   `data` longblob NOT NULL, |  | ||||||
|   FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| CREATE TABLE IF NOT EXISTS `towns` ( |  | ||||||
|   `id` int NOT NULL AUTO_INCREMENT, |  | ||||||
|   `name` varchar(255) NOT NULL, |  | ||||||
|   `posx` int NOT NULL DEFAULT '0', |  | ||||||
|   `posy` int NOT NULL DEFAULT '0', |  | ||||||
|   `posz` int NOT NULL DEFAULT '0', |  | ||||||
|   PRIMARY KEY (`id`), |  | ||||||
|   UNIQUE KEY `name` (`name`) |  | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; |  | ||||||
|  |  | ||||||
| INSERT INTO `server_config` (`config`, `value`) VALUES ('db_version', '35'), ('players_record', '0'); |  | ||||||
|  |  | ||||||
| DROP TRIGGER IF EXISTS `ondelete_players`; |  | ||||||
| DROP TRIGGER IF EXISTS `oncreate_guilds`; |  | ||||||
|  |  | ||||||
| DELIMITER // |  | ||||||
| CREATE TRIGGER `ondelete_players` BEFORE DELETE ON `players` |  | ||||||
|  FOR EACH ROW BEGIN |  | ||||||
|     UPDATE `houses` SET `owner` = 0 WHERE `owner` = OLD.`id`; |  | ||||||
| END |  | ||||||
| // |  | ||||||
| CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds` |  | ||||||
|  FOR EACH ROW BEGIN |  | ||||||
|     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`); |  | ||||||
|     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`); |  | ||||||
|     INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`); |  | ||||||
| END |  | ||||||
| // |  | ||||||
| DELIMITER ; |  | ||||||
							
								
								
									
										106
									
								
								index.php
									
									
									
									
									
								
							
							
						
						
									
										106
									
								
								index.php
									
									
									
									
									
								
							| @@ -24,9 +24,6 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\UsageStatistics; |  | ||||||
| use MyAAC\Visitors; |  | ||||||
|  |  | ||||||
| require_once 'common.php'; | require_once 'common.php'; | ||||||
| require_once SYSTEM . 'functions.php'; | require_once SYSTEM . 'functions.php'; | ||||||
|  |  | ||||||
| @@ -62,13 +59,22 @@ if(preg_match("/^(.*)\.(gif|jpg|png|jpeg|tiff|bmp|css|js|less|map|html|zip|rar|g | |||||||
| if((!isset($config['installed']) || !$config['installed']) && file_exists(BASE . 'install')) | if((!isset($config['installed']) || !$config['installed']) && file_exists(BASE . 'install')) | ||||||
| { | { | ||||||
| 	header('Location: ' . BASE_URL . 'install/'); | 	header('Location: ' . BASE_URL . 'install/'); | ||||||
| 	exit(); | 	throw new RuntimeException('Setup detected that <b>install/</b> directory exists. Please visit <a href="' . BASE_URL . 'install">this</a> url to start MyAAC Installation.<br/>Delete <b>install/</b> directory if you already installed MyAAC.<br/>Remember to REFRESH this page when you\'re done!'); | ||||||
| } | } | ||||||
|  |  | ||||||
| $template_place_holders = array(); | $template_place_holders = array(); | ||||||
|  |  | ||||||
| require_once SYSTEM . 'init.php'; | require_once SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
|  | // verify myaac tables exists in database | ||||||
|  | if(!$db->hasTable('myaac_account_actions')) { | ||||||
|  | 	throw new RuntimeException('Seems that the table <strong>myaac_account_actions</strong> of MyAAC doesn\'t exist in the database. This is a fatal error. You can try to reinstall MyAAC by visiting <a href="' . BASE_URL . 'install">this</a> url.'); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // event system | ||||||
|  | require_once SYSTEM . 'hooks.php'; | ||||||
|  | $hooks = new Hooks(); | ||||||
|  | $hooks->load(); | ||||||
| require_once SYSTEM . 'template.php'; | require_once SYSTEM . 'template.php'; | ||||||
| require_once SYSTEM . 'login.php'; | require_once SYSTEM . 'login.php'; | ||||||
| require_once SYSTEM . 'status.php'; | require_once SYSTEM . 'status.php'; | ||||||
| @@ -76,6 +82,53 @@ require_once SYSTEM . 'status.php'; | |||||||
| $twig->addGlobal('config', $config); | $twig->addGlobal('config', $config); | ||||||
| $twig->addGlobal('status', $status); | $twig->addGlobal('status', $status); | ||||||
|  |  | ||||||
|  | require_once SYSTEM . 'router.php'; | ||||||
|  |  | ||||||
|  | $hooks->trigger(HOOK_STARTUP); | ||||||
|  |  | ||||||
|  | // anonymous usage statistics | ||||||
|  | // sent only when user agrees | ||||||
|  | if(setting('core.anonymous_usage_statistics')) { | ||||||
|  | 	$report_time = 30 * 24 * 60 * 60; // report one time per 30 days | ||||||
|  | 	$should_report = true; | ||||||
|  |  | ||||||
|  | 	$value = ''; | ||||||
|  | 	if($cache->enabled() && $cache->fetch('last_usage_report', $value)) { | ||||||
|  | 		$should_report = time() > (int)$value + $report_time; | ||||||
|  | 	} | ||||||
|  | 	else { | ||||||
|  | 		$value = ''; | ||||||
|  | 		if(fetchDatabaseConfig('last_usage_report', $value)) { | ||||||
|  | 			$should_report = time() > (int)$value + $report_time; | ||||||
|  | 			if($cache->enabled()) { | ||||||
|  | 				$cache->set('last_usage_report', $value); | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			registerDatabaseConfig('last_usage_report', time() - ($report_time - (7 * 24 * 60 * 60))); // first report after a week | ||||||
|  | 			$should_report = false; | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if($should_report) { | ||||||
|  | 		require_once LIBS . 'usage_statistics.php'; | ||||||
|  | 		Usage_Statistics::report(); | ||||||
|  |  | ||||||
|  | 		updateDatabaseConfig('last_usage_report', time()); | ||||||
|  | 		if($cache->enabled()) { | ||||||
|  | 			$cache->set('last_usage_report', time()); | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(setting('core.views_counter')) | ||||||
|  | 	require_once SYSTEM . 'counter.php'; | ||||||
|  |  | ||||||
|  | if(setting('core.visitors_counter')) { | ||||||
|  | 	require_once SYSTEM . 'libs/visitors.php'; | ||||||
|  | 	$visitors = new Visitors(setting('core.visitors_counter_ttl')); | ||||||
|  | } | ||||||
|  |  | ||||||
| // backward support for gesior | // backward support for gesior | ||||||
| if(setting('core.backward_support')) { | if(setting('core.backward_support')) { | ||||||
| 	define('INITIALIZED', true); | 	define('INITIALIZED', true); | ||||||
| @@ -115,51 +168,6 @@ if(setting('core.backward_support')) { | |||||||
| 		$config['status']['serverStatus_' . $key] = $value; | 		$config['status']['serverStatus_' . $key] = $value; | ||||||
| } | } | ||||||
|  |  | ||||||
| require_once SYSTEM . 'router.php'; |  | ||||||
|  |  | ||||||
| $hooks->trigger(HOOK_STARTUP); |  | ||||||
|  |  | ||||||
| // anonymous usage statistics |  | ||||||
| // sent only when user agrees |  | ||||||
| if(setting('core.anonymous_usage_statistics')) { |  | ||||||
| 	$report_time = 30 * 24 * 60 * 60; // report one time per 30 days |  | ||||||
| 	$should_report = true; |  | ||||||
|  |  | ||||||
| 	$value = ''; |  | ||||||
| 	if($cache->enabled() && $cache->fetch('last_usage_report', $value)) { |  | ||||||
| 		$should_report = time() > (int)$value + $report_time; |  | ||||||
| 	} |  | ||||||
| 	else { |  | ||||||
| 		$value = ''; |  | ||||||
| 		if(fetchDatabaseConfig('last_usage_report', $value)) { |  | ||||||
| 			$should_report = time() > (int)$value + $report_time; |  | ||||||
| 			if($cache->enabled()) { |  | ||||||
| 				$cache->set('last_usage_report', $value); |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 		else { |  | ||||||
| 			registerDatabaseConfig('last_usage_report', time() - ($report_time - (7 * 24 * 60 * 60))); // first report after a week |  | ||||||
| 			$should_report = false; |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if($should_report) { |  | ||||||
| 		UsageStatistics::report(); |  | ||||||
|  |  | ||||||
| 		updateDatabaseConfig('last_usage_report', time()); |  | ||||||
| 		if($cache->enabled()) { |  | ||||||
| 			$cache->set('last_usage_report', time()); |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| if(setting('core.views_counter')) |  | ||||||
| 	require_once SYSTEM . 'counter.php'; |  | ||||||
|  |  | ||||||
| if(setting('core.visitors_counter')) { |  | ||||||
| 	$visitors = new Visitors(setting('core.visitors_counter_ttl')); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * @var OTS_Account $account_logged |  * @var OTS_Account $account_logged | ||||||
|  */ |  */ | ||||||
|   | |||||||
| @@ -11,13 +11,13 @@ function query($query) | |||||||
| 		error($error_); | 		error($error_); | ||||||
| 		$error = true; | 		$error = true; | ||||||
| 	} | 	} | ||||||
|  | 	 | ||||||
| 	return !$error; | 	return !$error; | ||||||
| } | } | ||||||
|  |  | ||||||
| // define php version id if its not already | // define php version id if its not already | ||||||
| if(!defined('PHP_VERSION_ID')) { | if(!defined('PHP_VERSION_ID')) { | ||||||
| 	$version = array_map('intval', explode('.', PHP_VERSION)); | 	$version = explode('.', PHP_VERSION); | ||||||
|  |  | ||||||
| 	define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2])); | 	define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2])); | ||||||
| } | } | ||||||
| @@ -97,4 +97,4 @@ function win_is_writable($path) { | |||||||
| 		unlink($path); | 		unlink($path); | ||||||
|  |  | ||||||
| 	return true; | 	return true; | ||||||
| } | } | ||||||
| @@ -1,4 +1,4 @@ | |||||||
| SET @myaac_database_version = 41; | SET @myaac_database_version = 36; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_account_actions` | CREATE TABLE `myaac_account_actions` | ||||||
| ( | ( | ||||||
| @@ -8,7 +8,7 @@ CREATE TABLE `myaac_account_actions` | |||||||
| 	`date` INT(11) NOT NULL DEFAULT 0, | 	`date` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`action` VARCHAR(255) NOT NULL DEFAULT '', | 	`action` VARCHAR(255) NOT NULL DEFAULT '', | ||||||
| 	KEY (`account_id`) | 	KEY (`account_id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_admin_menu` | CREATE TABLE `myaac_admin_menu` | ||||||
| ( | ( | ||||||
| @@ -19,7 +19,22 @@ CREATE TABLE `myaac_admin_menu` | |||||||
| 	`flags` INT(11) NOT NULL DEFAULT 0, | 	`flags` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`enabled` INT(1) NOT NULL DEFAULT 1, | 	`enabled` INT(1) NOT NULL DEFAULT 1, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
|  | CREATE TABLE `myaac_bugtracker` | ||||||
|  | ( | ||||||
|  | 	`account` VARCHAR(255) NOT NULL, | ||||||
|  | 	`type` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	`status` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	`text` text NOT NULL, | ||||||
|  | 	`id` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	`subject` VARCHAR(255) NOT NULL DEFAULT '', | ||||||
|  | 	`reply` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	`who` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	`uid` INT(11) NOT NULL AUTO_INCREMENT, | ||||||
|  | 	`tag` INT(11) NOT NULL DEFAULT 0, | ||||||
|  | 	PRIMARY KEY (`uid`) | ||||||
|  | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_changelog` | CREATE TABLE `myaac_changelog` | ||||||
| ( | ( | ||||||
| @@ -29,11 +44,11 @@ CREATE TABLE `myaac_changelog` | |||||||
| 	`where` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '1 - server, 2 - site', | 	`where` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '1 - server, 2 - site', | ||||||
| 	`date` INT(11) NOT NULL DEFAULT 0, | 	`date` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`player_id` INT(11) NOT NULL DEFAULT 0, | 	`player_id` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| INSERT INTO `myaac_changelog` (`id`, `type`, `where`, `date`, `body`, `hide`) VALUES (1, 3, 2, UNIX_TIMESTAMP(), 'MyAAC installed. (:', 0); | INSERT INTO `myaac_changelog` (`id`, `type`, `where`, `date`, `body`, `hidden`) VALUES (1, 3, 2, UNIX_TIMESTAMP(), 'MyAAC installed. (:', 0); | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_config` | CREATE TABLE `myaac_config` | ||||||
| ( | ( | ||||||
| @@ -42,7 +57,7 @@ CREATE TABLE `myaac_config` | |||||||
| 	`value` VARCHAR(1000) NOT NULL, | 	`value` VARCHAR(1000) NOT NULL, | ||||||
| 	PRIMARY KEY (`id`), | 	PRIMARY KEY (`id`), | ||||||
| 	UNIQUE (`name`) | 	UNIQUE (`name`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| INSERT INTO `myaac_config` (`name`, `value`) VALUES ('database_version', @myaac_database_version); | INSERT INTO `myaac_config` (`name`, `value`) VALUES ('database_version', @myaac_database_version); | ||||||
|  |  | ||||||
| @@ -52,9 +67,9 @@ CREATE TABLE `myaac_faq` | |||||||
| 	`question` VARCHAR(255) NOT NULL DEFAULT '', | 	`question` VARCHAR(255) NOT NULL DEFAULT '', | ||||||
| 	`answer` VARCHAR(1020) NOT NULL DEFAULT '', | 	`answer` VARCHAR(1020) NOT NULL DEFAULT '', | ||||||
| 	`ordering` INT(11) NOT NULL DEFAULT 0, | 	`ordering` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_forum_boards` | CREATE TABLE `myaac_forum_boards` | ||||||
| ( | ( | ||||||
| @@ -65,9 +80,9 @@ CREATE TABLE `myaac_forum_boards` | |||||||
| 	`guild` INT(11) NOT NULL DEFAULT 0, | 	`guild` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`access` INT(11) NOT NULL DEFAULT 0, | 	`access` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`closed` TINYINT(1) NOT NULL DEFAULT 0, | 	`closed` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
| INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`, `closed`) VALUES (NULL, 'News', 'News commenting', 0, 1); | INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`, `closed`) VALUES (NULL, 'News', 'News commenting', 0, 1); | ||||||
| INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`) VALUES (NULL, 'Trade', 'Trade offers.', 1); | INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`) VALUES (NULL, 'Trade', 'Trade offers.', 1); | ||||||
| INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`) VALUES (NULL, 'Quests', 'Quest making.', 2); | INSERT INTO `myaac_forum_boards` (`id`, `name`, `description`, `ordering`) VALUES (NULL, 'Quests', 'Quest making.', 2); | ||||||
| @@ -96,7 +111,7 @@ CREATE TABLE `myaac_forum` | |||||||
| 	`closed` tinyint(1) NOT NULL DEFAULT '0', | 	`closed` tinyint(1) NOT NULL DEFAULT '0', | ||||||
| 	PRIMARY KEY (`id`), | 	PRIMARY KEY (`id`), | ||||||
| 	KEY `section` (`section`) | 	KEY `section` (`section`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_menu` | CREATE TABLE `myaac_menu` | ||||||
| ( | ( | ||||||
| @@ -110,11 +125,16 @@ CREATE TABLE `myaac_menu` | |||||||
| 	`ordering` INT(11) NOT NULL DEFAULT 0, | 	`ordering` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`enabled` INT(1) NOT NULL DEFAULT 1, | 	`enabled` INT(1) NOT NULL DEFAULT 1, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
|  | /* MENU_CATEGORY_SHOP tibiacom */ | ||||||
|  | INSERT INTO `myaac_menu` (`template`, `name`, `link`, `category`, `ordering`) VALUES ('tibiacom', 'Buy Points', 'points', 6, 0); | ||||||
|  | INSERT INTO `myaac_menu` (`template`, `name`, `link`, `category`, `ordering`) VALUES ('tibiacom', 'Shop Offer', 'gifts', 6, 1); | ||||||
|  | INSERT INTO `myaac_menu` (`template`, `name`, `link`, `category`, `ordering`) VALUES ('tibiacom', 'Shop History', 'gifts/history', 6, 2); | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_monsters` ( | CREATE TABLE `myaac_monsters` ( | ||||||
| 	`id` int(11) NOT NULL AUTO_INCREMENT, | 	`id` int(11) NOT NULL AUTO_INCREMENT, | ||||||
| 	`hide` tinyint(1) NOT NULL default 0, | 	`hidden` tinyint(1) NOT NULL default 0, | ||||||
| 	`name` varchar(255) NOT NULL, | 	`name` varchar(255) NOT NULL, | ||||||
| 	`mana` int(11) NOT NULL DEFAULT 0, | 	`mana` int(11) NOT NULL DEFAULT 0, | ||||||
| 	`exp` int(11) NOT NULL, | 	`exp` int(11) NOT NULL, | ||||||
| @@ -143,7 +163,7 @@ CREATE TABLE `myaac_monsters` ( | |||||||
| 	`loot` text NOT NULL, | 	`loot` text NOT NULL, | ||||||
| 	`summons` TEXT NOT NULL, | 	`summons` TEXT NOT NULL, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_news` | CREATE TABLE `myaac_news` | ||||||
| ( | ( | ||||||
| @@ -159,9 +179,9 @@ CREATE TABLE `myaac_news` | |||||||
| 	`comments` VARCHAR(50) NOT NULL DEFAULT '', | 	`comments` VARCHAR(50) NOT NULL DEFAULT '', | ||||||
| 	`article_text` VARCHAR(300) NOT NULL DEFAULT '', | 	`article_text` VARCHAR(300) NOT NULL DEFAULT '', | ||||||
| 	`article_image` VARCHAR(100) NOT NULL DEFAULT '', | 	`article_image` VARCHAR(100) NOT NULL DEFAULT '', | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_news_categories` | CREATE TABLE `myaac_news_categories` | ||||||
| ( | ( | ||||||
| @@ -169,9 +189,9 @@ CREATE TABLE `myaac_news_categories` | |||||||
| 	`name` VARCHAR(50) NOT NULL DEFAULT "", | 	`name` VARCHAR(50) NOT NULL DEFAULT "", | ||||||
| 	`description` VARCHAR(50) NOT NULL DEFAULT "", | 	`description` VARCHAR(50) NOT NULL DEFAULT "", | ||||||
| 	`icon_id` INT(2) NOT NULL DEFAULT 0, | 	`icon_id` INT(2) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| INSERT INTO `myaac_news_categories` (`id`, `icon_id`) VALUES (NULL, 0); | INSERT INTO `myaac_news_categories` (`id`, `icon_id`) VALUES (NULL, 0); | ||||||
| INSERT INTO `myaac_news_categories` (`id`, `icon_id`) VALUES (NULL, 1); | INSERT INTO `myaac_news_categories` (`id`, `icon_id`) VALUES (NULL, 1); | ||||||
| @@ -187,7 +207,7 @@ CREATE TABLE `myaac_notepad` | |||||||
| 	`content` TEXT NOT NULL, | 	`content` TEXT NOT NULL, | ||||||
| 	/*`public` TINYINT(1) NOT NULL DEFAULT 0*/ | 	/*`public` TINYINT(1) NOT NULL DEFAULT 0*/ | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_pages` | CREATE TABLE `myaac_pages` | ||||||
| ( | ( | ||||||
| @@ -200,10 +220,10 @@ CREATE TABLE `myaac_pages` | |||||||
| 	`php` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '0 - plain html, 1 - php', | 	`php` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '0 - plain html, 1 - php', | ||||||
| 	`enable_tinymce` TINYINT(1) NOT NULL DEFAULT 1 COMMENT '1 - enabled, 0 - disabled', | 	`enable_tinymce` TINYINT(1) NOT NULL DEFAULT 1 COMMENT '1 - enabled, 0 - disabled', | ||||||
| 	`access` TINYINT(2) NOT NULL DEFAULT 0, | 	`access` TINYINT(2) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`), | 	PRIMARY KEY (`id`), | ||||||
| 	UNIQUE (`name`) | 	UNIQUE (`name`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_gallery` | CREATE TABLE `myaac_gallery` | ||||||
| ( | ( | ||||||
| @@ -213,9 +233,9 @@ CREATE TABLE `myaac_gallery` | |||||||
| 	`thumb` VARCHAR(255) NOT NULL, | 	`thumb` VARCHAR(255) NOT NULL, | ||||||
| 	`author` VARCHAR(50) NOT NULL DEFAULT '', | 	`author` VARCHAR(50) NOT NULL DEFAULT '', | ||||||
| 	`ordering` INT(11) NOT NULL DEFAULT 0, | 	`ordering` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| INSERT INTO `myaac_gallery` (`id`, `ordering`, `comment`, `image`, `thumb`, `author`) VALUES (NULL, 1, 'Demon', 'images/gallery/demon.jpg', 'images/gallery/demon_thumb.gif', 'MyAAC'); | INSERT INTO `myaac_gallery` (`id`, `ordering`, `comment`, `image`, `thumb`, `author`) VALUES (NULL, 1, 'Demon', 'images/gallery/demon.jpg', 'images/gallery/demon_thumb.gif', 'MyAAC'); | ||||||
|  |  | ||||||
| @@ -227,7 +247,7 @@ CREATE TABLE `myaac_settings` | |||||||
| 	`value` TEXT NOT NULL, | 	`value` TEXT NOT NULL, | ||||||
| 	PRIMARY KEY (`id`), | 	PRIMARY KEY (`id`), | ||||||
| 	KEY `key` (`key`) | 	KEY `key` (`key`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_spells` | CREATE TABLE `myaac_spells` | ||||||
| ( | ( | ||||||
| @@ -247,10 +267,10 @@ CREATE TABLE `myaac_spells` | |||||||
| 	`item_id` INT(11) NOT NULL DEFAULT 0, | 	`item_id` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`premium` TINYINT(1) NOT NULL DEFAULT 0, | 	`premium` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	`vocations` VARCHAR(100) NOT NULL DEFAULT '', | 	`vocations` VARCHAR(100) NOT NULL DEFAULT '', | ||||||
| 	`hide` TINYINT(1) NOT NULL DEFAULT 0, | 	`hidden` TINYINT(1) NOT NULL DEFAULT 0, | ||||||
| 	PRIMARY KEY (`id`), | 	PRIMARY KEY (`id`), | ||||||
| 	UNIQUE (`name`) | 	UNIQUE (`name`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_visitors` | CREATE TABLE `myaac_visitors` | ||||||
| ( | ( | ||||||
| @@ -259,7 +279,7 @@ CREATE TABLE `myaac_visitors` | |||||||
| 	`page` VARCHAR(2048) NOT NULL, | 	`page` VARCHAR(2048) NOT NULL, | ||||||
| 	`user_agent` VARCHAR(255) NOT NULL DEFAULT '', | 	`user_agent` VARCHAR(255) NOT NULL DEFAULT '', | ||||||
| 	UNIQUE (`ip`) | 	UNIQUE (`ip`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|  |  | ||||||
| CREATE TABLE `myaac_weapons` | CREATE TABLE `myaac_weapons` | ||||||
| ( | ( | ||||||
| @@ -268,4 +288,4 @@ CREATE TABLE `myaac_weapons` | |||||||
| 	`maglevel` INT(11) NOT NULL DEFAULT 0, | 	`maglevel` INT(11) NOT NULL DEFAULT 0, | ||||||
| 	`vocations` VARCHAR(100) NOT NULL DEFAULT '', | 	`vocations` VARCHAR(100) NOT NULL DEFAULT '', | ||||||
| 	PRIMARY KEY (`id`) | 	PRIMARY KEY (`id`) | ||||||
| ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4; | ) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8; | ||||||
|   | |||||||
| @@ -3,15 +3,16 @@ | |||||||
| use Twig\Environment as Twig_Environment; | use Twig\Environment as Twig_Environment; | ||||||
| use Twig\Loader\FilesystemLoader as Twig_FilesystemLoader; | use Twig\Loader\FilesystemLoader as Twig_FilesystemLoader; | ||||||
|  |  | ||||||
| const MYAAC_INSTALL = true; |  | ||||||
|  |  | ||||||
| require '../common.php'; | require '../common.php'; | ||||||
|  |  | ||||||
|  | define('MYAAC_INSTALL', true); | ||||||
|  |  | ||||||
| // includes | // includes | ||||||
| require SYSTEM . 'functions.php'; | require SYSTEM . 'functions.php'; | ||||||
| require BASE . 'install/includes/functions.php'; | require BASE . 'install/includes/functions.php'; | ||||||
| require BASE . 'install/includes/locale.php'; | require BASE . 'install/includes/locale.php'; | ||||||
| require SYSTEM . 'clients.conf.php'; | require SYSTEM . 'clients.conf.php'; | ||||||
|  | require LIBS . 'settings.php'; | ||||||
|  |  | ||||||
| // ignore undefined index from Twig autoloader | // ignore undefined index from Twig autoloader | ||||||
| $config['env'] = 'prod'; | $config['env'] = 'prod'; | ||||||
| @@ -114,7 +115,7 @@ else if($step == 'finish') { | |||||||
| 	$email = $_SESSION['var_email']; | 	$email = $_SESSION['var_email']; | ||||||
| 	$password = $_SESSION['var_password']; | 	$password = $_SESSION['var_password']; | ||||||
| 	$password_confirm = $_SESSION['var_password_confirm']; | 	$password_confirm = $_SESSION['var_password_confirm']; | ||||||
| 	$player_name = $_SESSION['var_player_name'] ?? null; | 	$player_name = $_SESSION['var_player_name']; | ||||||
|  |  | ||||||
| 	// email check | 	// email check | ||||||
| 	if(empty($email)) { | 	if(empty($email)) { | ||||||
| @@ -125,18 +126,7 @@ else if($step == 'finish') { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	// account check | 	// account check | ||||||
| 	if(isset($_SESSION['var_account_id'])) { | 	if(isset($_SESSION['var_account'])) { | ||||||
| 		if(empty($_SESSION['var_account_id'])) { |  | ||||||
| 			$errors[] = $locale['step_admin_account_id_error_empty']; |  | ||||||
| 		} |  | ||||||
| 		else if(!Validator::accountId($_SESSION['var_account_id'])) { |  | ||||||
| 			$errors[] = $locale['step_admin_account_id_error_format']; |  | ||||||
| 		} |  | ||||||
| 		else if($_SESSION['var_account_id'] == $password) { |  | ||||||
| 			$errors[] = $locale['step_admin_account_id_error_same']; |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| 	else if(isset($_SESSION['var_account'])) { |  | ||||||
| 		if(empty($_SESSION['var_account'])) { | 		if(empty($_SESSION['var_account'])) { | ||||||
| 			$errors[] = $locale['step_admin_account_error_empty']; | 			$errors[] = $locale['step_admin_account_error_empty']; | ||||||
| 		} | 		} | ||||||
| @@ -147,6 +137,17 @@ else if($step == 'finish') { | |||||||
| 			$errors[] = $locale['step_admin_account_error_same']; | 			$errors[] = $locale['step_admin_account_error_same']; | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  | 	else if(isset($_SESSION['var_account_id'])) { | ||||||
|  | 		if(empty($_SESSION['var_account_id'])) { | ||||||
|  | 			$errors[] = $locale['step_admin_account_id_error_empty']; | ||||||
|  | 		} | ||||||
|  | 		else if(!Validator::accountId($_SESSION['var_account_id'])) { | ||||||
|  | 			$errors[] = $locale['step_admin_account_id_error_format']; | ||||||
|  | 		} | ||||||
|  | 		else if($_SESSION['var_account_id'] == $password) { | ||||||
|  | 			$errors[] = $locale['step_admin_account_id_error_same']; | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	// password check | 	// password check | ||||||
| 	if(empty($password)) { | 	if(empty($password)) { | ||||||
| @@ -159,13 +160,12 @@ else if($step == 'finish') { | |||||||
| 		$errors[] = $locale['step_admin_password_confirm_error_not_same']; | 		$errors[] = $locale['step_admin_password_confirm_error_not_same']; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (isset($player_name)) { | 	// player name check | ||||||
| 		// player name check | 	if(empty($player_name)) { | ||||||
| 		if (empty($player_name)) { | 		$errors[] = $locale['step_admin_player_name_error_empty']; | ||||||
| 			$errors[] = $locale['step_admin_player_name_error_empty']; | 	} | ||||||
| 		} else if (!Validator::characterName($player_name)) { | 	else if(!Validator::characterName($player_name)) { | ||||||
| 			$errors[] = $locale['step_admin_player_name_error_format']; | 		$errors[] = $locale['step_admin_player_name_error_format']; | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if(!empty($errors)) { | 	if(!empty($errors)) { | ||||||
| @@ -183,23 +183,23 @@ clearstatcache(); | |||||||
| if(is_writable(CACHE) && (MYAAC_OS != 'WINDOWS' || win_is_writable(CACHE))) { | if(is_writable(CACHE) && (MYAAC_OS != 'WINDOWS' || win_is_writable(CACHE))) { | ||||||
| 	if(!file_exists(BASE . 'install/ip.txt')) { | 	if(!file_exists(BASE . 'install/ip.txt')) { | ||||||
| 		$content = warning('AAC installation is disabled. To enable it make file <b>ip.txt</b> in install/ directory and put there your IP.<br/> | 		$content = warning('AAC installation is disabled. To enable it make file <b>ip.txt</b> in install/ directory and put there your IP.<br/> | ||||||
| 		Your IP is:<br /><b>' . get_browser_real_ip() . '</b>', true); | 		Your IP is:<br /><b>' . $_SERVER['REMOTE_ADDR'] . '</b>', true); | ||||||
| 	} | 	} | ||||||
| 	else { | 	else { | ||||||
| 		$file_content = trim(file_get_contents(BASE . 'install/ip.txt')); | 		$file_content = trim(file_get_contents(BASE . 'install/ip.txt')); | ||||||
| 		$allow = false; | 		$allow = false; | ||||||
| 		$listIP = preg_split('/\s+/', $file_content); | 		$listIP = preg_split('/\s+/', $file_content); | ||||||
| 		foreach($listIP as $ip) { | 		foreach($listIP as $ip) { | ||||||
| 			if(get_browser_real_ip() == $ip) { | 			if($_SERVER['REMOTE_ADDR'] == $ip) { | ||||||
| 				$allow = true; | 				$allow = true; | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		if(!$allow && !config('install_ignore_ip_check')) | 		if(!$allow) | ||||||
| 		{ | 		{ | ||||||
| 			$content = warning('In file <b>install/ip.txt</b> must be your IP!<br/> | 			$content = warning('In file <b>install/ip.txt</b> must be your IP!<br/> | ||||||
| 			In file is:<br /><b>' . nl2br($file_content) . '</b><br/> | 			In file is:<br /><b>' . nl2br($file_content) . '</b><br/> | ||||||
| 			Your IP is:<br /><b>' . get_browser_real_ip() . '</b>', true); | 			Your IP is:<br /><b>' . $_SERVER['REMOTE_ADDR'] . '</b>', true); | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			ob_start(); | 			ob_start(); | ||||||
|   | |||||||
| @@ -2,15 +2,10 @@ | |||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| // configuration | // configuration | ||||||
| $dirs_required_writable = [ | $dirs_required = [ | ||||||
| 	'system/logs', | 	'system/logs', | ||||||
| 	'system/cache', | 	'system/cache', | ||||||
| ]; | ]; | ||||||
|  |  | ||||||
| $dirs_required = [ |  | ||||||
| 	'tools/ext' => $locale['step_requirements_folder_not_exists_tools_ext'], |  | ||||||
| ]; |  | ||||||
|  |  | ||||||
| $dirs_optional = [ | $dirs_optional = [ | ||||||
| 	GUILD_IMAGES_DIR => $locale['step_requirements_warning_images_guilds'], | 	GUILD_IMAGES_DIR => $locale['step_requirements_warning_images_guilds'], | ||||||
| 	GALLERY_DIR => $locale['step_requirements_warning_images_gallery'], | 	GALLERY_DIR => $locale['step_requirements_warning_images_gallery'], | ||||||
| @@ -23,7 +18,6 @@ $extensions_optional = [ | |||||||
| 	'gd' => $locale['step_requirements_warning_player_signatures'], | 	'gd' => $locale['step_requirements_warning_player_signatures'], | ||||||
| 	'zip' => $locale['step_requirements_warning_install_plugins'], | 	'zip' => $locale['step_requirements_warning_install_plugins'], | ||||||
| ]; | ]; | ||||||
|  |  | ||||||
| /* | /* | ||||||
|  * |  * | ||||||
|  * @param string $name |  * @param string $name | ||||||
| @@ -47,7 +41,7 @@ $failed = false; | |||||||
| // start validating | // start validating | ||||||
| version_check($locale['step_requirements_php_version'], (PHP_VERSION_ID >= 50500), PHP_VERSION); | version_check($locale['step_requirements_php_version'], (PHP_VERSION_ID >= 50500), PHP_VERSION); | ||||||
|  |  | ||||||
| foreach ($dirs_required_writable as $value) | foreach ($dirs_required as $value) | ||||||
| { | { | ||||||
| 	$is_writable = is_writable(BASE . $value) && (MYAAC_OS != 'WINDOWS' || win_is_writable(BASE . $value)); | 	$is_writable = is_writable(BASE . $value) && (MYAAC_OS != 'WINDOWS' || win_is_writable(BASE . $value)); | ||||||
| 	version_check($locale['step_requirements_write_perms'] . ': ' . $value, $is_writable); | 	version_check($locale['step_requirements_write_perms'] . ': ' . $value, $is_writable); | ||||||
| @@ -58,12 +52,6 @@ foreach ($dirs_optional as $dir => $errorMsg) { | |||||||
| 	version_check($locale['step_requirements_write_perms'] . ': ' . $dir, $is_writable, $is_writable ? '' : $errorMsg, true); | 	version_check($locale['step_requirements_write_perms'] . ': ' . $dir, $is_writable, $is_writable ? '' : $errorMsg, true); | ||||||
| } | } | ||||||
|  |  | ||||||
| foreach ($dirs_required as $dir => $errorMsg) |  | ||||||
| { |  | ||||||
| 	$exists = is_dir(BASE . $dir); |  | ||||||
| 	version_check($locale['step_requirements_folder_exists'] . ': ' . $dir, $exists, $exists ? '' : $errorMsg); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $ini_register_globals = ini_get_bool('register_globals'); | $ini_register_globals = ini_get_bool('register_globals'); | ||||||
| version_check('register_long_arrays', !$ini_register_globals, $ini_register_globals ? $locale['on'] : $locale['off']); | version_check('register_long_arrays', !$ini_register_globals, $ini_register_globals ? $locale['on'] : $locale['off']); | ||||||
|  |  | ||||||
| @@ -90,3 +78,4 @@ if($failed) { | |||||||
| } | } | ||||||
|  |  | ||||||
| echo '</div>'; | echo '</div>'; | ||||||
|  | ?> | ||||||
|   | |||||||
| @@ -11,7 +11,6 @@ foreach($config['clients'] as $client) { | |||||||
| } | } | ||||||
|  |  | ||||||
| $twig->display('install.config.html.twig', array( | $twig->display('install.config.html.twig', array( | ||||||
| 	'config' => $config, |  | ||||||
| 	'clients' => $clients, | 	'clients' => $clients, | ||||||
| 	'timezones' => DateTimeZone::listIdentifiers(), | 	'timezones' => DateTimeZone::listIdentifiers(), | ||||||
| 	'locale' => $locale, | 	'locale' => $locale, | ||||||
|   | |||||||
| @@ -1,7 +1,4 @@ | |||||||
| <?php | <?php | ||||||
|  |  | ||||||
| use MyAAC\Settings; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| //ini_set('display_errors', false); | //ini_set('display_errors', false); | ||||||
| @@ -40,49 +37,58 @@ if(!$error) { | |||||||
| 	$configToSave['gzip_output'] = false; | 	$configToSave['gzip_output'] = false; | ||||||
| 	$configToSave['cache_engine'] = 'auto'; | 	$configToSave['cache_engine'] = 'auto'; | ||||||
| 	$configToSave['cache_prefix'] = 'myaac_' . generateRandomString(8, true, false, true); | 	$configToSave['cache_prefix'] = 'myaac_' . generateRandomString(8, true, false, true); | ||||||
| 	$configToSave['database_auto_migrate'] = true; |  | ||||||
| 	if (isset($config['install_ignore_ip_check'])) { | 	require BASE . 'install/includes/config.php'; | ||||||
| 		$configToSave['install_ignore_ip_check'] = $config['install_ignore_ip_check']; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if(!$error) { | 	if(!$error) { | ||||||
| 		$content = ''; | 		require BASE . 'install/includes/database.php'; | ||||||
| 		$saved = Settings::saveConfig($configToSave, BASE . 'config.local.php', $content); |  | ||||||
| 		if ($saved) { |  | ||||||
| 			success($locale['step_database_config_saved']); |  | ||||||
| 			$_SESSION['saved'] = true; |  | ||||||
|  |  | ||||||
| 			require BASE . 'config.local.php'; | 		$locale['step_database_importing'] = str_replace('$DATABASE_NAME$', config('database_name'), $locale['step_database_importing']); | ||||||
| 			require BASE . 'install/includes/config.php'; | 		success($locale['step_database_importing']); | ||||||
|  |  | ||||||
| 			if (!$error) { | 		if(isset($database_error)) { // we failed connect to the database | ||||||
| 				require BASE . 'install/includes/database.php'; | 			error($database_error); | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			if(!$db->hasTable('accounts')) { | ||||||
|  | 				$tmp = str_replace('$TABLE$', 'accounts', $locale['step_database_error_table']); | ||||||
|  | 				error($tmp); | ||||||
|  | 				$error = true; | ||||||
|  | 			} | ||||||
|  |  | ||||||
| 				if (isset($database_error)) { // we failed connect to the database | 			if(!$db->hasTable('players')) { | ||||||
| 					error($database_error); | 				$tmp = str_replace('$TABLE$', 'players', $locale['step_database_error_table']); | ||||||
|  | 				error($tmp); | ||||||
|  | 				$error = true; | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			if(!$db->hasTable('guilds')) { | ||||||
|  | 				$tmp = str_replace('$TABLE$', 'guilds', $locale['step_database_error_table']); | ||||||
|  | 				error($tmp); | ||||||
|  | 				$error = true; | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			if(!$error) { | ||||||
|  | 				$twig->display('install.installer.html.twig', array( | ||||||
|  | 					'url' => 'tools/5-database.php', | ||||||
|  | 					'message' => $locale['loading_spinner'] | ||||||
|  | 				)); | ||||||
|  |  | ||||||
|  | 				$content = ''; | ||||||
|  | 				$saved = Settings::saveConfig($configToSave, BASE . 'config.local.php', $content); | ||||||
|  | 				if($saved) { | ||||||
|  | 					success($locale['step_database_config_saved']); | ||||||
|  | 					$_SESSION['saved'] = true; | ||||||
| 				} | 				} | ||||||
| 				else { | 				else { | ||||||
| 					if (!$db->hasTable('accounts')) { | 					$_SESSION['config_content'] = $content; | ||||||
| 						$tmp = str_replace('$TABLE$', 'accounts', $locale['step_database_error_table']); | 					unset($_SESSION['saved']); | ||||||
| 						error($tmp); |  | ||||||
| 						$error = true; |  | ||||||
| 					} |  | ||||||
|  |  | ||||||
| 					if (!$error) { | 					$locale['step_database_error_file'] = str_replace('$FILE$', '<b>' . BASE . 'config.php</b>', $locale['step_database_error_file']); | ||||||
| 						$twig->display('install.installer.html.twig', array( | 					error($locale['step_database_error_file'] . '<br/> | ||||||
| 							'url' => 'tools/5-database.php', | 						<textarea cols="70" rows="10">' . $content . '</textarea>'); | ||||||
| 							'message' => $locale['loading_spinner'] |  | ||||||
| 						)); |  | ||||||
| 					} |  | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 		} else { |  | ||||||
| 			$_SESSION['config_content'] = $content; |  | ||||||
| 			unset($_SESSION['saved']); |  | ||||||
|  |  | ||||||
| 					$locale['step_database_error_file'] = str_replace('$FILE$', '<b>' . BASE . 'config.local.php</b>', $locale['step_database_error_file']); |  | ||||||
| 			error($locale['step_database_error_file'] . '<br/> |  | ||||||
| 				<textarea cols="70" rows="10">' . $content . '</textarea>'); |  | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
| @@ -18,7 +18,6 @@ if(!$error) { | |||||||
| 		'locale' => $locale, | 		'locale' => $locale, | ||||||
| 		'session' => $_SESSION, | 		'session' => $_SESSION, | ||||||
| 		'account' => $account, | 		'account' => $account, | ||||||
| 		'hasTablePlayers' => $db->hasTable('players'), |  | ||||||
| 		'errors' => isset($errors) ? $errors : null, | 		'errors' => isset($errors) ? $errors : null, | ||||||
| 		'buttons' => next_buttons(true, $error ? false : true) | 		'buttons' => next_buttons(true, $error ? false : true) | ||||||
| 	)); | 	)); | ||||||
|   | |||||||
| @@ -1,207 +1,169 @@ | |||||||
| <?php | <?php | ||||||
|  |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\Models\News; |  | ||||||
| use MyAAC\Settings; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| ini_set('max_execution_time', 300); | ini_set('max_execution_time', 300); | ||||||
| if(isset($config['installed']) && $config['installed'] && !isset($_SESSION['saved'])) { | if(isset($config['installed']) && $config['installed'] && !isset($_SESSION['saved'])) { | ||||||
| 	warning($locale['already_installed']); | 	warning($locale['already_installed']); | ||||||
| 	return; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $cache = Cache::getInstance(); |  | ||||||
| if ($cache->enabled()) { |  | ||||||
| 	// clear plugin_hooks to have fresh hooks |  | ||||||
| 	$cache->delete('plugins_hooks'); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| require SYSTEM . 'init.php'; |  | ||||||
| if($error) { |  | ||||||
| 	return; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| if(USE_ACCOUNT_NAME || USE_ACCOUNT_NUMBER) |  | ||||||
| 	$account = $_SESSION['var_account'] ?? null; |  | ||||||
| else |  | ||||||
| 	$account_id = $_SESSION['var_account_id'] ?? null; |  | ||||||
|  |  | ||||||
| $password = $_SESSION['var_password']; |  | ||||||
|  |  | ||||||
| if(USE_ACCOUNT_SALT) |  | ||||||
| { |  | ||||||
| 	$salt = generateRandomString(10, false, true, true); |  | ||||||
| 	$password = $salt . $password; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $account_db = new OTS_Account(); |  | ||||||
| if(isset($account)) |  | ||||||
| 	$account_db->find($account); |  | ||||||
| else |  | ||||||
| 	$account_db->load($account_id); |  | ||||||
|  |  | ||||||
| if ($db->hasTable('players')) { |  | ||||||
| 	$player_name = $_SESSION['var_player_name']; |  | ||||||
| 	$player_db = new OTS_Player(); |  | ||||||
| 	$player_db->find($player_name); |  | ||||||
|  |  | ||||||
| 	if(!$player_db->isLoaded()) |  | ||||||
| 	{ |  | ||||||
| 		$player = new OTS_Player(); |  | ||||||
| 		$player->setName($player_name); |  | ||||||
|  |  | ||||||
| 		$player_used = &$player; |  | ||||||
| 	} |  | ||||||
| 	else { |  | ||||||
| 		$player_used = &$player_db; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$groups = new OTS_Groups_List(); |  | ||||||
| 	$player_used->setGroupId($groups->getHighestId()); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $email = $_SESSION['var_email']; |  | ||||||
| if($account_db->isLoaded()) { |  | ||||||
| 	$account_db->setPassword(encrypt($password)); |  | ||||||
| 	$account_db->setEMail($email); |  | ||||||
| 	$account_db->save(); |  | ||||||
|  |  | ||||||
| 	$account_used = &$account_db; |  | ||||||
| } | } | ||||||
| else { | else { | ||||||
| 	$new_account = new OTS_Account(); | 	require SYSTEM . 'init.php'; | ||||||
| 	if(USE_ACCOUNT_NAME) { | 	if(!$error) { | ||||||
| 		$new_account->create($account); | 		if(USE_ACCOUNT_NAME || USE_ACCOUNT_NUMBER) | ||||||
| 	} | 			$account = isset($_SESSION['var_account']) ? $_SESSION['var_account'] : null; | ||||||
| 	else { | 		else | ||||||
| 		$new_account->create(null, $account_id); | 			$account_id = isset($_SESSION['var_account_id']) ? $_SESSION['var_account_id'] : null; | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$new_account->setPassword(encrypt($password)); | 		$password = $_SESSION['var_password']; | ||||||
| 	$new_account->setEMail($email); |  | ||||||
|  |  | ||||||
| 	$new_account->save(); | 		if(USE_ACCOUNT_SALT) | ||||||
|  |  | ||||||
| 	$new_account->setCustomField('created', time()); |  | ||||||
| 	$new_account->logAction('Account created.'); |  | ||||||
|  |  | ||||||
| 	$account_used = &$new_account; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| if(USE_ACCOUNT_SALT) |  | ||||||
| 	$account_used->setCustomField('salt', $salt); |  | ||||||
|  |  | ||||||
| $account_used->setCustomField('web_flags', FLAG_ADMIN + FLAG_SUPER_ADMIN); |  | ||||||
| $account_used->setCustomField('country', 'us'); |  | ||||||
| $account_used->setCustomField('email_verified', 1); |  | ||||||
|  |  | ||||||
| if($db->hasColumn('accounts', 'group_id')) |  | ||||||
| 	$account_used->setCustomField('group_id', $groups->getHighestId()); |  | ||||||
| if($db->hasColumn('accounts', 'type')) |  | ||||||
| 	$account_used->setCustomField('type', 6); |  | ||||||
|  |  | ||||||
| if ($db->hasTable('players')) { |  | ||||||
| 	if(!$player_db->isLoaded()) { |  | ||||||
| 		$player->setAccountId($account_used->getId()); |  | ||||||
| 		$player->save(); |  | ||||||
| 	} |  | ||||||
| 	else { |  | ||||||
| 		$player_db->setAccountId($account_used->getId()); |  | ||||||
| 		$player_db->save(); |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| success($locale['step_database_created_account']); |  | ||||||
|  |  | ||||||
| setSession('account', $account_used->getId()); |  | ||||||
| setSession('password', encrypt($password)); |  | ||||||
| setSession('remember_me', true); |  | ||||||
|  |  | ||||||
| if(!News::all()->count()) { |  | ||||||
| 	$player_id = 0; |  | ||||||
|  |  | ||||||
| 	if ($db->hasTable('players')) { |  | ||||||
| 		$tmpNewsPlayer = \MyAAC\Models\Player::where('name', $player_name)->first(); |  | ||||||
| 		if($tmpNewsPlayer) { |  | ||||||
| 			$player_id = $tmpNewsPlayer->id; |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	News::create([ |  | ||||||
| 		'type' => 1, |  | ||||||
| 		'date' => time(), |  | ||||||
| 		'category' => 2, |  | ||||||
| 		'title' => 'Hello!', |  | ||||||
| 		'body' => 'MyAAC is just READY to use!', |  | ||||||
| 		'player_id' => $player_id, |  | ||||||
| 		'comments' => 'https://my-aac.org', |  | ||||||
| 		'hide' => 0, |  | ||||||
| 	]); |  | ||||||
|  |  | ||||||
| 	News::create([ |  | ||||||
| 		'type' => 2, |  | ||||||
| 		'date' => time(), |  | ||||||
| 		'category' => 4, |  | ||||||
| 		'title' => 'Hello tickers!', |  | ||||||
| 		'body' => 'https://my-aac.org', |  | ||||||
| 		'player_id' => $player_id, |  | ||||||
| 		'comments' => '', |  | ||||||
| 		'hide' => 0, |  | ||||||
| 	]); |  | ||||||
|  |  | ||||||
| 	success($locale['step_database_created_news']); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $settings = Settings::getInstance(); |  | ||||||
| foreach($_SESSION as $key => $value) { |  | ||||||
| 	if (in_array($key, ['var_usage', 'var_date_timezone', 'var_client'])) { |  | ||||||
| 		if ($key == 'var_usage') { |  | ||||||
| 			$key = 'anonymous_usage_statistics'; |  | ||||||
| 			$value = ((int)$value == 1 ? 'true' : 'false'); |  | ||||||
| 		} elseif ($key == 'var_date_timezone') { |  | ||||||
| 			$key = 'date_timezone'; |  | ||||||
| 		} elseif ($key == 'var_client') { |  | ||||||
| 			$key = 'client'; |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		$settings->updateInDatabase('core', $key, $value); |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| success('Settings saved.'); |  | ||||||
|  |  | ||||||
| $twig->display('install.installer.html.twig', array( |  | ||||||
| 	'url' => 'tools/7-finish.php', |  | ||||||
| 	'message' => $locale['importing_spinner'] |  | ||||||
| )); |  | ||||||
|  |  | ||||||
| if(!isset($_SESSION['installed'])) { |  | ||||||
| 	if (!array_key_exists('CI', getenv())) { |  | ||||||
| 		$report_url = 'https://my-aac.org/report_install.php?v=' . MYAAC_VERSION . '&b=' . urlencode(BASE_URL); |  | ||||||
| 		if (function_exists('curl_version')) |  | ||||||
| 		{ | 		{ | ||||||
| 			$curl = curl_init(); | 			$salt = generateRandomString(10, false, true, true); | ||||||
| 			curl_setopt($curl, CURLOPT_URL, $report_url); | 			$password = $salt . $password; | ||||||
| 			curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); |  | ||||||
| 			curl_exec($curl); |  | ||||||
| 			curl_close($curl); |  | ||||||
| 		} | 		} | ||||||
| 		else if (ini_get('allow_url_fopen') ) { |  | ||||||
| 			file_get_contents($report_url); | 		$account_db = new OTS_Account(); | ||||||
|  | 		if(isset($account)) | ||||||
|  | 			$account_db->find($account); | ||||||
|  | 		else | ||||||
|  | 			$account_db->load($account_id); | ||||||
|  |  | ||||||
|  | 		$player_name = $_SESSION['var_player_name']; | ||||||
|  | 		$player_db = new OTS_Player(); | ||||||
|  | 		$player_db->find($player_name); | ||||||
|  |  | ||||||
|  | 		if(!$player_db->isLoaded()) | ||||||
|  | 		{ | ||||||
|  | 			$player = new OTS_Player(); | ||||||
|  | 			$player->setName($player_name); | ||||||
|  |  | ||||||
|  | 			$player_used = &$player; | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			$player_used = &$player_db; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		$groups = new OTS_Groups_List(); | ||||||
|  | 		$player_used->setGroupId($groups->getHighestId()); | ||||||
|  |  | ||||||
|  | 		$email = $_SESSION['var_email']; | ||||||
|  | 		if($account_db->isLoaded()) { | ||||||
|  | 			$account_db->setPassword(encrypt($password)); | ||||||
|  | 			$account_db->setEMail($email); | ||||||
|  | 			$account_db->save(); | ||||||
|  |  | ||||||
|  | 			$account_used = &$account_db; | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			$new_account = new OTS_Account(); | ||||||
|  | 			if(USE_ACCOUNT_NAME) { | ||||||
|  | 				$new_account->create($account); | ||||||
|  | 			} | ||||||
|  | 			else { | ||||||
|  | 				$new_account->create(null, $account_id); | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			$new_account->setPassword(encrypt($password)); | ||||||
|  | 			$new_account->setEMail($email); | ||||||
|  |  | ||||||
|  | 			$new_account->save(); | ||||||
|  |  | ||||||
|  | 			$new_account->setCustomField('created', time()); | ||||||
|  | 			$new_account->logAction('Account created.'); | ||||||
|  |  | ||||||
|  | 			$account_used = &$new_account; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if(USE_ACCOUNT_SALT) | ||||||
|  | 			$account_used->setCustomField('salt', $salt); | ||||||
|  |  | ||||||
|  | 		$account_used->setCustomField('web_flags', FLAG_ADMIN + FLAG_SUPER_ADMIN); | ||||||
|  | 		$account_used->setCustomField('country', 'us'); | ||||||
|  | 		if($db->hasColumn('accounts', 'group_id')) | ||||||
|  | 			$account_used->setCustomField('group_id', $groups->getHighestId()); | ||||||
|  | 		if($db->hasColumn('accounts', 'type')) | ||||||
|  | 			$account_used->setCustomField('type', 6); | ||||||
|  |  | ||||||
|  | 		if(!$player_db->isLoaded()) | ||||||
|  | 			$player->setAccountId($account_used->getId()); | ||||||
|  | 		else | ||||||
|  | 			$player_db->setAccountId($account_used->getId()); | ||||||
|  |  | ||||||
|  | 		success($locale['step_database_created_account']); | ||||||
|  |  | ||||||
|  | 		setSession('account', $account_used->getId()); | ||||||
|  | 		setSession('password', encrypt($password)); | ||||||
|  | 		setSession('remember_me', true); | ||||||
|  |  | ||||||
|  | 		if($player_db->isLoaded()) { | ||||||
|  | 			$player_db->save(); | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			$player->save(); | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		$player_id = 0; | ||||||
|  | 		$query = $db->query("SELECT `id` FROM `players` WHERE `name` = " . $db->quote($player_name) . ";"); | ||||||
|  | 		if($query->rowCount() == 1) { | ||||||
|  | 			$query = $query->fetch(); | ||||||
|  | 			$player_id = $query['id']; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		$query = $db->query("SELECT `id` FROM `" . TABLE_PREFIX ."news` WHERE `title` LIKE 'Hello!';"); | ||||||
|  | 		if($query->rowCount() == 0) { | ||||||
|  | 			if(query("INSERT INTO `" . TABLE_PREFIX ."news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '1', UNIX_TIMESTAMP(), '2', 'Hello!', 'MyAAC is just READY to use!', " . $player_id . ", 'https://my-aac.org', '0'); | ||||||
|  | 	INSERT INTO `myaac_news` (`id`, `type`, `date`, `category`, `title`, `body`, `player_id`, `comments`, `hidden`) VALUES (NULL, '2', UNIX_TIMESTAMP(), '4', 'Hello tickets!', 'https://my-aac.org', " . $player_id . ", '', '0');")) { | ||||||
|  | 				success($locale['step_database_created_news']); | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		$settings = Settings::getInstance(); | ||||||
|  | 		foreach($_SESSION as $key => $value) { | ||||||
|  | 			if (in_array($key, ['var_usage', 'var_date_timezone', 'var_client'])) { | ||||||
|  | 				if ($key == 'var_usage') { | ||||||
|  | 					$key = 'anonymous_usage_statistics'; | ||||||
|  | 					$value = ((int)$value == 1 ? 'true' : 'false'); | ||||||
|  | 				} elseif ($key == 'var_date_timezone') { | ||||||
|  | 					$key = 'date_timezone'; | ||||||
|  | 				} elseif ($key == 'var_client') { | ||||||
|  | 					$key = 'client'; | ||||||
|  | 				} | ||||||
|  |  | ||||||
|  | 				$settings->updateInDatabase('core', $key, $value); | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		success('Settings saved.'); | ||||||
|  |  | ||||||
|  | 		$twig->display('install.installer.html.twig', array( | ||||||
|  | 			'url' => 'tools/7-finish.php', | ||||||
|  | 			'message' => $locale['importing_spinner'] | ||||||
|  | 		)); | ||||||
|  |  | ||||||
|  | 		if(!isset($_SESSION['installed'])) { | ||||||
|  | 			if (!array_key_exists('CI', getenv())) { | ||||||
|  | 				$report_url = 'https://my-aac.org/report_install.php?v=' . MYAAC_VERSION . '&b=' . urlencode(BASE_URL); | ||||||
|  | 				if (function_exists('curl_version')) | ||||||
|  | 				{ | ||||||
|  | 					$curl = curl_init(); | ||||||
|  | 					curl_setopt($curl, CURLOPT_URL, $report_url); | ||||||
|  | 					curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); | ||||||
|  | 					curl_exec($curl); | ||||||
|  | 					curl_close($curl); | ||||||
|  | 				} | ||||||
|  | 				else if (ini_get('allow_url_fopen') ) { | ||||||
|  | 					file_get_contents($report_url); | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  |  | ||||||
|  | 			$_SESSION['installed'] = true; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		foreach($_SESSION as $key => $value) { | ||||||
|  | 			if(strpos($key, 'var_') !== false) | ||||||
|  | 				unset($_SESSION[$key]); | ||||||
|  | 		} | ||||||
|  | 		unset($_SESSION['saved']); | ||||||
|  | 		if(file_exists(CACHE . 'install.txt')) { | ||||||
|  | 			unlink(CACHE . 'install.txt'); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	$_SESSION['installed'] = true; |  | ||||||
| } | } | ||||||
|  |  | ||||||
| foreach($_SESSION as $key => $value) { |  | ||||||
| 	if(strpos($key, 'var_') !== false) |  | ||||||
| 		unset($_SESSION[$key]); |  | ||||||
| } |  | ||||||
| unset($_SESSION['saved']); |  | ||||||
| if(file_exists(CACHE . 'install.txt')) { |  | ||||||
| 	unlink(CACHE . 'install.txt'); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| $hooks->trigger(HOOK_INSTALL_FINISH_END); |  | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ | |||||||
| 	<title>MyAAC - <?php echo $locale['installation']; ?></title> | 	<title>MyAAC - <?php echo $locale['installation']; ?></title> | ||||||
| 	<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> | 	<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> | ||||||
| 	<link rel="stylesheet" type="text/css" href="template/style.css" /> | 	<link rel="stylesheet" type="text/css" href="template/style.css" /> | ||||||
| 	<script type="text/javascript" src="<?php echo BASE_URL; ?>tools/ext/jquery/jquery.min.js"></script> | 	<script type="text/javascript" src="<?php echo BASE_URL; ?>tools/js/jquery.min.js"></script> | ||||||
| </head> | </head> | ||||||
| <body> | <body> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -11,10 +11,8 @@ $error = false; | |||||||
| require BASE . 'install/includes/config.php'; | require BASE . 'install/includes/config.php'; | ||||||
|  |  | ||||||
| ini_set('max_execution_time', 300); | ini_set('max_execution_time', 300); | ||||||
|  |  | ||||||
| @ob_end_flush(); |  | ||||||
| ob_implicit_flush(); | ob_implicit_flush(); | ||||||
|  | ob_end_flush(); | ||||||
| header('X-Accel-Buffering: no'); | header('X-Accel-Buffering: no'); | ||||||
|  |  | ||||||
| if(!$error) { | if(!$error) { | ||||||
| @@ -32,9 +30,6 @@ if($db->hasTable(TABLE_PREFIX . 'account_actions')) { | |||||||
| else { | else { | ||||||
| 	// import schema | 	// import schema | ||||||
| 	try { | 	try { | ||||||
| 		$locale['step_database_importing'] = str_replace('$DATABASE_NAME$', config('database_name'), $locale['step_database_importing']); |  | ||||||
| 		success($locale['step_database_importing']); |  | ||||||
|  |  | ||||||
| 		$db->query(file_get_contents(BASE . 'install/includes/schema.sql')); | 		$db->query(file_get_contents(BASE . 'install/includes/schema.sql')); | ||||||
|  |  | ||||||
| 		$locale['step_database_success_schema'] = str_replace('$PREFIX$', TABLE_PREFIX, $locale['step_database_success_schema']); | 		$locale['step_database_success_schema'] = str_replace('$PREFIX$', TABLE_PREFIX, $locale['step_database_success_schema']); | ||||||
| @@ -141,74 +136,73 @@ if(!$db->hasColumn('accounts', 'premium_points')) { | |||||||
| 		success($locale['step_database_adding_field'] . ' accounts.premium_points...'); | 		success($locale['step_database_adding_field'] . ' accounts.premium_points...'); | ||||||
| } | } | ||||||
|  |  | ||||||
| if ($db->hasTable('guilds')) { | if($db->hasColumn('guilds', 'checkdata')) { | ||||||
| 	if ($db->hasColumn('guilds', 'checkdata')) { | 	if(query("ALTER TABLE `guilds` MODIFY `checkdata` INT NOT NULL DEFAULT 0;")) | ||||||
| 		if (query("ALTER TABLE `guilds` MODIFY `checkdata` INT NOT NULL DEFAULT 0;")) | 		success($locale['step_database_modifying_field'] . ' guilds.checkdata...'); | ||||||
| 			success($locale['step_database_modifying_field'] . ' guilds.checkdata...'); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if (!$db->hasColumn('guilds', 'motd')) { |  | ||||||
| 		if (query("ALTER TABLE `guilds` ADD `motd` VARCHAR(255) NOT NULL DEFAULT '';")) |  | ||||||
| 			success($locale['step_database_adding_field'] . ' guilds.motd...'); |  | ||||||
| 	} else { |  | ||||||
| 		if (query("ALTER TABLE `guilds` MODIFY `motd` VARCHAR(255) NOT NULL DEFAULT '';")) |  | ||||||
| 			success($locale['step_database_modifying_field'] . ' guilds.motd...'); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if (!$db->hasColumn('guilds', 'description')) { |  | ||||||
| 		if (query("ALTER TABLE `guilds` ADD `description` TEXT NOT NULL;")) |  | ||||||
| 			success($locale['step_database_adding_field'] . ' guilds.description...'); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if ($db->hasColumn('guilds', 'logo_gfx_name')) { |  | ||||||
| 		if (query("ALTER TABLE `guilds` CHANGE `logo_gfx_name` `logo_name` VARCHAR( 255 ) NOT NULL DEFAULT 'default.gif';")) { |  | ||||||
| 			$tmp = str_replace('$FIELD$', 'guilds.logo_gfx_name', $locale['step_database_changing_field']); |  | ||||||
| 			$tmp = str_replace('$FIELD_NEW$', 'guilds.logo_name', $tmp); |  | ||||||
| 			success($tmp); |  | ||||||
| 		} |  | ||||||
| 	} else if (!$db->hasColumn('guilds', 'logo_name')) { |  | ||||||
| 		if (query("ALTER TABLE `guilds` ADD `logo_name` VARCHAR( 255 ) NOT NULL DEFAULT 'default.gif';")) |  | ||||||
| 			success($locale['step_database_adding_field'] . ' guilds.logo_name...'); |  | ||||||
| 	} |  | ||||||
| } | } | ||||||
|  |  | ||||||
| if ($db->hasTable('players')) { | if(!$db->hasColumn('guilds', 'motd')) { | ||||||
| 	if (!$db->hasColumn('players', 'created')) { | 	if(query("ALTER TABLE `guilds` ADD `motd` VARCHAR(255) NOT NULL DEFAULT '';")) | ||||||
| 		if (query("ALTER TABLE `players` ADD `created` INT(11) NOT NULL DEFAULT 0;")) | 		success($locale['step_database_adding_field'] . ' guilds.motd...'); | ||||||
| 			success($locale['step_database_adding_field'] . ' players.created...'); | } | ||||||
| 	} | else { | ||||||
|  | 	if(query("ALTER TABLE `guilds` MODIFY `motd` VARCHAR(255) NOT NULL DEFAULT '';")) | ||||||
|  | 		success($locale['step_database_modifying_field'] . ' guilds.motd...'); | ||||||
|  | } | ||||||
|  |  | ||||||
| 	if (!$db->hasColumn('players', 'deleted') && !$db->hasColumn('players', 'deletion')) { | if(!$db->hasColumn('guilds', 'description')) { | ||||||
| 		if (query("ALTER TABLE `players` ADD `deleted` TINYINT(1) NOT NULL DEFAULT 0;")) | 	if(query("ALTER TABLE `guilds` ADD `description` TEXT NOT NULL;")) | ||||||
| 			success($locale['step_database_adding_field'] . ' players.deleted...'); | 		success($locale['step_database_adding_field'] . ' guilds.description...'); | ||||||
| 	} | } | ||||||
|  |  | ||||||
| 	if ($db->hasColumn('players', 'hide_char')) { | if($db->hasColumn('guilds', 'logo_gfx_name')) { | ||||||
| 		if (!$db->hasColumn('players', 'hide')) { | 	if(query("ALTER TABLE `guilds` CHANGE `logo_gfx_name` `logo_name` VARCHAR( 255 ) NOT NULL DEFAULT 'default.gif';")) { | ||||||
| 			if (query("ALTER TABLE `players` CHANGE `hide_char` `hide` TINYINT(1) NOT NULL DEFAULT 0;")) { | 		$tmp = str_replace('$FIELD$', 'guilds.logo_gfx_name', $locale['step_database_changing_field']); | ||||||
| 				$tmp = str_replace('$FIELD$', 'players.hide_char', $locale['step_database_changing_field']); | 		$tmp = str_replace('$FIELD_NEW$', 'guilds.logo_name', $tmp); | ||||||
| 				$tmp = str_replace('$FIELD_NEW$', 'players.hide', $tmp); | 		success($tmp); | ||||||
| 				success($tmp); | 	} | ||||||
| 			} | } | ||||||
|  | else if(!$db->hasColumn('guilds', 'logo_name')) { | ||||||
|  | 	if(query("ALTER TABLE `guilds` ADD `logo_name` VARCHAR( 255 ) NOT NULL DEFAULT 'default.gif';")) | ||||||
|  | 		success($locale['step_database_adding_field'] . ' guilds.logo_name...'); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(!$db->hasColumn('players', 'created')) { | ||||||
|  | 	if(query("ALTER TABLE `players` ADD `created` INT(11) NOT NULL DEFAULT 0;")) | ||||||
|  | 		success($locale['step_database_adding_field'] . ' players.created...'); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(!$db->hasColumn('players', 'deleted') && !$db->hasColumn('players', 'deletion')) { | ||||||
|  | 	if(query("ALTER TABLE `players` ADD `deleted` TINYINT(1) NOT NULL DEFAULT 0;")) | ||||||
|  | 		success($locale['step_database_adding_field'] . ' players.deleted...'); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if($db->hasColumn('players', 'hide_char')) { | ||||||
|  | 	if(!$db->hasColumn('players', 'hidden')) { | ||||||
|  | 		if(query("ALTER TABLE `players` CHANGE `hide_char` `hidden` TINYINT(1) NOT NULL DEFAULT 0;")) { | ||||||
|  | 			$tmp = str_replace('$FIELD$', 'players.hide_char', $locale['step_database_changing_field']); | ||||||
|  | 			$tmp = str_replace('$FIELD_NEW$', 'players.hidden', $tmp); | ||||||
|  | 			success($tmp); | ||||||
| 		} | 		} | ||||||
| 	} else if (!$db->hasColumn('players', 'hide')) { |  | ||||||
| 		if (query("ALTER TABLE `players` ADD `hide` TINYINT(1) NOT NULL DEFAULT 0;")) |  | ||||||
| 			success($locale['step_database_adding_field'] . ' players.hide...'); |  | ||||||
| 	} | 	} | ||||||
|  | } | ||||||
|  | else if(!$db->hasColumn('players', 'hidden')) { | ||||||
|  | 	if(query("ALTER TABLE `players` ADD `hidden` TINYINT(1) NOT NULL DEFAULT 0;")) | ||||||
|  | 		success($locale['step_database_adding_field'] . ' players.hidden...'); | ||||||
|  | } | ||||||
|  |  | ||||||
| 	if (!$db->hasColumn('players', 'comment')) { | if(!$db->hasColumn('players', 'comment')) { | ||||||
| 		if (query("ALTER TABLE `players` ADD `comment` TEXT NOT NULL;")) | 	if(query("ALTER TABLE `players` ADD `comment` TEXT NOT NULL;")) | ||||||
| 			success($locale['step_database_adding_field'] . ' players.comment...'); | 		success($locale['step_database_adding_field'] . ' players.comment...'); | ||||||
| 	} | } | ||||||
|  |  | ||||||
| 	if ($db->hasColumn('players', 'rank_id')) { | if($db->hasColumn('players', 'rank_id')) { | ||||||
| 		if (query("ALTER TABLE players MODIFY `rank_id` INT(11) NOT NULL DEFAULT 0;")) | 	if(query("ALTER TABLE players MODIFY `rank_id` INT(11) NOT NULL DEFAULT 0;")) | ||||||
| 			success($locale['step_database_modifying_field'] . ' players.rank_id...'); | 		success($locale['step_database_modifying_field'] . ' players.rank_id...'); | ||||||
|  |  | ||||||
| 		if ($db->hasColumn('players', 'guildnick')) { | 	if($db->hasColumn('players', 'guildnick')) { | ||||||
| 			if (query("ALTER TABLE players MODIFY `guildnick` VARCHAR(255) NOT NULL DEFAULT '';")) { | 		if(query("ALTER TABLE players MODIFY `guildnick` VARCHAR(255) NOT NULL DEFAULT '';")) { | ||||||
| 				success($locale['step_database_modifying_field'] . ' players.guildnick...'); | 			success($locale['step_database_modifying_field'] . ' players.guildnick...'); | ||||||
| 			} |  | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,10 +1,6 @@ | |||||||
| <?php | <?php | ||||||
| define('MYAAC_INSTALL', true); | define('MYAAC_INSTALL', true); | ||||||
|  |  | ||||||
| use MyAAC\DataLoader; |  | ||||||
| use MyAAC\Models\FAQ as ModelsFAQ; |  | ||||||
| use MyAAC\Plugins; |  | ||||||
|  |  | ||||||
| require_once '../../common.php'; | require_once '../../common.php'; | ||||||
|  |  | ||||||
| require SYSTEM . 'functions.php'; | require SYSTEM . 'functions.php'; | ||||||
| @@ -12,10 +8,8 @@ require BASE . 'install/includes/functions.php'; | |||||||
| require BASE . 'install/includes/locale.php'; | require BASE . 'install/includes/locale.php'; | ||||||
|  |  | ||||||
| ini_set('max_execution_time', 300); | ini_set('max_execution_time', 300); | ||||||
|  |  | ||||||
| @ob_end_flush(); |  | ||||||
| ob_implicit_flush(); | ob_implicit_flush(); | ||||||
|  | ob_end_flush(); | ||||||
| header('X-Accel-Buffering: no'); | header('X-Accel-Buffering: no'); | ||||||
| /* | /* | ||||||
| if(isset($config['installed']) && $config['installed'] && !isset($_SESSION['saved'])) { | if(isset($config['installed']) && $config['installed'] && !isset($_SESSION['saved'])) { | ||||||
| @@ -25,59 +19,51 @@ if(isset($config['installed']) && $config['installed'] && !isset($_SESSION['save | |||||||
|  |  | ||||||
| require SYSTEM . 'init.php'; | require SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
| if ($db->hasTable('players')) { | $deleted = 'deleted'; | ||||||
| 	$deleted = 'deleted'; | if($db->hasColumn('players', 'deletion')) | ||||||
| 	if ($db->hasColumn('players', 'deletion')) | 	$deleted = 'deletion'; | ||||||
| 		$deleted = 'deletion'; |  | ||||||
|  |  | ||||||
| 	$time = time(); | $time = time(); | ||||||
| 	function insert_sample_if_not_exist($p) | function insert_sample_if_not_exist($p) { | ||||||
| 	{ | 	global $db, $success, $deleted, $time; | ||||||
| 		global $db, $success, $deleted, $time; |  | ||||||
|  |  | ||||||
| 		$query = $db->query('SELECT `id` FROM `players` WHERE `name` = ' . $db->quote($p['name'])); | 	$query = $db->query('SELECT `id` FROM `players` WHERE `name` = ' . $db->quote($p['name'])); | ||||||
| 		if ($query->rowCount() == 0) { | 	if($query->rowCount() == 0) { | ||||||
| 			if (!query("INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `$deleted`, `created`, `hide`, `comment`) VALUES (null, " . $db->quote($p['name']) . ", 1, " . getSession('account') . ", " . $p['level'] . ", " . $p['vocation_id'] . ", " . $p['health'] . ", " . $p['healthmax'] . ", " . $p['experience'] . ", 118, 114, 38, 57, " . $p['looktype'] . ", 0, " . $p['mana'] . ", " . $p['manamax'] . ", 0, " . $p['soul'] . ", 1, 1000, 1000, 7, '', " . $p['cap'] . ", 1, " . $time . ", 2130706433, 1, " . $time . ", 0, 0, " . $time . ", 1, '');")) | 		if(!query("INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `$deleted`, `created`, `hidden`, `comment`) VALUES (null, " . $db->quote($p['name']) . ", 1, " . getSession('account') . ", " . $p['level'] . ", " . $p['vocation_id'] . ", " . $p['health'] . ", " . $p['healthmax'] . ", " . $p['experience'] . ", 118, 114, 38, 57, " . $p['looktype'] . ", 0, " . $p['mana'] . ", " . $p['manamax'] . ", 0, " . $p['soul'] . ", 1, 1000, 1000, 7, '', " . $p['cap'] . ", 1, " . $time . ", 2130706433, 1, " . $time . ", 0, 0, " . $time . ", 1, '');")) | ||||||
| 				$success = false; | 			$success = false; | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$success = true; |  | ||||||
| 	insert_sample_if_not_exist(array('name' => 'Rook Sample', 'level' => 1, 'vocation_id' => 0, 'health' => 150, 'healthmax' => 150, 'experience' => 0, 'looktype' => 130, 'mana' => 0, 'manamax' => 0, 'soul' => 100, 'cap' => 400)); |  | ||||||
| 	insert_sample_if_not_exist(array('name' => 'Sorcerer Sample', 'level' => 8, 'vocation_id' => 1, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 130, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); |  | ||||||
| 	insert_sample_if_not_exist(array('name' => 'Druid Sample', 'level' => 8, 'vocation_id' => 2, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 130, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); |  | ||||||
| 	insert_sample_if_not_exist(array('name' => 'Paladin Sample', 'level' => 8, 'vocation_id' => 3, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 129, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); |  | ||||||
| 	insert_sample_if_not_exist(array('name' => 'Knight Sample', 'level' => 8, 'vocation_id' => 4, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 131, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); |  | ||||||
|  |  | ||||||
| 	if ($success) { |  | ||||||
| 		success($locale['step_database_imported_players']); |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|  | $success = true; | ||||||
|  | insert_sample_if_not_exist(array('name' => 'Rook Sample', 'level' => 1, 'vocation_id' => 0, 'health' => 150, 'healthmax' => 150, 'experience' => 0, 'looktype' => 130, 'mana' => 0, 'manamax' => 0, 'soul' => 100, 'cap' => 400)); | ||||||
|  | insert_sample_if_not_exist(array('name' => 'Sorcerer Sample', 'level' => 8, 'vocation_id' => 1, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 130, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); | ||||||
|  | insert_sample_if_not_exist(array('name' => 'Druid Sample', 'level' => 8, 'vocation_id' => 2, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 130, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); | ||||||
|  | insert_sample_if_not_exist(array('name' => 'Paladin Sample', 'level' => 8, 'vocation_id' => 3, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 129, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); | ||||||
|  | insert_sample_if_not_exist(array('name' => 'Knight Sample', 'level' => 8, 'vocation_id' => 4, 'health' => 185, 'healthmax' => 185, 'experience' => 4200, 'looktype' => 131, 'mana' => 90, 'manamax' => 90, 'soul' => 100, 'cap' => 470)); | ||||||
|  |  | ||||||
|  | if($success) { | ||||||
|  | 	success($locale['step_database_imported_players']); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | require_once LIBS . 'plugins.php'; | ||||||
| Plugins::installMenus('kathrine', require TEMPLATES . 'kathrine/menus.php'); | Plugins::installMenus('kathrine', require TEMPLATES . 'kathrine/menus.php'); | ||||||
| Plugins::installMenus('tibiacom', require TEMPLATES . 'tibiacom/menus.php'); | Plugins::installMenus('tibiacom', require TEMPLATES . 'tibiacom/menus.php'); | ||||||
|  |  | ||||||
|  | require LIBS . 'DataLoader.php'; | ||||||
| DataLoader::setLocale($locale); | DataLoader::setLocale($locale); | ||||||
| DataLoader::load(); | DataLoader::load(); | ||||||
|  |  | ||||||
| // update config.highscores_ids_hidden | // update config.highscores_ids_hidden | ||||||
| require_once SYSTEM . 'migrations/20.php'; | require_once SYSTEM . 'migrations/20.php'; | ||||||
| $up(); |  | ||||||
|  |  | ||||||
| // add z_polls tables | // add z_polls tables | ||||||
| require_once SYSTEM . 'migrations/22.php'; | require_once SYSTEM . 'migrations/22.php'; | ||||||
| $up(); |  | ||||||
|  |  | ||||||
| // add myaac_pages pages | // add myaac_pages pages | ||||||
| require_once SYSTEM . 'migrations/27.php'; | require_once SYSTEM . 'migrations/27.php'; | ||||||
| $up(); |  | ||||||
| require_once SYSTEM . 'migrations/30.php'; | require_once SYSTEM . 'migrations/30.php'; | ||||||
| $up(); |  | ||||||
|  |  | ||||||
| // new monster columns |  | ||||||
| require_once SYSTEM . 'migrations/31.php'; |  | ||||||
| $up(); |  | ||||||
|  |  | ||||||
|  | use MyAAC\Models\FAQ as ModelsFAQ; | ||||||
| if(ModelsFAQ::count() == 0) { | if(ModelsFAQ::count() == 0) { | ||||||
| 	ModelsFAQ::create([ | 	ModelsFAQ::create([ | ||||||
| 		'question' => 'What is this?', | 		'question' => 'What is this?', | ||||||
| @@ -85,10 +71,6 @@ if(ModelsFAQ::count() == 0) { | |||||||
| 	]); | 	]); | ||||||
| } | } | ||||||
|  |  | ||||||
| $hooks->trigger(HOOK_INSTALL_FINISH); |  | ||||||
|  |  | ||||||
| $db->setClearCacheAfter(true); |  | ||||||
|  |  | ||||||
| $locale['step_finish_desc'] = str_replace('$ADMIN_PANEL$', generateLink(str_replace('tools/', '',ADMIN_URL), $locale['step_finish_admin_panel'], true), $locale['step_finish_desc']); | $locale['step_finish_desc'] = str_replace('$ADMIN_PANEL$', generateLink(str_replace('tools/', '',ADMIN_URL), $locale['step_finish_admin_panel'], true), $locale['step_finish_desc']); | ||||||
| $locale['step_finish_desc'] = str_replace('$HOMEPAGE$', generateLink(str_replace('tools/', '', BASE_URL), $locale['step_finish_homepage'], true), $locale['step_finish_desc']); | $locale['step_finish_desc'] = str_replace('$HOMEPAGE$', generateLink(str_replace('tools/', '', BASE_URL), $locale['step_finish_homepage'], true), $locale['step_finish_desc']); | ||||||
| $locale['step_finish_desc'] = str_replace('$LINK$', generateLink('https://my-aac.org', 'https://my-aac.org', true), $locale['step_finish_desc']); | $locale['step_finish_desc'] = str_replace('$LINK$', generateLink('https://my-aac.org', 'https://my-aac.org', true), $locale['step_finish_desc']); | ||||||
|   | |||||||
							
								
								
									
										34
									
								
								login.php
									
									
									
									
									
								
							
							
						
						
									
										34
									
								
								login.php
									
									
									
									
									
								
							| @@ -2,9 +2,6 @@ | |||||||
|  |  | ||||||
| use MyAAC\Models\BoostedCreature; | use MyAAC\Models\BoostedCreature; | ||||||
| use MyAAC\Models\PlayerOnline; | use MyAAC\Models\PlayerOnline; | ||||||
| use MyAAC\Models\Account; |  | ||||||
| use MyAAC\Models\Player; |  | ||||||
| use MyAAC\RateLimit; |  | ||||||
|  |  | ||||||
| require_once 'common.php'; | require_once 'common.php'; | ||||||
| require_once SYSTEM . 'functions.php'; | require_once SYSTEM . 'functions.php'; | ||||||
| @@ -131,29 +128,12 @@ switch ($action) { | |||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		$account = $account->first(); | 		$account = $account->first(); | ||||||
|  |  | ||||||
| 		$ip = get_browser_real_ip(); |  | ||||||
| 		$limiter = new RateLimit('failed_logins', setting('core.account_login_attempts_limit'), setting('core.account_login_ban_time')); |  | ||||||
| 		$limiter->enabled = setting('core.account_login_ipban_protection'); |  | ||||||
| 		$limiter->load(); |  | ||||||
|  |  | ||||||
| 		$ban_msg = 'A wrong account, password or secret has been entered ' . setting('core.account_login_attempts_limit') . ' times in a row. You are unable to log into your account for the next ' . setting('core.account_login_ban_time') . ' minutes. Please wait.'; |  | ||||||
| 		if (!$account) { | 		if (!$account) { | ||||||
| 			$limiter->increment($ip); |  | ||||||
| 			if ($limiter->exceeded($ip)) { |  | ||||||
| 				sendError($ban_msg); |  | ||||||
| 			} |  | ||||||
| 			 |  | ||||||
| 			sendError(($inputEmail != false ? 'Email' : 'Account name') . ' or password is not correct.'); | 			sendError(($inputEmail != false ? 'Email' : 'Account name') . ' or password is not correct.'); | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		$current_password = encrypt((USE_ACCOUNT_SALT ? $account->salt : '') . $request->password); | 		$current_password = encrypt((USE_ACCOUNT_SALT ? $account->salt : '') . $request->password); | ||||||
| 		if (!$account || $account->password != $current_password) { | 		if (!$account || $account->password != $current_password) { | ||||||
| 			$limiter->increment($ip); |  | ||||||
| 			if ($limiter->exceeded($ip)) { |  | ||||||
| 				sendError($ban_msg); |  | ||||||
| 			} |  | ||||||
|  |  | ||||||
| 			sendError(($inputEmail != false ? 'Email' : 'Account name') . ' or password is not correct.'); | 			sendError(($inputEmail != false ? 'Email' : 'Account name') . ' or password is not correct.'); | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| @@ -163,30 +143,16 @@ switch ($action) { | |||||||
| 			if ($accountSecret != null && $accountSecret != '') { | 			if ($accountSecret != null && $accountSecret != '') { | ||||||
| 				$accountHasSecret = true; | 				$accountHasSecret = true; | ||||||
| 				if ($inputToken === false) { | 				if ($inputToken === false) { | ||||||
| 					$limiter->increment($ip); |  | ||||||
| 					if ($limiter->exceeded($ip)) { |  | ||||||
| 						sendError($ban_msg); |  | ||||||
| 					} |  | ||||||
| 					sendError('Submit a valid two-factor authentication token.', 6); | 					sendError('Submit a valid two-factor authentication token.', 6); | ||||||
| 				} else { | 				} else { | ||||||
| 					require_once LIBS . 'rfc6238.php'; | 					require_once LIBS . 'rfc6238.php'; | ||||||
| 					if (TokenAuth6238::verify($accountSecret, $inputToken) !== true) { | 					if (TokenAuth6238::verify($accountSecret, $inputToken) !== true) { | ||||||
| 						$limiter->increment($ip); |  | ||||||
| 						if ($limiter->exceeded($ip)) { |  | ||||||
| 							sendError($ban_msg); |  | ||||||
| 						} |  | ||||||
|  |  | ||||||
| 						sendError('Two-factor authentication failed, token is wrong.', 6); | 						sendError('Two-factor authentication failed, token is wrong.', 6); | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		$limiter->reset($ip); |  | ||||||
| 		if (setting('core.account_mail_verify') && $account->email_verified !== 1) { |  | ||||||
| 			sendError('You need to verify your account, enter in our site and resend verify e-mail!'); |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// common columns | 		// common columns | ||||||
| 		$columns = 'id, name, level, sex, vocation, looktype, lookhead, lookbody, looklegs, lookfeet, lookaddons'; | 		$columns = 'id, name, level, sex, vocation, looktype, lookhead, lookbody, looklegs, lookfeet, lookaddons'; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -10,25 +10,22 @@ server { | |||||||
| 	# this is very important, be sure its in your nginx conf - it prevents access to logs etc. | 	# this is very important, be sure its in your nginx conf - it prevents access to logs etc. | ||||||
| 	location ~ /system { | 	location ~ /system { | ||||||
| 		deny all; | 		deny all; | ||||||
|  | 		return 404; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	location /vendor { | 	# block .htaccess | ||||||
| 		deny all; | 	location ~ /\.ht { | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	# block .htaccess, CHANGELOG.md, composer.json etc. |  | ||||||
| 	# this is to prevent finding software versions |  | ||||||
| 	location ~\.(ht|md|json|dist)$ { |  | ||||||
| 		deny all; | 		deny all; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	# block git files and folders | 	# block git files and folders | ||||||
| 	location ~ /\.git { | 	location ~ /\.git { | ||||||
|  | 		return 404; | ||||||
| 		deny all; | 		deny all; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	location / { | 	location / { | ||||||
| 		try_files $uri $uri/ /index.php?$query_string;; | 		try_files $uri $uri/ /index.php; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	location ~ \.php$ { | 	location ~ \.php$ { | ||||||
|   | |||||||
| @@ -1,16 +0,0 @@ | |||||||
| const fse = require('fs-extra'); |  | ||||||
| const path = require('path'); |  | ||||||
|  |  | ||||||
| const nodeModulesDir = path.join(__dirname, 'node_modules'); |  | ||||||
| const publicDir = path.join(__dirname, 'tools/ext'); |  | ||||||
|  |  | ||||||
| fse.emptyDirSync(path.join(publicDir, 'jquery')); |  | ||||||
| fse.emptyDirSync(path.join(publicDir, 'jquery-ui')); |  | ||||||
| fse.emptyDirSync(path.join(publicDir, 'bootstrap')); |  | ||||||
| fse.emptyDirSync(path.join(publicDir, 'tinymce')); |  | ||||||
| fse.emptyDirSync(path.join(publicDir, 'tinymce-jquery')); |  | ||||||
| fse.copySync(path.join(nodeModulesDir, 'jquery', 'dist'), path.join(publicDir, 'jquery'), { overwrite: true }); |  | ||||||
| fse.copySync(path.join(nodeModulesDir, 'jquery-ui', 'dist'), path.join(publicDir, 'jquery-ui'), { overwrite: true }); |  | ||||||
| fse.copySync(path.join(nodeModulesDir, 'bootstrap', 'dist'), path.join(publicDir, 'bootstrap'), { overwrite: true }); |  | ||||||
| fse.copySync(path.join(nodeModulesDir, 'tinymce'), path.join(publicDir, 'tinymce'), { overwrite: true }); |  | ||||||
| fse.copySync(path.join(nodeModulesDir, '@tinymce', 'tinymce-jquery', 'dist'), path.join(publicDir, 'tinymce-jquery'), { overwrite: true }); |  | ||||||
							
								
								
									
										433
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										433
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -4,15 +4,6 @@ | |||||||
|   "requires": true, |   "requires": true, | ||||||
|   "packages": { |   "packages": { | ||||||
|     "": { |     "": { | ||||||
|       "hasInstallScript": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "@tinymce/tinymce-jquery": "^2.1.0", |  | ||||||
|         "bootstrap": "^4.6.2", |  | ||||||
|         "fs-extra": "^11.2.0", |  | ||||||
|         "jquery": "^3.7.1", |  | ||||||
|         "jquery-ui": "^1.13.2", |  | ||||||
|         "tinymce": "^6.8.3" |  | ||||||
|       }, |  | ||||||
|       "devDependencies": { |       "devDependencies": { | ||||||
|         "cypress": "^12.12.0" |         "cypress": "^12.12.0" | ||||||
|       } |       } | ||||||
| @@ -28,9 +19,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/@cypress/request": { |     "node_modules/@cypress/request": { | ||||||
|       "version": "2.88.12", |       "version": "2.88.11", | ||||||
|       "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.12.tgz", |       "resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz", | ||||||
|       "integrity": "sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==", |       "integrity": "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "aws-sign2": "~0.7.0", |         "aws-sign2": "~0.7.0", | ||||||
| @@ -48,7 +39,7 @@ | |||||||
|         "performance-now": "^2.1.0", |         "performance-now": "^2.1.0", | ||||||
|         "qs": "~6.10.3", |         "qs": "~6.10.3", | ||||||
|         "safe-buffer": "^5.1.2", |         "safe-buffer": "^5.1.2", | ||||||
|         "tough-cookie": "^4.1.3", |         "tough-cookie": "~2.5.0", | ||||||
|         "tunnel-agent": "^0.6.0", |         "tunnel-agent": "^0.6.0", | ||||||
|         "uuid": "^8.3.2" |         "uuid": "^8.3.2" | ||||||
|       }, |       }, | ||||||
| @@ -75,15 +66,10 @@ | |||||||
|         "ms": "^2.1.1" |         "ms": "^2.1.1" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/@tinymce/tinymce-jquery": { |  | ||||||
|       "version": "2.1.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/@tinymce/tinymce-jquery/-/tinymce-jquery-2.1.0.tgz", |  | ||||||
|       "integrity": "sha512-ynfgfL/n5/Us7h3AnJL3mAwsShuE/USvAJFOdilJDkZuVCypWSwVVo3E3wIqSzDGvqyU+293ok1+sD+jxraT8w==" |  | ||||||
|     }, |  | ||||||
|     "node_modules/@types/node": { |     "node_modules/@types/node": { | ||||||
|       "version": "16.18.82", |       "version": "14.18.47", | ||||||
|       "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.82.tgz", |       "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.47.tgz", | ||||||
|       "integrity": "sha512-pcDZtkx9z8XYV+ius2P3Ot2VVrcYOfXffBQUBuiszrlUzKSmoDYqo+mV+IoL8iIiIjjtOMvNSmH1hwJ+Q+f96Q==", |       "integrity": "sha512-OuJi8bIng4wYHHA3YpKauL58dZrPxro3d0tabPHyiNF8rKfGKuVfr83oFlPLmKri1cX+Z3cJP39GXmnqkP11Gw==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/@types/sinonjs__fake-timers": { |     "node_modules/@types/sinonjs__fake-timers": { | ||||||
| @@ -93,15 +79,15 @@ | |||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/@types/sizzle": { |     "node_modules/@types/sizzle": { | ||||||
|       "version": "2.3.8", |       "version": "2.3.3", | ||||||
|       "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", |       "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", | ||||||
|       "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", |       "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/@types/yauzl": { |     "node_modules/@types/yauzl": { | ||||||
|       "version": "2.10.3", |       "version": "2.10.0", | ||||||
|       "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", |       "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", | ||||||
|       "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", |       "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "optional": true, |       "optional": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
| @@ -217,9 +203,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/async": { |     "node_modules/async": { | ||||||
|       "version": "3.2.5", |       "version": "3.2.4", | ||||||
|       "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", |       "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", | ||||||
|       "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", |       "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/asynckit": { |     "node_modules/asynckit": { | ||||||
| @@ -299,25 +285,6 @@ | |||||||
|       "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", |       "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/bootstrap": { |  | ||||||
|       "version": "4.6.2", |  | ||||||
|       "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz", |  | ||||||
|       "integrity": "sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==", |  | ||||||
|       "funding": [ |  | ||||||
|         { |  | ||||||
|           "type": "github", |  | ||||||
|           "url": "https://github.com/sponsors/twbs" |  | ||||||
|         }, |  | ||||||
|         { |  | ||||||
|           "type": "opencollective", |  | ||||||
|           "url": "https://opencollective.com/bootstrap" |  | ||||||
|         } |  | ||||||
|       ], |  | ||||||
|       "peerDependencies": { |  | ||||||
|         "jquery": "1.9.1 - 3", |  | ||||||
|         "popper.js": "^1.16.1" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/brace-expansion": { |     "node_modules/brace-expansion": { | ||||||
|       "version": "1.1.11", |       "version": "1.1.11", | ||||||
|       "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", |       "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", | ||||||
| @@ -362,28 +329,22 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/cachedir": { |     "node_modules/cachedir": { | ||||||
|       "version": "2.4.0", |       "version": "2.3.0", | ||||||
|       "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", |       "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", | ||||||
|       "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", |       "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">=6" |         "node": ">=6" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/call-bind": { |     "node_modules/call-bind": { | ||||||
|       "version": "1.0.7", |       "version": "1.0.2", | ||||||
|       "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", |       "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", | ||||||
|       "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", |       "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "es-define-property": "^1.0.0", |         "function-bind": "^1.1.1", | ||||||
|         "es-errors": "^1.3.0", |         "get-intrinsic": "^1.0.2" | ||||||
|         "function-bind": "^1.1.2", |  | ||||||
|         "get-intrinsic": "^1.2.4", |  | ||||||
|         "set-function-length": "^1.2.1" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       }, |       }, | ||||||
|       "funding": { |       "funding": { | ||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
| @@ -433,9 +394,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/ci-info": { |     "node_modules/ci-info": { | ||||||
|       "version": "3.9.0", |       "version": "3.8.0", | ||||||
|       "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", |       "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", | ||||||
|       "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", |       "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "funding": [ |       "funding": [ | ||||||
|         { |         { | ||||||
| @@ -580,15 +541,15 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/cypress": { |     "node_modules/cypress": { | ||||||
|       "version": "12.17.4", |       "version": "12.12.0", | ||||||
|       "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.17.4.tgz", |       "resolved": "https://registry.npmjs.org/cypress/-/cypress-12.12.0.tgz", | ||||||
|       "integrity": "sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==", |       "integrity": "sha512-UU5wFQ7SMVCR/hyKok/KmzG6fpZgBHHfrXcHzDmPHWrT+UUetxFzQgt7cxCszlwfozckzwkd22dxMwl/vNkWRw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "hasInstallScript": true, |       "hasInstallScript": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "@cypress/request": "2.88.12", |         "@cypress/request": "^2.88.10", | ||||||
|         "@cypress/xvfb": "^1.2.4", |         "@cypress/xvfb": "^1.2.4", | ||||||
|         "@types/node": "^16.18.39", |         "@types/node": "^14.14.31", | ||||||
|         "@types/sinonjs__fake-timers": "8.1.1", |         "@types/sinonjs__fake-timers": "8.1.1", | ||||||
|         "@types/sizzle": "^2.3.2", |         "@types/sizzle": "^2.3.2", | ||||||
|         "arch": "^2.2.0", |         "arch": "^2.2.0", | ||||||
| @@ -621,10 +582,9 @@ | |||||||
|         "minimist": "^1.2.8", |         "minimist": "^1.2.8", | ||||||
|         "ospath": "^1.2.2", |         "ospath": "^1.2.2", | ||||||
|         "pretty-bytes": "^5.6.0", |         "pretty-bytes": "^5.6.0", | ||||||
|         "process": "^0.11.10", |  | ||||||
|         "proxy-from-env": "1.0.0", |         "proxy-from-env": "1.0.0", | ||||||
|         "request-progress": "^3.0.0", |         "request-progress": "^3.0.0", | ||||||
|         "semver": "^7.5.3", |         "semver": "^7.3.2", | ||||||
|         "supports-color": "^8.1.1", |         "supports-color": "^8.1.1", | ||||||
|         "tmp": "~0.2.1", |         "tmp": "~0.2.1", | ||||||
|         "untildify": "^4.0.0", |         "untildify": "^4.0.0", | ||||||
| @@ -637,21 +597,6 @@ | |||||||
|         "node": "^14.0.0 || ^16.0.0 || >=18.0.0" |         "node": "^14.0.0 || ^16.0.0 || >=18.0.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/cypress/node_modules/fs-extra": { |  | ||||||
|       "version": "9.1.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", |  | ||||||
|       "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "at-least-node": "^1.0.0", |  | ||||||
|         "graceful-fs": "^4.2.0", |  | ||||||
|         "jsonfile": "^6.0.1", |  | ||||||
|         "universalify": "^2.0.0" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">=10" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/dashdash": { |     "node_modules/dashdash": { | ||||||
|       "version": "1.14.1", |       "version": "1.14.1", | ||||||
|       "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", |       "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", | ||||||
| @@ -665,9 +610,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/dayjs": { |     "node_modules/dayjs": { | ||||||
|       "version": "1.11.10", |       "version": "1.11.7", | ||||||
|       "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", |       "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz", | ||||||
|       "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==", |       "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/debug": { |     "node_modules/debug": { | ||||||
| @@ -687,23 +632,6 @@ | |||||||
|         } |         } | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/define-data-property": { |  | ||||||
|       "version": "1.1.4", |  | ||||||
|       "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", |  | ||||||
|       "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "es-define-property": "^1.0.0", |  | ||||||
|         "es-errors": "^1.3.0", |  | ||||||
|         "gopd": "^1.0.1" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       }, |  | ||||||
|       "funding": { |  | ||||||
|         "url": "https://github.com/sponsors/ljharb" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/delayed-stream": { |     "node_modules/delayed-stream": { | ||||||
|       "version": "1.0.0", |       "version": "1.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", |       "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", | ||||||
| @@ -739,39 +667,17 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/enquirer": { |     "node_modules/enquirer": { | ||||||
|       "version": "2.4.1", |       "version": "2.3.6", | ||||||
|       "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", |       "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", | ||||||
|       "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", |       "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "ansi-colors": "^4.1.1", |         "ansi-colors": "^4.1.1" | ||||||
|         "strip-ansi": "^6.0.1" |  | ||||||
|       }, |       }, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">=8.6" |         "node": ">=8.6" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/es-define-property": { |  | ||||||
|       "version": "1.0.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", |  | ||||||
|       "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "get-intrinsic": "^1.2.4" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/es-errors": { |  | ||||||
|       "version": "1.3.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", |  | ||||||
|       "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", |  | ||||||
|       "dev": true, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/escape-string-regexp": { |     "node_modules/escape-string-regexp": { | ||||||
|       "version": "1.0.5", |       "version": "1.0.5", | ||||||
|       "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", |       "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", | ||||||
| @@ -905,16 +811,18 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/fs-extra": { |     "node_modules/fs-extra": { | ||||||
|       "version": "11.2.0", |       "version": "9.1.0", | ||||||
|       "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", |       "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", | ||||||
|       "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", |       "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", | ||||||
|  |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|  |         "at-least-node": "^1.0.0", | ||||||
|         "graceful-fs": "^4.2.0", |         "graceful-fs": "^4.2.0", | ||||||
|         "jsonfile": "^6.0.1", |         "jsonfile": "^6.0.1", | ||||||
|         "universalify": "^2.0.0" |         "universalify": "^2.0.0" | ||||||
|       }, |       }, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">=14.14" |         "node": ">=10" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/fs.realpath": { |     "node_modules/fs.realpath": { | ||||||
| @@ -924,28 +832,21 @@ | |||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/function-bind": { |     "node_modules/function-bind": { | ||||||
|       "version": "1.1.2", |       "version": "1.1.1", | ||||||
|       "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", |       "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", | ||||||
|       "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", |       "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", | ||||||
|       "dev": true, |       "dev": true | ||||||
|       "funding": { |  | ||||||
|         "url": "https://github.com/sponsors/ljharb" |  | ||||||
|       } |  | ||||||
|     }, |     }, | ||||||
|     "node_modules/get-intrinsic": { |     "node_modules/get-intrinsic": { | ||||||
|       "version": "1.2.4", |       "version": "1.2.1", | ||||||
|       "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", |       "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", | ||||||
|       "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", |       "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "es-errors": "^1.3.0", |         "function-bind": "^1.1.1", | ||||||
|         "function-bind": "^1.1.2", |         "has": "^1.0.3", | ||||||
|         "has-proto": "^1.0.1", |         "has-proto": "^1.0.1", | ||||||
|         "has-symbols": "^1.0.3", |         "has-symbols": "^1.0.3" | ||||||
|         "hasown": "^2.0.0" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       }, |       }, | ||||||
|       "funding": { |       "funding": { | ||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
| @@ -1019,22 +920,23 @@ | |||||||
|         "url": "https://github.com/sponsors/sindresorhus" |         "url": "https://github.com/sponsors/sindresorhus" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/gopd": { |  | ||||||
|       "version": "1.0.1", |  | ||||||
|       "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", |  | ||||||
|       "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "get-intrinsic": "^1.1.3" |  | ||||||
|       }, |  | ||||||
|       "funding": { |  | ||||||
|         "url": "https://github.com/sponsors/ljharb" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/graceful-fs": { |     "node_modules/graceful-fs": { | ||||||
|       "version": "4.2.11", |       "version": "4.2.11", | ||||||
|       "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", |       "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", | ||||||
|       "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" |       "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", | ||||||
|  |       "dev": true | ||||||
|  |     }, | ||||||
|  |     "node_modules/has": { | ||||||
|  |       "version": "1.0.3", | ||||||
|  |       "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", | ||||||
|  |       "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", | ||||||
|  |       "dev": true, | ||||||
|  |       "dependencies": { | ||||||
|  |         "function-bind": "^1.1.1" | ||||||
|  |       }, | ||||||
|  |       "engines": { | ||||||
|  |         "node": ">= 0.4.0" | ||||||
|  |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/has-flag": { |     "node_modules/has-flag": { | ||||||
|       "version": "4.0.0", |       "version": "4.0.0", | ||||||
| @@ -1045,18 +947,6 @@ | |||||||
|         "node": ">=8" |         "node": ">=8" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/has-property-descriptors": { |  | ||||||
|       "version": "1.0.2", |  | ||||||
|       "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", |  | ||||||
|       "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "es-define-property": "^1.0.0" |  | ||||||
|       }, |  | ||||||
|       "funding": { |  | ||||||
|         "url": "https://github.com/sponsors/ljharb" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/has-proto": { |     "node_modules/has-proto": { | ||||||
|       "version": "1.0.1", |       "version": "1.0.1", | ||||||
|       "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", |       "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", | ||||||
| @@ -1081,18 +971,6 @@ | |||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/hasown": { |  | ||||||
|       "version": "2.0.1", |  | ||||||
|       "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", |  | ||||||
|       "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "function-bind": "^1.1.2" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/http-signature": { |     "node_modules/http-signature": { | ||||||
|       "version": "1.3.6", |       "version": "1.3.6", | ||||||
|       "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", |       "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", | ||||||
| @@ -1258,19 +1136,6 @@ | |||||||
|       "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", |       "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/jquery": { |  | ||||||
|       "version": "3.7.1", |  | ||||||
|       "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", |  | ||||||
|       "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==" |  | ||||||
|     }, |  | ||||||
|     "node_modules/jquery-ui": { |  | ||||||
|       "version": "1.13.2", |  | ||||||
|       "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.2.tgz", |  | ||||||
|       "integrity": "sha512-wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q==", |  | ||||||
|       "dependencies": { |  | ||||||
|         "jquery": ">=1.8.0 <4.0.0" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/jsbn": { |     "node_modules/jsbn": { | ||||||
|       "version": "0.1.1", |       "version": "0.1.1", | ||||||
|       "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", |       "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", | ||||||
| @@ -1293,6 +1158,7 @@ | |||||||
|       "version": "6.1.0", |       "version": "6.1.0", | ||||||
|       "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", |       "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", | ||||||
|       "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", |       "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", | ||||||
|  |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "universalify": "^2.0.0" |         "universalify": "^2.0.0" | ||||||
|       }, |       }, | ||||||
| @@ -1516,9 +1382,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/object-inspect": { |     "node_modules/object-inspect": { | ||||||
|       "version": "1.13.1", |       "version": "1.12.3", | ||||||
|       "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", |       "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", | ||||||
|       "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", |       "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "funding": { |       "funding": { | ||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
| @@ -1608,17 +1474,6 @@ | |||||||
|         "node": ">=0.10.0" |         "node": ">=0.10.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/popper.js": { |  | ||||||
|       "version": "1.16.1", |  | ||||||
|       "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", |  | ||||||
|       "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", |  | ||||||
|       "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", |  | ||||||
|       "peer": true, |  | ||||||
|       "funding": { |  | ||||||
|         "type": "opencollective", |  | ||||||
|         "url": "https://opencollective.com/popperjs" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/pretty-bytes": { |     "node_modules/pretty-bytes": { | ||||||
|       "version": "5.6.0", |       "version": "5.6.0", | ||||||
|       "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", |       "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", | ||||||
| @@ -1631,15 +1486,6 @@ | |||||||
|         "url": "https://github.com/sponsors/sindresorhus" |         "url": "https://github.com/sponsors/sindresorhus" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/process": { |  | ||||||
|       "version": "0.11.10", |  | ||||||
|       "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", |  | ||||||
|       "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", |  | ||||||
|       "dev": true, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.6.0" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/proxy-from-env": { |     "node_modules/proxy-from-env": { | ||||||
|       "version": "1.0.0", |       "version": "1.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", |       "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", | ||||||
| @@ -1663,9 +1509,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/punycode": { |     "node_modules/punycode": { | ||||||
|       "version": "2.3.1", |       "version": "2.3.0", | ||||||
|       "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", |       "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", | ||||||
|       "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", |       "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">=6" |         "node": ">=6" | ||||||
| @@ -1686,12 +1532,6 @@ | |||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/querystringify": { |  | ||||||
|       "version": "2.2.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", |  | ||||||
|       "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", |  | ||||||
|       "dev": true |  | ||||||
|     }, |  | ||||||
|     "node_modules/request-progress": { |     "node_modules/request-progress": { | ||||||
|       "version": "3.0.0", |       "version": "3.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", |       "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", | ||||||
| @@ -1701,12 +1541,6 @@ | |||||||
|         "throttleit": "^1.0.0" |         "throttleit": "^1.0.0" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/requires-port": { |  | ||||||
|       "version": "1.0.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", |  | ||||||
|       "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", |  | ||||||
|       "dev": true |  | ||||||
|     }, |  | ||||||
|     "node_modules/restore-cursor": { |     "node_modules/restore-cursor": { | ||||||
|       "version": "3.1.0", |       "version": "3.1.0", | ||||||
|       "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", |       "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", | ||||||
| @@ -1721,9 +1555,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/rfdc": { |     "node_modules/rfdc": { | ||||||
|       "version": "1.3.1", |       "version": "1.3.0", | ||||||
|       "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", |       "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", | ||||||
|       "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", |       "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/rimraf": { |     "node_modules/rimraf": { | ||||||
| @@ -1777,9 +1611,9 @@ | |||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/semver": { |     "node_modules/semver": { | ||||||
|       "version": "7.6.0", |       "version": "7.5.1", | ||||||
|       "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", |       "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", | ||||||
|       "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", |       "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "lru-cache": "^6.0.0" |         "lru-cache": "^6.0.0" | ||||||
| @@ -1791,23 +1625,6 @@ | |||||||
|         "node": ">=10" |         "node": ">=10" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/set-function-length": { |  | ||||||
|       "version": "1.2.1", |  | ||||||
|       "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", |  | ||||||
|       "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "define-data-property": "^1.1.2", |  | ||||||
|         "es-errors": "^1.3.0", |  | ||||||
|         "function-bind": "^1.1.2", |  | ||||||
|         "get-intrinsic": "^1.2.3", |  | ||||||
|         "gopd": "^1.0.1", |  | ||||||
|         "has-property-descriptors": "^1.0.1" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/shebang-command": { |     "node_modules/shebang-command": { | ||||||
|       "version": "2.0.0", |       "version": "2.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", |       "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", | ||||||
| @@ -1830,18 +1647,14 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/side-channel": { |     "node_modules/side-channel": { | ||||||
|       "version": "1.0.5", |       "version": "1.0.4", | ||||||
|       "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", |       "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", | ||||||
|       "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", |       "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "call-bind": "^1.0.6", |         "call-bind": "^1.0.0", | ||||||
|         "es-errors": "^1.3.0", |         "get-intrinsic": "^1.0.2", | ||||||
|         "get-intrinsic": "^1.2.4", |         "object-inspect": "^1.9.0" | ||||||
|         "object-inspect": "^1.13.1" |  | ||||||
|       }, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 0.4" |  | ||||||
|       }, |       }, | ||||||
|       "funding": { |       "funding": { | ||||||
|         "url": "https://github.com/sponsors/ljharb" |         "url": "https://github.com/sponsors/ljharb" | ||||||
| @@ -1868,9 +1681,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/sshpk": { |     "node_modules/sshpk": { | ||||||
|       "version": "1.18.0", |       "version": "1.17.0", | ||||||
|       "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", |       "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", | ||||||
|       "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", |       "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "asn1": "~0.2.3", |         "asn1": "~0.2.3", | ||||||
| @@ -1943,13 +1756,10 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/throttleit": { |     "node_modules/throttleit": { | ||||||
|       "version": "1.0.1", |       "version": "1.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz", |       "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", | ||||||
|       "integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==", |       "integrity": "sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==", | ||||||
|       "dev": true, |       "dev": true | ||||||
|       "funding": { |  | ||||||
|         "url": "https://github.com/sponsors/sindresorhus" |  | ||||||
|       } |  | ||||||
|     }, |     }, | ||||||
|     "node_modules/through": { |     "node_modules/through": { | ||||||
|       "version": "2.3.8", |       "version": "2.3.8", | ||||||
| @@ -1957,11 +1767,6 @@ | |||||||
|       "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", |       "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/tinymce": { |  | ||||||
|       "version": "6.8.3", |  | ||||||
|       "resolved": "https://registry.npmjs.org/tinymce/-/tinymce-6.8.3.tgz", |  | ||||||
|       "integrity": "sha512-3fCHKAeqT+xNwBVESf6iDbDV0VNwZNmfrkx9c/6Gz5iB8piMfaO6s7FvoiTrj1hf1gVbfyLTnz1DooI6DhgINQ==" |  | ||||||
|     }, |  | ||||||
|     "node_modules/tmp": { |     "node_modules/tmp": { | ||||||
|       "version": "0.2.1", |       "version": "0.2.1", | ||||||
|       "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", |       "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", | ||||||
| @@ -1975,33 +1780,22 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/tough-cookie": { |     "node_modules/tough-cookie": { | ||||||
|       "version": "4.1.3", |       "version": "2.5.0", | ||||||
|       "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", |       "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", | ||||||
|       "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", |       "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", | ||||||
|       "dev": true, |       "dev": true, | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "psl": "^1.1.33", |         "psl": "^1.1.28", | ||||||
|         "punycode": "^2.1.1", |         "punycode": "^2.1.1" | ||||||
|         "universalify": "^0.2.0", |  | ||||||
|         "url-parse": "^1.5.3" |  | ||||||
|       }, |       }, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">=6" |         "node": ">=0.8" | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/tough-cookie/node_modules/universalify": { |  | ||||||
|       "version": "0.2.0", |  | ||||||
|       "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", |  | ||||||
|       "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", |  | ||||||
|       "dev": true, |  | ||||||
|       "engines": { |  | ||||||
|         "node": ">= 4.0.0" |  | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/tslib": { |     "node_modules/tslib": { | ||||||
|       "version": "2.6.2", |       "version": "2.5.1", | ||||||
|       "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", |       "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.1.tgz", | ||||||
|       "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", |       "integrity": "sha512-KaI6gPil5m9vF7DKaoXxx1ia9fxS4qG5YveErRRVknPDXXriu5M8h48YRjB6h5ZUOKuAKlSJYb0GaDe8I39fRw==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/tunnel-agent": { |     "node_modules/tunnel-agent": { | ||||||
| @@ -2035,9 +1829,10 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/universalify": { |     "node_modules/universalify": { | ||||||
|       "version": "2.0.1", |       "version": "2.0.0", | ||||||
|       "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", |       "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", | ||||||
|       "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", |       "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", | ||||||
|  |       "dev": true, | ||||||
|       "engines": { |       "engines": { | ||||||
|         "node": ">= 10.0.0" |         "node": ">= 10.0.0" | ||||||
|       } |       } | ||||||
| @@ -2051,16 +1846,6 @@ | |||||||
|         "node": ">=8" |         "node": ">=8" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/url-parse": { |  | ||||||
|       "version": "1.5.10", |  | ||||||
|       "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", |  | ||||||
|       "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", |  | ||||||
|       "dev": true, |  | ||||||
|       "dependencies": { |  | ||||||
|         "querystringify": "^2.1.1", |  | ||||||
|         "requires-port": "^1.0.0" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "node_modules/uuid": { |     "node_modules/uuid": { | ||||||
|       "version": "8.3.2", |       "version": "8.3.2", | ||||||
|       "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", |       "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", | ||||||
|   | |||||||
							
								
								
									
										11
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								package.json
									
									
									
									
									
								
							| @@ -1,17 +1,8 @@ | |||||||
| { | { | ||||||
|   "scripts": { |   "scripts": { | ||||||
|     "cypress:open": "cypress open", |     "cypress:open": "cypress open" | ||||||
|     "postinstall": "node ./npm-post-install.js" |  | ||||||
|   }, |   }, | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "cypress": "^12.12.0" |     "cypress": "^12.12.0" | ||||||
|   }, |  | ||||||
|   "dependencies": { |  | ||||||
|     "@tinymce/tinymce-jquery": "^2.1.0", |  | ||||||
|     "bootstrap": "^4.6.2", |  | ||||||
|     "fs-extra": "^11.2.0", |  | ||||||
|     "jquery": "^3.7.1", |  | ||||||
|     "jquery-ui": "^1.13.2", |  | ||||||
|     "tinymce": "^6.8.3" |  | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -1,13 +0,0 @@ | |||||||
| <?php |  | ||||||
|  |  | ||||||
| require __DIR__ . '/system/libs/pot/OTS.php'; |  | ||||||
| $ots = POT::getInstance(); |  | ||||||
|  |  | ||||||
| require __DIR__ . '/system/libs/pot/InvitesDriver.php'; |  | ||||||
| require __DIR__ . '/system/libs/rfc6238.php'; |  | ||||||
| require __DIR__ . '/common.php'; |  | ||||||
|  |  | ||||||
| const ACTION = ''; |  | ||||||
| const PAGE = ''; |  | ||||||
| const URI = ''; |  | ||||||
| define('SELF_NAME', basename(__FILE__)); |  | ||||||
							
								
								
									
										39
									
								
								phpstan.neon
									
									
									
									
									
								
							
							
						
						
									
										39
									
								
								phpstan.neon
									
									
									
									
									
								
							| @@ -1,39 +0,0 @@ | |||||||
| parameters: |  | ||||||
| 	level: 3 |  | ||||||
| 	paths: |  | ||||||
| 		- . |  | ||||||
| 		- templates/tibiacom |  | ||||||
| 		- templates/kathrine |  | ||||||
| 	excludePaths: |  | ||||||
| 		- system/cache/* |  | ||||||
| 		- vendor/* |  | ||||||
| 		- plugins/* |  | ||||||
| 		- system/libs |  | ||||||
| 		- tools/signature/mango.php |  | ||||||
| 		- tools/signature/gd.class.php |  | ||||||
| 	bootstrapFiles: |  | ||||||
| 		- phpstan-bootstrap.php |  | ||||||
| 	ignoreErrors: |  | ||||||
| 		- '#Variable \$db might not be defined#' |  | ||||||
| 		- '#Variable \$twig might not be defined#' |  | ||||||
| 		- '#Variable \$hooks might not be defined#' |  | ||||||
| 		- '#Variable \$account_logged might not be defined#' |  | ||||||
| 		- '#Variable \$logged might not be defined#' |  | ||||||
| 		- '#Variable \$config might not be defined#' |  | ||||||
| 		- '#Variable \$action might not be defined#' |  | ||||||
| 		- '#Variable \$errors might not be defined#' |  | ||||||
| 		- '#Variable \$cache might not be defined#' |  | ||||||
| 		- '#Variable \$status might not be defined#' |  | ||||||
| 		- '#Variable \$player might not be defined#' |  | ||||||
| 		- '#Variable \$guild might not be defined#' |  | ||||||
| 		- '#Variable \$[a-zA-Z0-9\\_]+ might not be defined#' |  | ||||||
| 		# Eloquent models |  | ||||||
| 		- '#Call to an undefined static method [a-zA-Z0-9\\_]+::[a-zA-Z0-9\\_]+\(\)#' |  | ||||||
| 		- '#Call to an undefined method object::toArray\(\)#' |  | ||||||
| 		# system/pages/highscores.php |  | ||||||
| 		- '#Call to an undefined method Illuminate\\Database\\Query\\Builder::withOnlineStatus\(\)#' |  | ||||||
| 		- '#Access to an undefined property Illuminate\\Database\\Eloquent\\Model::\$online_status#' |  | ||||||
| 		- '#Access to an undefined property Illuminate\\Database\\Eloquent\\Model::\$vocation_name#' |  | ||||||
| 		- |  | ||||||
| 			message: '#Variable \$tmp in empty\(\) always exists and is always falsy#' |  | ||||||
| 			path: templates\kathrine\javascript.php |  | ||||||
| @@ -1,6 +1,8 @@ | |||||||
| <?php | <?php | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
|  | $reward = setting('core.account_mail_confirmed_reward'); | ||||||
|  |  | ||||||
| $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | $hasCoinsColumn = $db->hasColumn('accounts', 'coins'); | ||||||
| $rewardCoins = setting('core.account_mail_confirmed_reward_coins'); | $rewardCoins = setting('core.account_mail_confirmed_reward_coins'); | ||||||
| if ($rewardCoins > 0 && !$hasCoinsColumn) { | if ($rewardCoins > 0 && !$hasCoinsColumn) { | ||||||
|   | |||||||
| @@ -25,8 +25,7 @@ | |||||||
| 	"hooks": { | 	"hooks": { | ||||||
| 		"Example Hook": { | 		"Example Hook": { | ||||||
| 			"type": "BEFORE_PAGE", | 			"type": "BEFORE_PAGE", | ||||||
| 			"file": "plugins/example/before.php", | 			"file": "plugins/example/before.php" | ||||||
| 			"priority": 1000 |  | ||||||
| 		} | 		} | ||||||
| 	}, | 	}, | ||||||
| 	"routes": { | 	"routes": { | ||||||
| @@ -34,20 +33,12 @@ | |||||||
| 			"pattern": "/YourAwesomePage/{name:string}/{page:int}", | 			"pattern": "/YourAwesomePage/{name:string}/{page:int}", | ||||||
| 			"file": "plugins/your-plugin/your-awesome-page.php", | 			"file": "plugins/your-plugin/your-awesome-page.php", | ||||||
| 			"method": "GET", | 			"method": "GET", | ||||||
| 			"priority": 130 | 			"priority": "130" | ||||||
| 		}, | 		}, | ||||||
| 		"Redirect Example": { | 		"Redirect Example": { | ||||||
| 			"redirect_from": "/redirectExample", | 			"redirect_from": "/redirectExample", | ||||||
| 			"redirect_to": "account/manage" | 			"redirect_to": "account/manage" | ||||||
| 		} | 		} | ||||||
| 	}, | 	}, | ||||||
| 	"routes-default-priority": 1000, | 	"settings": "plugins/your-plugin-folder/settings.php" | ||||||
| 	"pages-default-priority": 1000, |  | ||||||
| 	"settings": "plugins/your-plugin-folder/settings.php", |  | ||||||
| 	"autoload": { |  | ||||||
| 		"pages": true, |  | ||||||
| 		"pagesSubFolders": false, |  | ||||||
| 		"commands": true, |  | ||||||
| 		"themes": true |  | ||||||
| 	} |  | ||||||
|  } |  } | ||||||
|   | |||||||
| @@ -38,11 +38,7 @@ if [ $1 = "prepare" ]; then | |||||||
| 	cd $dir || exit | 	cd $dir || exit | ||||||
|  |  | ||||||
| 	# dependencies | 	# dependencies | ||||||
| 	composer install --no-dev --prefer-dist --optimize-autoloader | 	composer install --no-dev | ||||||
| 	npm install |  | ||||||
|  |  | ||||||
| 	# node_modules is useless, we already have copy in tools/ext |  | ||||||
| 	rm -R node_modules |  | ||||||
|  |  | ||||||
| 	echo "Now you can make changes to $dir. When you are ready, type 'release.sh pack'" | 	echo "Now you can make changes to $dir. When you are ready, type 'release.sh pack'" | ||||||
| 	exit | 	exit | ||||||
|   | |||||||
							
								
								
									
										18
									
								
								system/bin/clear_cache.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								system/bin/clear_cache.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | if(PHP_SAPI !== 'cli') { | ||||||
|  | 	echo 'This script can be run only in command line mode.'; | ||||||
|  | 	exit(1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | require_once __DIR__ . '/../../common.php'; | ||||||
|  | require_once SYSTEM . 'functions.php'; | ||||||
|  | require_once SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
|  | if(clearCache()) { | ||||||
|  | 	echo 'Cache cleared.' . PHP_EOL; | ||||||
|  | } | ||||||
|  | else { | ||||||
|  | 	echo 'Unexpected error.' . PHP_EOL; | ||||||
|  | 	exit(2); | ||||||
|  | } | ||||||
							
								
								
									
										19
									
								
								system/bin/cronjob.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								system/bin/cronjob.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | require_once __DIR__ . '/../../common.php'; | ||||||
|  | require_once SYSTEM . 'functions.php'; | ||||||
|  | require_once SYSTEM . 'init.php'; | ||||||
|  | require_once SYSTEM . 'hooks.php'; | ||||||
|  |  | ||||||
|  | $hooks = new Hooks(); | ||||||
|  | $hooks->load(); | ||||||
|  |  | ||||||
|  | use GO\Scheduler; | ||||||
|  |  | ||||||
|  | // Create a new scheduler | ||||||
|  | $scheduler = new Scheduler(); | ||||||
|  |  | ||||||
|  | $hooks->trigger(HOOK_CRONJOB, ['scheduler' => $scheduler]); | ||||||
|  |  | ||||||
|  | // Let the scheduler execute jobs which are due. | ||||||
|  | $scheduler->run(); | ||||||
							
								
								
									
										50
									
								
								system/bin/install_cronjob.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								system/bin/install_cronjob.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | require_once __DIR__ . '/../../common.php'; | ||||||
|  | require_once SYSTEM . 'functions.php'; | ||||||
|  | require_once SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
|  | if(!IS_CLI) { | ||||||
|  | 	echo 'This script can be run only in command line mode.' . PHP_EOL; | ||||||
|  | 	exit(1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if (MYAAC_OS !== 'LINUX') { | ||||||
|  | 	echo 'This script can be run only on linux.' . PHP_EOL; | ||||||
|  | 	exit(1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | $job = '* * * * * /usr/bin/php ' . SYSTEM . 'bin/cronjob.php >> ' . SYSTEM . 'logs/cron.log 2>&1'; | ||||||
|  |  | ||||||
|  | if (cronjob_exists($job)) { | ||||||
|  | 	echo 'MyAAC cronjob already installed.' . PHP_EOL; | ||||||
|  | 	exit(0); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | exec ('crontab -l', $content); | ||||||
|  |  | ||||||
|  | $content = implode(' ', $content); | ||||||
|  | $content .= PHP_EOL . $job; | ||||||
|  |  | ||||||
|  | file_put_contents(CACHE . 'cronjob', $content . PHP_EOL); | ||||||
|  | exec('crontab ' . CACHE. 'cronjob'); | ||||||
|  |  | ||||||
|  | echo 'Installed crontab successfully.' . PHP_EOL; | ||||||
|  |  | ||||||
|  | function cronjob_exists($command) | ||||||
|  | { | ||||||
|  | 	$cronjob_exists=false; | ||||||
|  |  | ||||||
|  | 	exec('crontab -l', $crontab); | ||||||
|  | 	if(isset($crontab)&&is_array($crontab)) { | ||||||
|  |  | ||||||
|  | 		$crontab = array_flip($crontab); | ||||||
|  |  | ||||||
|  | 		if(isset($crontab[$command])){ | ||||||
|  | 			$cronjob_exists = true; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return $cronjob_exists; | ||||||
|  | } | ||||||
							
								
								
									
										42
									
								
								system/bin/install_plugin.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								system/bin/install_plugin.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,42 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | if(PHP_SAPI !== 'cli') { | ||||||
|  | 	echo 'This script can be run only in command line mode.'; | ||||||
|  | 	exit(1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | require_once __DIR__ . '/../../common.php'; | ||||||
|  | require_once SYSTEM . 'functions.php'; | ||||||
|  | require_once SYSTEM . 'init.php'; | ||||||
|  | require_once SYSTEM . 'hooks.php'; | ||||||
|  | require_once LIBS . 'plugins.php'; | ||||||
|  |  | ||||||
|  | if($argc !== 2) { | ||||||
|  | 	echo 'This command expects one parameter: zip file name (plugin)' . PHP_EOL; | ||||||
|  | 	exit(2); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | $path_to_file = $argv[1]; | ||||||
|  | $ext = strtolower(pathinfo($path_to_file, PATHINFO_EXTENSION)); | ||||||
|  | if($ext !== 'zip') {// check if it is zipped/compressed file | ||||||
|  | 	echo 'Please install only .zip files.' . PHP_EOL; | ||||||
|  | 	exit(3); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(!file_exists($path_to_file)) { | ||||||
|  | 	echo 'ERROR: File ' . $path_to_file . ' does not exist' . PHP_EOL; | ||||||
|  | 	exit(4); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(Plugins::install($path_to_file)) { | ||||||
|  | 	foreach(Plugins::getWarnings() as $warning) { | ||||||
|  | 		echo 'WARNING: ' . $warning; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	$info = Plugins::getPluginJson(); | ||||||
|  | 	echo (isset($info['name']) ? $info['name'] . ' p' : 'P') . 'lugin has been successfully installed.' . PHP_EOL; | ||||||
|  | } | ||||||
|  | else { | ||||||
|  | 	echo 'ERROR: ' . Plugins::getError() . PHP_EOL; | ||||||
|  | 	exit(5); | ||||||
|  | } | ||||||
							
								
								
									
										61
									
								
								system/bin/send_email.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										61
									
								
								system/bin/send_email.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,61 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | if(PHP_SAPI !== 'cli') { | ||||||
|  | 	echo 'This script can be run only in command line mode.'; | ||||||
|  | 	exit(1); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | require_once __DIR__ . '/../../common.php'; | ||||||
|  | require_once SYSTEM . 'functions.php'; | ||||||
|  | require_once SYSTEM . 'init.php'; | ||||||
|  |  | ||||||
|  | if($argc !== 3) { | ||||||
|  | 	echo 'This command expects two parameters: account_name_or_id|player_name|email address, subject.' . PHP_EOL; | ||||||
|  | 	exit(2); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | $email_account_name = $argv[1]; | ||||||
|  | $subject = $argv[2]; | ||||||
|  | $message = file_get_contents('php://stdin'); | ||||||
|  |  | ||||||
|  | if(strpos($email_account_name, '@') === false) { | ||||||
|  | 	$account = new OTS_Account(); | ||||||
|  | 	if(USE_ACCOUNT_NAME) { | ||||||
|  | 		$account->find($email_account_name); | ||||||
|  | 	} | ||||||
|  | 	else { | ||||||
|  | 		$account->load($email_account_name); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	if($account->isLoaded()) { | ||||||
|  | 		$email_account_name = $account->getEMail(); | ||||||
|  | 	} | ||||||
|  | 	else { | ||||||
|  | 		$player = new OTS_Player(); | ||||||
|  | 		$player->find($email_account_name); | ||||||
|  | 		if($player->isLoaded()) { | ||||||
|  | 			$email_account_name = $player->getAccount()->getEMail(); | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			echo 'Cannot find player or account with name: ' . $email_account_name . '.' . PHP_EOL; | ||||||
|  | 			exit(3); | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(!Validator::email($email_account_name)) { | ||||||
|  | 	echo 'Invalid E-Mail format.' . PHP_EOL; | ||||||
|  | 	exit(4); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(strlen($subject) > 255) { | ||||||
|  | 	echo 'Subject max length is 255 characters.' . PHP_EOL; | ||||||
|  | 	exit(5); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | if(!_mail($email_account_name, $subject, $message)) { | ||||||
|  | 	echo 'An error occurred while sending email. More info can be found in system/logs/mailer-error.log'; | ||||||
|  | 	exit(6); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | echo 'Mail sent to ' . $email_account_name . '.' . PHP_EOL; | ||||||
| @@ -99,14 +99,4 @@ $config['clients'] = [ | |||||||
| 	1291, | 	1291, | ||||||
|  |  | ||||||
| 	1300, | 	1300, | ||||||
| 	1310, |  | ||||||
| 	1311, |  | ||||||
| 	1312, |  | ||||||
| 	1316, |  | ||||||
| 	1320, |  | ||||||
| 	1321, |  | ||||||
| 	1322, |  | ||||||
| 	1330, |  | ||||||
| 	1332, |  | ||||||
| 	1340, |  | ||||||
| ]; | ]; | ||||||
|   | |||||||
| @@ -9,12 +9,10 @@ | |||||||
|  */ |  */ | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| class Validator extends \MyAAC\Validator {} |  | ||||||
|  |  | ||||||
| function check_name($name, &$errors = '') { | function check_name($name, &$errors = '') { | ||||||
| 	if(Validator::characterName($name)) | 	if(Validator::characterName($name)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -22,7 +20,7 @@ function check_name($name, &$errors = '') { | |||||||
| function check_account_id($id, &$errors = '') { | function check_account_id($id, &$errors = '') { | ||||||
| 	if(Validator::accountId($id)) | 	if(Validator::accountId($id)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -30,7 +28,7 @@ function check_account_id($id, &$errors = '') { | |||||||
| function check_account_name($name, &$errors = '') { | function check_account_name($name, &$errors = '') { | ||||||
| 	if(Validator::accountName($name)) | 	if(Validator::accountName($name)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -38,7 +36,7 @@ function check_account_name($name, &$errors = '') { | |||||||
| function check_name_new_char($name, &$errors = '') { | function check_name_new_char($name, &$errors = '') { | ||||||
| 	if(Validator::newCharacterName($name)) | 	if(Validator::newCharacterName($name)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -46,7 +44,7 @@ function check_name_new_char($name, &$errors = '') { | |||||||
| function check_rank_name($name, &$errors = '') { | function check_rank_name($name, &$errors = '') { | ||||||
| 	if(Validator::rankName($name)) | 	if(Validator::rankName($name)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -54,7 +52,7 @@ function check_rank_name($name, &$errors = '') { | |||||||
| function check_guild_name($name, &$errors = '') { | function check_guild_name($name, &$errors = '') { | ||||||
| 	if(Validator::guildName($name)) | 	if(Validator::guildName($name)) | ||||||
| 		return true; | 		return true; | ||||||
|  | 	 | ||||||
| 	$errors = Validator::getLastError(); | 	$errors = Validator::getLastError(); | ||||||
| 	return false; | 	return false; | ||||||
| } | } | ||||||
| @@ -74,7 +72,4 @@ function fieldExist($field, $table) | |||||||
| 	global $db; | 	global $db; | ||||||
| 	return $db->hasColumn($table, $field); | 	return $db->hasColumn($table, $field); | ||||||
| } | } | ||||||
|  | ?> | ||||||
| function getCreatureImgPath($creature): string { |  | ||||||
| 	return getMonsterImgPath($creature); |  | ||||||
| } |  | ||||||
| @@ -36,5 +36,3 @@ class Guild extends OTS_Guild { | |||||||
| } | } | ||||||
| class GuildRank extends OTS_GuildRank {} | class GuildRank extends OTS_GuildRank {} | ||||||
| class House extends OTS_House {} | class House extends OTS_House {} | ||||||
|  |  | ||||||
| class Cache extends \MyAAC\Cache\Cache {} |  | ||||||
|   | |||||||
| @@ -44,7 +44,7 @@ switch($page) | |||||||
| 		break; | 		break; | ||||||
|  |  | ||||||
| 	case 'killstatistics': | 	case 'killstatistics': | ||||||
| 		$page = 'last-kills'; | 		$page = 'lastkills'; | ||||||
| 		break; | 		break; | ||||||
|  |  | ||||||
| 	case 'buypoints': | 	case 'buypoints': | ||||||
|   | |||||||
| @@ -7,9 +7,6 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| define('COUNTER_SYNC', 10); // how often counter is synchronized with database (each x site refreshes) | define('COUNTER_SYNC', 10); // how often counter is synchronized with database (each x site refreshes) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -106,7 +106,6 @@ try { | |||||||
| 		'persistent' => @$config['database_persistent'] | 		'persistent' => @$config['database_persistent'] | ||||||
| 	)); | 	)); | ||||||
|  |  | ||||||
| 	global $db; |  | ||||||
| 	$db = POT::getInstance()->getDBHandle(); | 	$db = POT::getInstance()->getDBHandle(); | ||||||
| 	$capsule = new Capsule; | 	$capsule = new Capsule; | ||||||
| 	$capsule->addConnection([ | 	$capsule->addConnection([ | ||||||
| @@ -128,7 +127,6 @@ try { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if(defined('MYAAC_INSTALL')) { | 	if(defined('MYAAC_INSTALL')) { | ||||||
| 		$error = $e->getMessage(); |  | ||||||
| 		return; // installer will take care of this | 		return; // installer will take care of this | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|   | |||||||
| @@ -8,8 +8,6 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use MyAAC\Exceptions\SensitiveException; |  | ||||||
|  |  | ||||||
| if (class_exists(\Whoops\Run::class)) { | if (class_exists(\Whoops\Run::class)) { | ||||||
| 	$whoops = new \Whoops\Run; | 	$whoops = new \Whoops\Run; | ||||||
| 	if(IS_CLI) { | 	if(IS_CLI) { | ||||||
| @@ -23,6 +21,8 @@ if (class_exists(\Whoops\Run::class)) { | |||||||
| 	return; | 	return; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | require LIBS . 'SensitiveException.php'; | ||||||
|  |  | ||||||
| /** | /** | ||||||
|  * @param Exception $exception |  * @param Exception $exception | ||||||
|  */ |  */ | ||||||
|   | |||||||
| @@ -9,17 +9,11 @@ | |||||||
|  */ |  */ | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\CsrfToken; |  | ||||||
| use MyAAC\Items; |  | ||||||
| use MyAAC\Models\Config; | use MyAAC\Models\Config; | ||||||
| use MyAAC\Models\Guild; | use MyAAC\Models\Guild; | ||||||
| use MyAAC\Models\House; | use MyAAC\Models\House; | ||||||
| use MyAAC\Models\Pages; | use MyAAC\Models\Pages; | ||||||
| use MyAAC\Models\Player; | use MyAAC\Models\Player; | ||||||
| use MyAAC\News; |  | ||||||
| use MyAAC\Plugins; |  | ||||||
| use MyAAC\Settings; |  | ||||||
| use PHPMailer\PHPMailer\PHPMailer; | use PHPMailer\PHPMailer\PHPMailer; | ||||||
| use Twig\Loader\ArrayLoader as Twig_ArrayLoader; | use Twig\Loader\ArrayLoader as Twig_ArrayLoader; | ||||||
|  |  | ||||||
| @@ -49,10 +43,7 @@ function warning($message, $return = false) { | |||||||
| 	return message($message, 'warning', $return); | 	return message($message, 'warning', $return); | ||||||
| } | } | ||||||
| function note($message, $return = false) { | function note($message, $return = false) { | ||||||
| 	return info($message, $return); | 	return message($message, 'note', $return); | ||||||
| } |  | ||||||
| function info($message, $return = false) { |  | ||||||
| 	return message($message, 'info', $return); |  | ||||||
| } | } | ||||||
| function error($message, $return = false) { | function error($message, $return = false) { | ||||||
| 	return message($message, ((defined('MYAAC_INSTALL') || defined('MYAAC_ADMIN')) ? 'danger' : 'error'), $return); | 	return message($message, ((defined('MYAAC_INSTALL') || defined('MYAAC_ADMIN')) ? 'danger' : 'error'), $return); | ||||||
| @@ -87,41 +78,25 @@ function getForumBoardLink($board_id, $page = NULL): string { | |||||||
| 	return BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'forum/board/' . (int)$board_id . (isset($page) ? '/' . $page : ''); | 	return BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'forum/board/' . (int)$board_id . (isset($page) ? '/' . $page : ''); | ||||||
| } | } | ||||||
|  |  | ||||||
| function getPlayerLink($name, $generate = true, bool $colored = false): string | function getPlayerLink($name, $generate = true): string | ||||||
| { | { | ||||||
| 	if (is_object($name) and $name instanceof OTS_Player) { | 	if(is_numeric($name)) | ||||||
| 		$player = $name; | 	{ | ||||||
| 	} |  | ||||||
| 	else { |  | ||||||
| 		$player = new OTS_Player(); | 		$player = new OTS_Player(); | ||||||
|  | 		$player->load((int)$name); | ||||||
| 		if(is_numeric($name)) { | 		if($player->isLoaded()) | ||||||
| 			$player->load((int)$name); | 			$name = $player->getName(); | ||||||
| 		} |  | ||||||
| 		else { |  | ||||||
| 			$player->find($name); |  | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if (!$player->isLoaded()) { |  | ||||||
| 		return '(error)'; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$name = $player->getName(); |  | ||||||
|  |  | ||||||
| 	$url = BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'characters/' . urlencode($name); | 	$url = BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'characters/' . urlencode($name); | ||||||
|  |  | ||||||
| 	if ($colored) { |  | ||||||
| 		$name = '<span style="color: ' . ($player->isOnline() ? 'green' : 'red') . ';">' . $name . '</span>'; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if(!$generate) return $url; | 	if(!$generate) return $url; | ||||||
| 	return generateLink($url, $name); | 	return generateLink($url, $name); | ||||||
| } | } | ||||||
|  |  | ||||||
| function getMonsterLink($name, $generate = true): string | function getMonsterLink($name, $generate = true): string | ||||||
| { | { | ||||||
| 	$url = BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'monsters/' . urlencode($name); | 	$url = BASE_URL . (setting('core.friendly_urls') ? '' : 'index.php/') . 'creatures/' . urlencode($name); | ||||||
|  |  | ||||||
| 	if(!$generate) return $url; | 	if(!$generate) return $url; | ||||||
| 	return generateLink($url, $name); | 	return generateLink($url, $name); | ||||||
| @@ -158,6 +133,7 @@ function getGuildLink($name, $generate = true): string | |||||||
| } | } | ||||||
|  |  | ||||||
| function getItemNameById($id) { | function getItemNameById($id) { | ||||||
|  | 	require_once LIBS . 'items.php'; | ||||||
| 	$item = Items::get($id); | 	$item = Items::get($id); | ||||||
| 	return !empty($item['name']) ? $item['name'] : ''; | 	return !empty($item['name']) ? $item['name'] : ''; | ||||||
| } | } | ||||||
| @@ -217,7 +193,7 @@ function getFlagImage($country): string | |||||||
|  * @param mixed $v Variable to check. |  * @param mixed $v Variable to check. | ||||||
|  * @return bool Value boolean status. |  * @return bool Value boolean status. | ||||||
|  */ |  */ | ||||||
| function getBoolean(mixed $v): bool | function getBoolean($v): bool | ||||||
| { | { | ||||||
| 	if(is_bool($v)) { | 	if(is_bool($v)) { | ||||||
| 		return $v; | 		return $v; | ||||||
| @@ -226,10 +202,6 @@ function getBoolean(mixed $v): bool | |||||||
| 	if(is_numeric($v)) | 	if(is_numeric($v)) | ||||||
| 		return (int)$v > 0; | 		return (int)$v > 0; | ||||||
|  |  | ||||||
| 	if (is_null($v)) { |  | ||||||
| 		return false; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	$v = strtolower($v); | 	$v = strtolower($v); | ||||||
| 	return $v === 'yes' || $v === 'true'; | 	return $v === 'yes' || $v === 'true'; | ||||||
| } | } | ||||||
| @@ -277,7 +249,7 @@ function generateRandomString($length, $lowCase = true, $upCase = false, $numeri | |||||||
| function getForumBoards() | function getForumBoards() | ||||||
| { | { | ||||||
| 	global $db, $canEdit; | 	global $db, $canEdit; | ||||||
| 	$sections = $db->query('SELECT `id`, `name`, `description`, `closed`, `guild`, `access`' . ($canEdit ? ', `hide`, `ordering`' : '') . ' FROM `' . TABLE_PREFIX . 'forum_boards` ' . (!$canEdit ? ' WHERE `hide` != 1' : '') . | 	$sections = $db->query('SELECT `id`, `name`, `description`, `closed`, `guild`, `access`' . ($canEdit ? ', `hidden`, `ordering`' : '') . ' FROM `' . TABLE_PREFIX . 'forum_boards` ' . (!$canEdit ? ' WHERE `hidden` != 1' : '') . | ||||||
| 		' ORDER BY `ordering`;'); | 		' ORDER BY `ordering`;'); | ||||||
| 	if($sections) | 	if($sections) | ||||||
| 		return $sections->fetchAll(); | 		return $sections->fetchAll(); | ||||||
| @@ -434,10 +406,7 @@ function delete_guild($id) | |||||||
| 	if(count($rank_list) > 0) { | 	if(count($rank_list) > 0) { | ||||||
| 		$rank_list->orderBy('level'); | 		$rank_list->orderBy('level'); | ||||||
|  |  | ||||||
| 		global $db; | 		global $db, $ots; | ||||||
| 		/** |  | ||||||
| 		 * @var OTS_GuildRank $rank_in_guild |  | ||||||
| 		 */ |  | ||||||
| 		foreach($rank_list as $rank_in_guild) { | 		foreach($rank_list as $rank_in_guild) { | ||||||
| 			if($db->hasTable('guild_members')) | 			if($db->hasTable('guild_members')) | ||||||
| 				$players_with_rank = $db->query('SELECT `players`.`id` as `id`, `guild_members`.`rank_id` as `rank_id` FROM `players`, `guild_members` WHERE `guild_members`.`rank_id` = ' . $rank_in_guild->getId() . ' AND `players`.`id` = `guild_members`.`player_id` ORDER BY `name`;'); | 				$players_with_rank = $db->query('SELECT `players`.`id` as `id`, `guild_members`.`rank_id` as `rank_id` FROM `players`, `guild_members` WHERE `guild_members`.`rank_id` = ' . $rank_in_guild->getId() . ' AND `players`.`id` = `guild_members`.`player_id` ORDER BY `name`;'); | ||||||
| @@ -496,30 +465,20 @@ function tickers() | |||||||
|  */ |  */ | ||||||
| function template_place_holder($type): string | function template_place_holder($type): string | ||||||
| { | { | ||||||
| 	global $twig, $template_place_holders, $debugBar; | 	global $twig, $template_place_holders; | ||||||
| 	$ret = ''; | 	$ret = ''; | ||||||
|  |  | ||||||
| 	if (isset($debugBar)) { |  | ||||||
| 		$debugBarRenderer = $debugBar->getJavascriptRenderer(); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	if(array_key_exists($type, $template_place_holders) && is_array($template_place_holders[$type])) | 	if(array_key_exists($type, $template_place_holders) && is_array($template_place_holders[$type])) | ||||||
| 		$ret = implode($template_place_holders[$type]); | 		$ret = implode($template_place_holders[$type]); | ||||||
|  |  | ||||||
| 	if($type === 'head_start') { | 	if($type === 'head_start') { | ||||||
| 		$ret .= template_header(); | 		$ret .= template_header(); | ||||||
| 		if (isset($debugBar)) { |  | ||||||
| 			$ret .= $debugBarRenderer->renderHead(); |  | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
| 	elseif ($type === 'body_start') { | 	elseif ($type === 'body_start') { | ||||||
| 		$ret .= $twig->render('browsehappy.html.twig'); | 		$ret .= $twig->render('browsehappy.html.twig'); | ||||||
| 	} | 	} | ||||||
| 	elseif($type === 'body_end') { | 	elseif($type === 'body_end') { | ||||||
| 		$ret .= template_ga_code(); | 		$ret .= template_ga_code(); | ||||||
| 		if (isset($debugBar)) { |  | ||||||
| 			$ret .= $debugBarRenderer->render(); |  | ||||||
| 		} |  | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	return $ret; | 	return $ret; | ||||||
| @@ -729,8 +688,11 @@ function getSkillName($skillId, $suffix = true) | |||||||
| /** | /** | ||||||
|  * Performs flag check on the current logged in user. |  * Performs flag check on the current logged in user. | ||||||
|  * Table in database: accounts, field: website_flags |  * Table in database: accounts, field: website_flags | ||||||
|  |  * | ||||||
|  |  * @param int @flag Flag to be verified. | ||||||
|  |  * @return bool If user got flag. | ||||||
|  */ |  */ | ||||||
| function hasFlag(int $flag): bool { | function hasFlag($flag) { | ||||||
| 	global $logged, $logged_flags; | 	global $logged, $logged_flags; | ||||||
| 	return ($logged && ($logged_flags & $flag) == $flag); | 	return ($logged && ($logged_flags & $flag) == $flag); | ||||||
| } | } | ||||||
| @@ -803,7 +765,7 @@ function get_browser_languages() | |||||||
| 	$languages = str_replace(' ', '', $languages); | 	$languages = str_replace(' ', '', $languages); | ||||||
|  |  | ||||||
| 	foreach(explode(',', $languages) as $language_list) | 	foreach(explode(',', $languages) as $language_list) | ||||||
| 		$ret[] = substr($language_list, 0, 2); | 		$ret[] .= substr($language_list, 0, 2); | ||||||
|  |  | ||||||
| 	return $ret; | 	return $ret; | ||||||
| } | } | ||||||
| @@ -822,10 +784,6 @@ function get_templates() | |||||||
| 			$ret[] = $file; | 			$ret[] = $file; | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	foreach (Plugins::getThemes() as $name => $path) { |  | ||||||
| 		$ret[] = $name; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return $ret; | 	return $ret; | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -897,6 +855,9 @@ function _mail($to, $subject, $body, $altBody = '', $add_html_tags = true) | |||||||
| 	else | 	else | ||||||
| 		$tmp_body = $body . '<br/><br/>' . $signature_html; | 		$tmp_body = $body . '<br/><br/>' . $signature_html; | ||||||
|  |  | ||||||
|  | 	define('MAIL_MAIL', 0); | ||||||
|  | 	define('MAIL_SMTP', 1); | ||||||
|  |  | ||||||
| 	$mailOption = setting('core.mail_option'); | 	$mailOption = setting('core.mail_option'); | ||||||
| 	if($mailOption == MAIL_SMTP) | 	if($mailOption == MAIL_SMTP) | ||||||
| 	{ | 	{ | ||||||
| @@ -907,6 +868,10 @@ function _mail($to, $subject, $body, $altBody = '', $add_html_tags = true) | |||||||
| 		$mailer->Username = setting('core.smtp_user'); | 		$mailer->Username = setting('core.smtp_user'); | ||||||
| 		$mailer->Password = setting('core.smtp_pass'); | 		$mailer->Password = setting('core.smtp_pass'); | ||||||
|  |  | ||||||
|  | 		define('SMTP_SECURITY_NONE', 0); | ||||||
|  | 		define('SMTP_SECURITY_SSL', 1); | ||||||
|  | 		define('SMTP_SECURITY_TLS', 2); | ||||||
|  |  | ||||||
| 		$security = setting('core.smtp_security'); | 		$security = setting('core.smtp_security'); | ||||||
|  |  | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| @@ -1046,7 +1011,7 @@ function load_config_lua($filename) | |||||||
| 	return $result; | 	return $result; | ||||||
| } | } | ||||||
|  |  | ||||||
| function str_replace_first($search,$replace, $subject) { | function str_replace_first($search, $replace, $subject) { | ||||||
| 	$pos = strpos($subject, $search); | 	$pos = strpos($subject, $search); | ||||||
| 	if ($pos !== false) { | 	if ($pos !== false) { | ||||||
| 		return substr_replace($subject, $replace, $pos, strlen($search)); | 		return substr_replace($subject, $replace, $pos, strlen($search)); | ||||||
| @@ -1080,28 +1045,6 @@ function unsetSession($key) { | |||||||
| 	unset($_SESSION[setting('core.session_prefix') . $key]); | 	unset($_SESSION[setting('core.session_prefix') . $key]); | ||||||
| } | } | ||||||
|  |  | ||||||
| function csrf(bool $return = false): string { |  | ||||||
| 	return CsrfToken::create($return); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function csrfToken(): string { |  | ||||||
| 	return CsrfToken::get(); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function isValidToken(): bool { |  | ||||||
| 	$token = $_POST['csrf_token'] ?? $_SERVER['HTTP_X_CSRF_TOKEN'] ?? null; |  | ||||||
| 	return (!isRequestMethod('post') || (isset($token) && CsrfToken::isValid($token))); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function csrfProtect(): void |  | ||||||
| { |  | ||||||
| 	if (!isValidToken()) { |  | ||||||
| 		$lastUri = BASE_URL . str_replace_first('/', '', getSession('last_uri')); |  | ||||||
| 		echo 'Request has been cancelled due to security reasons - token is invalid. Go <a href="' . $lastUri . '">back</a>'; |  | ||||||
| 		exit(); |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function getTopPlayers($limit = 5) { | function getTopPlayers($limit = 5) { | ||||||
| 	global $db; | 	global $db; | ||||||
|  |  | ||||||
| @@ -1219,70 +1162,64 @@ function setting($key) | |||||||
|  |  | ||||||
| function clearCache() | function clearCache() | ||||||
| { | { | ||||||
|  | 	require_once LIBS . 'news.php'; | ||||||
| 	News::clearCache(); | 	News::clearCache(); | ||||||
|  |  | ||||||
| 	$cache = Cache::getInstance(); | 	$cache = Cache::getInstance(); | ||||||
|  |  | ||||||
| 	if($cache->enabled()) { | 	if($cache->enabled()) { | ||||||
| 		$keysToClear = [ | 		$tmp = ''; | ||||||
| 			'status', 'templates', |  | ||||||
| 			'config_lua', |  | ||||||
| 			'towns', 'groups', 'vocations', |  | ||||||
| 			'visitors', 'views_counter', 'failed_logins', |  | ||||||
| 			'template_menus', |  | ||||||
| 			'last_kills', |  | ||||||
| 			'hooks', 'plugins_hooks', 'plugins_routes', 'plugins_settings', 'plugins_themes', 'plugins_commands', |  | ||||||
| 			'settings', |  | ||||||
| 		]; |  | ||||||
|  |  | ||||||
| 		foreach (get_templates() as $template) { | 		if ($cache->fetch('status', $tmp)) | ||||||
| 			$keysToClear[] = 'template_ini_' . $template; | 			$cache->delete('status'); | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		// highscores cache | 		if ($cache->fetch('templates', $tmp)) | ||||||
| 		$configHighscoresPerPage = setting('core.highscores_per_page'); | 			$cache->delete('templates'); | ||||||
| 		$skills = [POT::SKILL_FIST, POT::SKILL_CLUB, POT::SKILL_SWORD, POT::SKILL_AXE, POT::SKILL_DIST, POT::SKILL_SHIELD, POT::SKILL_FISH, POT::SKILL_LEVEL, POT::SKILL__MAGLEVEL, SKILL_FRAGS, SKILL_BALANCE]; |  | ||||||
| 		foreach ($skills as $skill) { |  | ||||||
| 			// config('vocations') may be empty after previous cache clear |  | ||||||
| 			$vocations = (config('vocations') ?? []) + ['all']; |  | ||||||
| 			foreach ($vocations as $vocation) { |  | ||||||
| 				for($page = 0; $page < 10; $page++) { |  | ||||||
| 					$cacheKey = 'highscores_' . $skill . '_' . strtolower($vocation) . '_' . $page . '_' . $configHighscoresPerPage; |  | ||||||
| 					$keysToClear[] = $cacheKey; |  | ||||||
| 				} |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		foreach ($keysToClear as $item) { | 		if ($cache->fetch('config_lua', $tmp)) | ||||||
| 			$tmp = ''; | 			$cache->delete('config_lua'); | ||||||
| 			if ($cache->fetch($item, $tmp)) { |  | ||||||
| 				$cache->delete($item); |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
|  |  | ||||||
| 		global $db; | 		if ($cache->fetch('vocations', $tmp)) | ||||||
| 		$db->setClearCacheAfter(true); | 			$cache->delete('vocations'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('towns', $tmp)) | ||||||
|  | 			$cache->delete('towns'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('groups', $tmp)) | ||||||
|  | 			$cache->delete('groups'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('visitors', $tmp)) | ||||||
|  | 			$cache->delete('visitors'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('views_counter', $tmp)) | ||||||
|  | 			$cache->delete('views_counter'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('failed_logins', $tmp)) | ||||||
|  | 			$cache->delete('failed_logins'); | ||||||
|  |  | ||||||
|  | 		global $template_name; | ||||||
|  | 		if ($cache->fetch('template_ini' . $template_name, $tmp)) | ||||||
|  | 			$cache->delete('template_ini' . $template_name); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('plugins_hooks', $tmp)) | ||||||
|  | 			$cache->delete('plugins_hooks'); | ||||||
|  |  | ||||||
|  | 		if ($cache->fetch('plugins_routes', $tmp)) | ||||||
|  | 			$cache->delete('plugins_routes'); | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	deleteDirectory(CACHE . 'signatures', ['index.html'], true); | 	deleteDirectory(CACHE . 'signatures', ['index.html'], true); | ||||||
| 	deleteDirectory(CACHE . 'twig', ['index.html'], true); | 	deleteDirectory(CACHE . 'twig', ['index.html'], true); | ||||||
| 	deleteDirectory(CACHE . 'plugins', ['index.html'], true); | 	deleteDirectory(CACHE . 'plugins', ['index.html'], true); | ||||||
| 	deleteDirectory(CACHE, ['signatures', 'twig', 'plugins', 'index.html', 'persistent'], true); | 	deleteDirectory(CACHE, ['signatures', 'twig', 'plugins', 'index.html'], true); | ||||||
|  |  | ||||||
| 	// routes cache | 	// routes cache | ||||||
| 	clearRouteCache(); |  | ||||||
|  |  | ||||||
| 	global $hooks; |  | ||||||
| 	$hooks->trigger(HOOK_CACHE_CLEAR, ['cache' => Cache::getInstance()]); |  | ||||||
|  |  | ||||||
| 	return true; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function clearRouteCache(): void |  | ||||||
| { |  | ||||||
| 	$routeCacheFile = CACHE . 'route.cache'; | 	$routeCacheFile = CACHE . 'route.cache'; | ||||||
| 	if (file_exists($routeCacheFile)) { | 	if (file_exists($routeCacheFile)) { | ||||||
| 		unlink($routeCacheFile); | 		unlink($routeCacheFile); | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|  | 	return true; | ||||||
| } | } | ||||||
|  |  | ||||||
| function getCustomPageInfo($name) | function getCustomPageInfo($name) | ||||||
| @@ -1324,6 +1261,13 @@ function getCustomPage($name, &$success): string | |||||||
| 			else | 			else | ||||||
| 				$tmp = $page['body']; | 				$tmp = $page['body']; | ||||||
|  |  | ||||||
|  | 			$php_errors = array(); | ||||||
|  | 			function error_handler($errno, $errstr) { | ||||||
|  | 				global $php_errors; | ||||||
|  | 				$php_errors[] = array('errno' => $errno, 'errstr' => $errstr); | ||||||
|  | 			} | ||||||
|  | 			set_error_handler('error_handler'); | ||||||
|  |  | ||||||
| 			global $config; | 			global $config; | ||||||
| 			if(setting('core.backward_support')) { | 			if(setting('core.backward_support')) { | ||||||
| 				global $SQL, $main_content, $subtopic; | 				global $SQL, $main_content, $subtopic; | ||||||
| @@ -1333,6 +1277,11 @@ function getCustomPage($name, &$success): string | |||||||
| 			eval($tmp); | 			eval($tmp); | ||||||
| 			$content .= ob_get_contents(); | 			$content .= ob_get_contents(); | ||||||
| 			ob_end_clean(); | 			ob_end_clean(); | ||||||
|  |  | ||||||
|  | 			restore_error_handler(); | ||||||
|  | 			if(isset($php_errors[0]) && superAdmin()) { | ||||||
|  | 				var_dump($php_errors); | ||||||
|  | 			} | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			$oldLoader = $twig->getLoader(); | 			$oldLoader = $twig->getLoader(); | ||||||
| @@ -1502,7 +1451,7 @@ function echo_success($message) | |||||||
| function echo_error($message) | function echo_error($message) | ||||||
| { | { | ||||||
| 	global $error; | 	global $error; | ||||||
| 	echo '<div class="col-12 alert alert-danger mb-2">' . $message . '</div>'; | 	echo '<div class="col-12 alert alert-error mb-2">' . $message . '</div>'; | ||||||
| 	$error = true; | 	$error = true; | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -1576,19 +1525,18 @@ function right($str, $length) { | |||||||
| 	return substr($str, -$length); | 	return substr($str, -$length); | ||||||
| } | } | ||||||
|  |  | ||||||
| function getMonsterImgPath($monster): string | function getCreatureImgPath($creature){ | ||||||
| { | 	$creature_path = setting('core.monsters_images_url'); | ||||||
| 	$monster_path = setting('core.monsters_images_url'); | 	$creature_gfx_name = trim(strtolower($creature)) . setting('core.monsters_images_extension'); | ||||||
| 	$monster_gfx_name = trim(strtolower($monster)) . setting('core.monsters_images_extension'); | 	if (!file_exists($creature_path . $creature_gfx_name)) { | ||||||
| 	if (!file_exists($monster_path . $monster_gfx_name)) { | 		$creature_gfx_name = str_replace(" ", "", $creature_gfx_name); | ||||||
| 		$monster_gfx_name = str_replace(" ", "", $monster_gfx_name); | 		if (file_exists($creature_path . $creature_gfx_name)) { | ||||||
| 		if (file_exists($monster_path . $monster_gfx_name)) { | 			return $creature_path . $creature_gfx_name; | ||||||
| 			return $monster_path . $monster_gfx_name; |  | ||||||
| 		} else { | 		} else { | ||||||
| 			return $monster_path . 'nophoto.png'; | 			return $creature_path . 'nophoto.png'; | ||||||
| 		} | 		} | ||||||
| 	} else { | 	} else { | ||||||
| 		return $monster_path . $monster_gfx_name; | 		return $creature_path . $creature_gfx_name; | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -1639,7 +1587,7 @@ function removeIfFirstSlash(&$text) { | |||||||
| }; | }; | ||||||
|  |  | ||||||
| function escapeHtml($html) { | function escapeHtml($html) { | ||||||
| 	return htmlspecialchars($html); | 	return htmlentities($html, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8'); | ||||||
| } | } | ||||||
|  |  | ||||||
| function getGuildNameById($id) | function getGuildNameById($id) | ||||||
| @@ -1658,7 +1606,7 @@ function getGuildLogoById($id) | |||||||
|  |  | ||||||
| 	$guild = Guild::where('id', intval($id))->select('logo_name')->first(); | 	$guild = Guild::where('id', intval($id))->select('logo_name')->first(); | ||||||
| 	if ($guild) { | 	if ($guild) { | ||||||
| 		$guildLogo = $guild->logo_name; | 		$guildLogo = $query->logo_name; | ||||||
|  |  | ||||||
| 		if (!empty($guildLogo) && file_exists(GUILD_IMAGES_DIR . $guildLogo)) { | 		if (!empty($guildLogo) && file_exists(GUILD_IMAGES_DIR . $guildLogo)) { | ||||||
| 			$logo = $guildLogo; | 			$logo = $guildLogo; | ||||||
| @@ -1676,27 +1624,8 @@ function displayErrorBoxWithBackButton($errors, $action = null) { | |||||||
| 	]); | 	]); | ||||||
| } | } | ||||||
|  |  | ||||||
| function makeLinksClickable($text, $blank = true) { |  | ||||||
| 	return preg_replace('!(((f|ht)tp(s)?://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=]+)!i', '<a href="$1"' . (!$blank ?: ' target="_blank"') . '>$1</a>', $text); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function isRequestMethod(string $method): bool { |  | ||||||
| 	return strtolower($_SERVER['REQUEST_METHOD']) == strtolower($method); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| function getAccountIdentityColumn(): string |  | ||||||
| { |  | ||||||
| 	if (USE_ACCOUNT_NAME) { |  | ||||||
| 		return 'name'; |  | ||||||
| 	} |  | ||||||
| 	elseif (USE_ACCOUNT_NUMBER) { |  | ||||||
| 		return 'number'; |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return 'id'; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // validator functions | // validator functions | ||||||
|  | require_once LIBS . 'validator.php'; | ||||||
| require_once SYSTEM . 'compat/base.php'; | require_once SYSTEM . 'compat/base.php'; | ||||||
|  |  | ||||||
| // custom functions | // custom functions | ||||||
|   | |||||||
| @@ -1,10 +1,15 @@ | |||||||
| <?php | <?php | ||||||
| 
 | /** | ||||||
| const SKILL_FRAGS = -1; |  * Events system | ||||||
| const SKILL_BALANCE = -2; |  * | ||||||
|  |  * @package   MyAAC | ||||||
|  |  * @author    Slawkens <slawkens@gmail.com> | ||||||
|  |  * @copyright 2019 MyAAC | ||||||
|  |  * @link      https://my-aac.org | ||||||
|  |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| $i = 0; | $i = 0; | ||||||
| 
 |  | ||||||
| define('HOOK_STARTUP', ++$i); | define('HOOK_STARTUP', ++$i); | ||||||
| define('HOOK_BEFORE_PAGE', ++$i); | define('HOOK_BEFORE_PAGE', ++$i); | ||||||
| define('HOOK_AFTER_PAGE', ++$i); | define('HOOK_AFTER_PAGE', ++$i); | ||||||
| @@ -45,12 +50,6 @@ define('HOOK_ACCOUNT_CREATE_AFTER_TOWNS', ++$i); | |||||||
| define('HOOK_ACCOUNT_CREATE_BEFORE_SUBMIT_BUTTON', ++$i); | define('HOOK_ACCOUNT_CREATE_BEFORE_SUBMIT_BUTTON', ++$i); | ||||||
| define('HOOK_ACCOUNT_CREATE_AFTER_FORM', ++$i); | define('HOOK_ACCOUNT_CREATE_AFTER_FORM', ++$i); | ||||||
| define('HOOK_ACCOUNT_CREATE_POST', ++$i); | define('HOOK_ACCOUNT_CREATE_POST', ++$i); | ||||||
| define('HOOK_ACCOUNT_CREATE_AFTER_SUBMIT', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_AFTER_SAVED', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_MANAGE_BEFORE_GENERAL_INFORMATION', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_MANAGE_BEFORE_PUBLIC_INFORMATION', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_MANAGE_BEFORE_ACCOUNT_LOGS', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_MANAGE_BEFORE_CHARACTERS', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_LOGIN_BEFORE_PAGE', ++$i); | define('HOOK_ACCOUNT_LOGIN_BEFORE_PAGE', ++$i); | ||||||
| define('HOOK_ACCOUNT_LOGIN_BEFORE_ACCOUNT', ++$i); | define('HOOK_ACCOUNT_LOGIN_BEFORE_ACCOUNT', ++$i); | ||||||
| define('HOOK_ACCOUNT_LOGIN_AFTER_ACCOUNT', ++$i); | define('HOOK_ACCOUNT_LOGIN_AFTER_ACCOUNT', ++$i); | ||||||
| @@ -59,26 +58,12 @@ define('HOOK_ACCOUNT_LOGIN_AFTER_PASSWORD', ++$i); | |||||||
| define('HOOK_ACCOUNT_LOGIN_AFTER_REMEMBER_ME', ++$i); | define('HOOK_ACCOUNT_LOGIN_AFTER_REMEMBER_ME', ++$i); | ||||||
| define('HOOK_ACCOUNT_LOGIN_AFTER_PAGE', ++$i); | define('HOOK_ACCOUNT_LOGIN_AFTER_PAGE', ++$i); | ||||||
| define('HOOK_ACCOUNT_LOGIN_POST', ++$i); | define('HOOK_ACCOUNT_LOGIN_POST', ++$i); | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_FIRST_TABLE', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_VOCATIONS', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_BEFORE_TOWNS', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_TOWNS', ++$i); |  | ||||||
| define('HOOK_ACCOUNT_CREATE_CHARACTER_AFTER_SECOND_TABLE', ++$i); |  | ||||||
| define('HOOK_ADMIN_HEAD_END', ++$i); | define('HOOK_ADMIN_HEAD_END', ++$i); | ||||||
| define('HOOK_ADMIN_HEAD_START', ++$i); | define('HOOK_ADMIN_HEAD_START', ++$i); | ||||||
| define('HOOK_ADMIN_BODY_START', ++$i); | define('HOOK_ADMIN_BODY_START', ++$i); | ||||||
| define('HOOK_ADMIN_BODY_END', ++$i); | define('HOOK_ADMIN_BODY_END', ++$i); | ||||||
| define('HOOK_ADMIN_BEFORE_PAGE', ++$i); | define('HOOK_ADMIN_BEFORE_PAGE', ++$i); | ||||||
| define('HOOK_ADMIN_MENU', ++$i); | define('HOOK_ADMIN_MENU', ++$i); | ||||||
| define('HOOK_ADMIN_NEWS_ADD_PRE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_ADD', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_UPDATE_PRE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_UPDATE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_DELETE_PRE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_DELETE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_TOGGLE_HIDE_PRE', ++$i); |  | ||||||
| define('HOOK_ADMIN_NEWS_TOGGLE_HIDE', ++$i); |  | ||||||
| define('HOOK_ADMIN_LOGIN_AFTER_ACCOUNT', ++$i); | define('HOOK_ADMIN_LOGIN_AFTER_ACCOUNT', ++$i); | ||||||
| define('HOOK_ADMIN_LOGIN_AFTER_PASSWORD', ++$i); | define('HOOK_ADMIN_LOGIN_AFTER_PASSWORD', ++$i); | ||||||
| define('HOOK_ADMIN_LOGIN_AFTER_SIGN_IN', ++$i); | define('HOOK_ADMIN_LOGIN_AFTER_SIGN_IN', ++$i); | ||||||
| @@ -91,38 +76,87 @@ define('HOOK_GUILDS_AFTER_GUILD_HEADER', ++$i); | |||||||
| define('HOOK_GUILDS_AFTER_GUILD_INFORMATION', ++$i); | define('HOOK_GUILDS_AFTER_GUILD_INFORMATION', ++$i); | ||||||
| define('HOOK_GUILDS_AFTER_GUILD_MEMBERS', ++$i); | define('HOOK_GUILDS_AFTER_GUILD_MEMBERS', ++$i); | ||||||
| define('HOOK_GUILDS_AFTER_INVITED_CHARACTERS', ++$i); | define('HOOK_GUILDS_AFTER_INVITED_CHARACTERS', ++$i); | ||||||
| define('HOOK_TWIG', ++$i); |  | ||||||
| define('HOOK_CACHE_CLEAR', ++$i); |  | ||||||
| define('HOOK_INSTALL_FINISH', ++$i); |  | ||||||
| define('HOOK_INSTALL_FINISH_END', ++$i); |  | ||||||
| 
 | 
 | ||||||
| const HOOK_FIRST = HOOK_STARTUP; | const HOOK_FIRST = HOOK_STARTUP; | ||||||
| define('HOOK_LAST', $i); | define('HOOK_LAST', $i); | ||||||
| 
 | 
 | ||||||
| function is_sub_dir($path = NULL, $parent_folder = BASE): bool|string | require_once LIBS . 'plugins.php'; | ||||||
|  | class Hook | ||||||
| { | { | ||||||
| 	//Get directory path minus last folder
 | 	private $_name, $_type, $_file; | ||||||
| 	$dir = dirname($path); |  | ||||||
| 	$folder = substr($path, strlen($dir)); |  | ||||||
| 
 | 
 | ||||||
| 	//Check the base dir is valid
 | 	public function __construct($name, $type, $file) { | ||||||
| 	$dir = realpath($dir); | 		$this->_name = $name; | ||||||
| 
 | 		$this->_type = $type; | ||||||
| 	//Only allow valid filename characters
 | 		$this->_file = $file; | ||||||
| 	$folder = preg_replace('/[^a-z0-9\.\-_]/i', '', $folder); |  | ||||||
| 
 |  | ||||||
| 	//If this is a bad path or a bad end folder name
 |  | ||||||
| 	if( !$dir OR !$folder OR $folder === '.') { |  | ||||||
| 		return false; |  | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	//Rebuild path
 | 	public function execute($params) | ||||||
| 	$path = $dir. '/' . $folder; | 	{ | ||||||
|  | 		global $db, $config, $template_path, $ots, $content, $twig; | ||||||
| 
 | 
 | ||||||
| 	//If this path is higher than the parent folder
 | 		if(is_callable($this->_file)) | ||||||
| 	if( strcasecmp($path, $parent_folder) > 0 ) { | 		{ | ||||||
| 		return $path; | 			$params['db'] = $db; | ||||||
|  | 			$params['config'] = $config; | ||||||
|  | 			$params['template_path'] = $template_path; | ||||||
|  | 			$params['ots'] = $ots; | ||||||
|  | 			$params['content'] = $content; | ||||||
|  | 			$params['twig'] = $twig; | ||||||
|  | 
 | ||||||
|  | 			$tmp = $this->_file; | ||||||
|  | 			$ret = $tmp($params); | ||||||
|  | 		} | ||||||
|  | 		else { | ||||||
|  | 			extract($params); | ||||||
|  | 
 | ||||||
|  | 			$ret = include BASE . $this->_file; | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		return !isset($ret) || $ret == 1 || $ret; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	return false; | 	public function name() {return $this->_name;} | ||||||
|  | 	public function type() {return $this->_type;} | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | class Hooks | ||||||
|  | { | ||||||
|  | 	private static $_hooks = array(); | ||||||
|  | 
 | ||||||
|  | 	public function register($hook, $type = '', $file = null) { | ||||||
|  | 		if(!($hook instanceof Hook)) | ||||||
|  | 			$hook = new Hook($hook, $type, $file); | ||||||
|  | 
 | ||||||
|  | 		self::$_hooks[$hook->type()][] = $hook; | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	public function trigger($type, $params = array()) | ||||||
|  | 	{ | ||||||
|  | 		$ret = true; | ||||||
|  | 		if(isset(self::$_hooks[$type])) | ||||||
|  | 		{ | ||||||
|  | 			foreach(self::$_hooks[$type] as $name => $hook) { | ||||||
|  | 				/** @var $hook Hook */ | ||||||
|  | 				if (!$hook->execute($params)) { | ||||||
|  | 					$ret = false; | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		return $ret; | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	public function exist($type) { | ||||||
|  | 		return isset(self::$_hooks[$type]); | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	public function load() | ||||||
|  | 	{ | ||||||
|  | 		foreach(Plugins::getHooks() as $hook) { | ||||||
|  | 			$this->register($hook['name'], $hook['type'], $hook['file']); | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		Plugins::clearWarnings(); | ||||||
|  | 	} | ||||||
| } | } | ||||||
| @@ -7,17 +7,8 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  |  | ||||||
| use DebugBar\StandardDebugBar; |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\CsrfToken; |  | ||||||
| use MyAAC\Hooks; |  | ||||||
| use MyAAC\Models\Town; |  | ||||||
| use MyAAC\Settings; |  | ||||||
|  |  | ||||||
| defined('MYAAC') or die('Direct access not allowed!'); | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
| global $config; |  | ||||||
| if(!isset($config['installed']) || !$config['installed']) { | if(!isset($config['installed']) || !$config['installed']) { | ||||||
| 	throw new RuntimeException('MyAAC has not been installed yet or there was error during installation. Please install again.'); | 	throw new RuntimeException('MyAAC has not been installed yet or there was error during installation. Please install again.'); | ||||||
| } | } | ||||||
| @@ -26,10 +17,6 @@ if(config('env') === 'dev') { | |||||||
| 	require SYSTEM . 'exception.php'; | 	require SYSTEM . 'exception.php'; | ||||||
| } | } | ||||||
|  |  | ||||||
| if (config('env') === 'dev' || getBoolean(config('enable_debugbar'))) { |  | ||||||
| 	$debugBar = new StandardDebugBar(); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| if(empty($config['server_path'])) { | if(empty($config['server_path'])) { | ||||||
| 	throw new RuntimeException('Server Path has been not set. Go to config.php and set it.'); | 	throw new RuntimeException('Server Path has been not set. Go to config.php and set it.'); | ||||||
| } | } | ||||||
| @@ -39,18 +26,13 @@ if($config['server_path'][strlen($config['server_path']) - 1] !== '/') | |||||||
| 	$config['server_path'] .= '/'; | 	$config['server_path'] .= '/'; | ||||||
|  |  | ||||||
| // enable gzip compression if supported by the browser | // enable gzip compression if supported by the browser | ||||||
| if(isset($config['gzip_output']) && $config['gzip_output'] && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && str_contains($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('ob_gzhandler')) | if(isset($config['gzip_output']) && $config['gzip_output'] && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== false && function_exists('ob_gzhandler')) | ||||||
| 	ob_start('ob_gzhandler'); | 	ob_start('ob_gzhandler'); | ||||||
|  |  | ||||||
| // cache | // cache | ||||||
| global $cache; | require_once SYSTEM . 'libs/cache.php'; | ||||||
| $cache = Cache::getInstance(); | $cache = Cache::getInstance(); | ||||||
|  |  | ||||||
| // event system |  | ||||||
| global $hooks; |  | ||||||
| $hooks = new Hooks(); |  | ||||||
| $hooks->load(); |  | ||||||
|  |  | ||||||
| // twig | // twig | ||||||
| require_once SYSTEM . 'twig.php'; | require_once SYSTEM . 'twig.php'; | ||||||
|  |  | ||||||
| @@ -58,24 +40,28 @@ require_once SYSTEM . 'twig.php'; | |||||||
| $action = $_REQUEST['action'] ?? ''; | $action = $_REQUEST['action'] ?? ''; | ||||||
| define('ACTION', $action); | define('ACTION', $action); | ||||||
|  |  | ||||||
| // errors, is also often used |  | ||||||
| $errors = []; |  | ||||||
|  |  | ||||||
| // trim values we receive | // trim values we receive | ||||||
| foreach($_POST as $var => $value) { | if(isset($_POST)) | ||||||
| 	if(is_string($value)) { | { | ||||||
| 		$_POST[$var] = trim($value); | 	foreach($_POST as $var => $value) { | ||||||
|  | 		if(is_string($value)) { | ||||||
|  | 			$_POST[$var] = trim($value); | ||||||
|  | 		} | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  | if(isset($_GET)) | ||||||
| foreach($_GET as $var => $value) { | { | ||||||
| 	if(is_string($value)) | 	foreach($_GET as $var => $value) { | ||||||
| 		$_GET[$var] = trim($value); | 		if(is_string($value)) | ||||||
|  | 			$_GET[$var] = trim($value); | ||||||
|  | 	} | ||||||
| } | } | ||||||
|  | if(isset($_REQUEST)) | ||||||
| foreach($_REQUEST as $var => $value) { | { | ||||||
| 	if(is_string($value)) | 	foreach($_REQUEST as $var => $value) { | ||||||
| 		$_REQUEST[$var] = trim($value); | 		if(is_string($value)) | ||||||
|  | 			$_REQUEST[$var] = trim($value); | ||||||
|  | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| // load otserv config file | // load otserv config file | ||||||
| @@ -131,45 +117,30 @@ if(!isset($foundValue)) { | |||||||
| $config['data_path'] = $foundValue; | $config['data_path'] = $foundValue; | ||||||
| unset($foundValue); | unset($foundValue); | ||||||
|  |  | ||||||
|  |  | ||||||
| // POT | // POT | ||||||
| require_once SYSTEM . 'libs/pot/OTS.php'; | require_once SYSTEM . 'libs/pot/OTS.php'; | ||||||
| $ots = POT::getInstance(); | $ots = POT::getInstance(); | ||||||
| $eloquentConnection = null; | $eloquentConnection = null; | ||||||
| require_once SYSTEM . 'database.php'; | require_once SYSTEM . 'database.php'; | ||||||
|  |  | ||||||
| // verify myaac tables exists in database |  | ||||||
| if(!defined('MYAAC_INSTALL') && !$db->hasTable('myaac_account_actions')) { |  | ||||||
| 	throw new RuntimeException('Seems that the table myaac_account_actions of MyAAC doesn\'t exist in the database. This is a fatal error. You can try to reinstall MyAAC by visiting ' . BASE_URL . 'install'); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // execute migrations | // execute migrations | ||||||
| $configDatabaseAutoMigrate = config('database_auto_migrate'); | require SYSTEM . 'migrate.php'; | ||||||
| if (!isset($configDatabaseAutoMigrate) || $configDatabaseAutoMigrate) { |  | ||||||
| 	require SYSTEM . 'migrate.php'; |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // settings | // settings | ||||||
|  | require_once LIBS . 'Settings.php'; | ||||||
| $settings = Settings::getInstance(); | $settings = Settings::getInstance(); | ||||||
| $settings->load(); | $settings->load(); | ||||||
|  |  | ||||||
| // csrf protection |  | ||||||
| $token = getSession('csrf_token'); |  | ||||||
| if (!isset($token) || !$token) { |  | ||||||
| 	CsrfToken::generate(); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| // deprecated config values | // deprecated config values | ||||||
| require_once SYSTEM . 'compat/config.php'; | require_once SYSTEM . 'compat/config.php'; | ||||||
|  |  | ||||||
| // deprecated classes |  | ||||||
| require_once SYSTEM . 'compat/classes.php'; |  | ||||||
|  |  | ||||||
| date_default_timezone_set(setting('core.date_timezone')); | date_default_timezone_set(setting('core.date_timezone')); | ||||||
|  |  | ||||||
| setting( | setting( | ||||||
| 	[ | 	[ | ||||||
| 		'core.account_mail_verify', | 		'core.account_create_character_create', | ||||||
| 		setting('core.account_mail_verify') && setting('core.mail_enabled') | 		setting('core.account_create_character_create') && (!setting('core.mail_enabled') || !setting('core.account_mail_verify')) | ||||||
| 	] | 	] | ||||||
| ); | ); | ||||||
|  |  | ||||||
| @@ -182,17 +153,5 @@ define('USE_ACCOUNT_NAME', $db->hasColumn('accounts', 'name')); | |||||||
| define('USE_ACCOUNT_NUMBER', $db->hasColumn('accounts', 'number')); | define('USE_ACCOUNT_NUMBER', $db->hasColumn('accounts', 'number')); | ||||||
| define('USE_ACCOUNT_SALT', $db->hasColumn('accounts', 'salt')); | define('USE_ACCOUNT_SALT', $db->hasColumn('accounts', 'salt')); | ||||||
|  |  | ||||||
| $towns = Cache::remember('towns', 10 * 60, function () use ($db) { | require LIBS . 'Towns.php'; | ||||||
| 	if ($db->hasTable('towns') && Town::count() > 0) { | Towns::load(); | ||||||
| 		return Town::orderBy('id', 'ASC')->pluck('name', 'id')->toArray(); |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return []; |  | ||||||
| }); |  | ||||||
|  |  | ||||||
| if (count($towns) <= 0) { |  | ||||||
| 	$towns = setting('core.towns'); |  | ||||||
| } |  | ||||||
|  |  | ||||||
| config(['towns', $towns]); |  | ||||||
| unset($towns); |  | ||||||
|   | |||||||
| @@ -1,7 +1,5 @@ | |||||||
| <?php | <?php | ||||||
| 
 | 
 | ||||||
| namespace MyAAC; |  | ||||||
| 
 |  | ||||||
| use MyAAC\Models\Player; | use MyAAC\Models\Player; | ||||||
| 
 | 
 | ||||||
| /** | /** | ||||||
| @@ -23,13 +21,37 @@ class CreateCharacter | |||||||
| 	 */ | 	 */ | ||||||
| 	public function checkName($name, &$errors) | 	public function checkName($name, &$errors) | ||||||
| 	{ | 	{ | ||||||
| 		if (!\Validator::characterName($name)) { | 		$minLength = setting('core.create_character_name_min_length'); | ||||||
| 			$errors['name'] = \Validator::getLastError(); | 		$maxLength = setting('core.create_character_name_max_length'); | ||||||
|  | 
 | ||||||
|  | 		if(empty($name)) { | ||||||
|  | 			$errors['name'] = 'Please enter a name for your character!'; | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if(!admin() && !\Validator::newCharacterName($name)) { | 		if(strlen($name) > $maxLength) { | ||||||
| 			$errors['name'] = \Validator::getLastError(); | 			$errors['name'] = 'Name is too long. Max. length <b>' . $maxLength . '</b> letters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		if(strlen($name) < $minLength) { | ||||||
|  | 			$errors['name'] = 'Name is too short. Min. length <b>' . $minLength . '</b> letters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		$name_length = strlen($name); | ||||||
|  | 		if(strspn($name, "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM- '") != $name_length) { | ||||||
|  | 			$errors['name'] = 'This name contains invalid letters, words or format. Please use only a-Z, - , \' and space.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		if(!preg_match("/[A-z ']/", $name)) { | ||||||
|  | 			$errors['name'] = 'Your name contains illegal characters.'; | ||||||
|  | 			return false; | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
|  | 		if(!admin() && !Validator::newCharacterName($name)) { | ||||||
|  | 			$errors['name'] = Validator::getLastError(); | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -49,7 +71,7 @@ class CreateCharacter | |||||||
| 	 * @param array $errors | 	 * @param array $errors | ||||||
| 	 * @return bool | 	 * @return bool | ||||||
| 	 */ | 	 */ | ||||||
| 	public function check($name, $sex, ?int &$vocation, ?int &$town, &$errors) | 	public function check($name, $sex, &$vocation, &$town, &$errors) | ||||||
| 	{ | 	{ | ||||||
| 		$this->checkName($name, $errors); | 		$this->checkName($name, $errors); | ||||||
| 
 | 
 | ||||||
| @@ -101,13 +123,13 @@ class CreateCharacter | |||||||
| 	 * @param int $sex | 	 * @param int $sex | ||||||
| 	 * @param int $vocation | 	 * @param int $vocation | ||||||
| 	 * @param int $town | 	 * @param int $town | ||||||
| 	 * @param \OTS_Account $account | 	 * @param OTS_Account $account | ||||||
| 	 * @param array $errors | 	 * @param array $errors | ||||||
| 	 * @return bool | 	 * @return bool | ||||||
| 	 * @throws \E_OTS_NotLoaded | 	 * @throws E_OTS_NotLoaded | ||||||
| 	 * @throws \Twig_Error_Loader | 	 * @throws Twig_Error_Loader | ||||||
| 	 * @throws \Twig_Error_Runtime | 	 * @throws Twig_Error_Runtime | ||||||
| 	 * @throws \Twig_Error_Syntax | 	 * @throws Twig_Error_Syntax | ||||||
| 	 */ | 	 */ | ||||||
| 	public function doCreate($name, $sex, $vocation, $town, $account, &$errors) | 	public function doCreate($name, $sex, $vocation, $town, $account, &$errors) | ||||||
| 	{ | 	{ | ||||||
| @@ -125,9 +147,9 @@ class CreateCharacter | |||||||
| 		if(empty($errors)) | 		if(empty($errors)) | ||||||
| 		{ | 		{ | ||||||
| 			$char_to_copy_name = config('character_samples')[$vocation]; | 			$char_to_copy_name = config('character_samples')[$vocation]; | ||||||
| 			$playerSample = new \OTS_Player(); | 			$char_to_copy = new OTS_Player(); | ||||||
| 			$playerSample->find($char_to_copy_name); | 			$char_to_copy->find($char_to_copy_name); | ||||||
| 			if(!$playerSample->isLoaded()) | 			if(!$char_to_copy->isLoaded()) | ||||||
| 				$errors[] = 'Wrong characters configuration. Try again or contact with admin. ADMIN: Go to Admin Panel -> Settings -> Create Character and set valid characters to copy names. Character to copy: <b>'.$char_to_copy_name.'</b> doesn\'t exist.'; | 				$errors[] = 'Wrong characters configuration. Try again or contact with admin. ADMIN: Go to Admin Panel -> Settings -> Create Character and set valid characters to copy names. Character to copy: <b>'.$char_to_copy_name.'</b> doesn\'t exist.'; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -138,78 +160,78 @@ class CreateCharacter | |||||||
| 		global $db; | 		global $db; | ||||||
| 
 | 
 | ||||||
| 		if($sex == "0") | 		if($sex == "0") | ||||||
| 			$playerSample->setLookType(136); | 			$char_to_copy->setLookType(136); | ||||||
| 
 | 
 | ||||||
| 		$player = new \OTS_Player(); | 		$player = new OTS_Player(); | ||||||
| 		$player->setName($name); | 		$player->setName($name); | ||||||
| 		$player->setAccount($account); | 		$player->setAccount($account); | ||||||
| 		$player->setGroupId(1); | 		$player->setGroupId(1); | ||||||
| 		$player->setSex($sex); | 		$player->setSex($sex); | ||||||
| 		$player->setVocation($playerSample->getVocation()); | 		$player->setVocation($char_to_copy->getVocation()); | ||||||
| 		if($db->hasColumn('players', 'promotion')) | 		if($db->hasColumn('players', 'promotion')) | ||||||
| 			$player->setPromotion($playerSample->getPromotion()); | 			$player->setPromotion($char_to_copy->getPromotion()); | ||||||
| 
 | 
 | ||||||
| 		if($db->hasColumn('players', 'direction')) | 		if($db->hasColumn('players', 'direction')) | ||||||
| 			$player->setDirection($playerSample->getDirection()); | 			$player->setDirection($char_to_copy->getDirection()); | ||||||
| 
 | 
 | ||||||
| 		$player->setConditions($playerSample->getConditions()); | 		$player->setConditions($char_to_copy->getConditions()); | ||||||
| 		$rank = $playerSample->getRank(); | 		$rank = $char_to_copy->getRank(); | ||||||
| 		if($rank->isLoaded()) { | 		if($rank->isLoaded()) { | ||||||
| 			$player->setRank($playerSample->getRank()); | 			$player->setRank($char_to_copy->getRank()); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if($db->hasColumn('players', 'lookaddons')) | 		if($db->hasColumn('players', 'lookaddons')) | ||||||
| 			$player->setLookAddons($playerSample->getLookAddons()); | 			$player->setLookAddons($char_to_copy->getLookAddons()); | ||||||
| 
 | 
 | ||||||
| 		$player->setTownId($town); | 		$player->setTownId($town); | ||||||
| 		$player->setExperience($playerSample->getExperience()); | 		$player->setExperience($char_to_copy->getExperience()); | ||||||
| 		$player->setLevel($playerSample->getLevel()); | 		$player->setLevel($char_to_copy->getLevel()); | ||||||
| 		$player->setMagLevel($playerSample->getMagLevel()); | 		$player->setMagLevel($char_to_copy->getMagLevel()); | ||||||
| 		$player->setHealth($playerSample->getHealth()); | 		$player->setHealth($char_to_copy->getHealth()); | ||||||
| 		$player->setHealthMax($playerSample->getHealthMax()); | 		$player->setHealthMax($char_to_copy->getHealthMax()); | ||||||
| 		$player->setMana($playerSample->getMana()); | 		$player->setMana($char_to_copy->getMana()); | ||||||
| 		$player->setManaMax($playerSample->getManaMax()); | 		$player->setManaMax($char_to_copy->getManaMax()); | ||||||
| 		$player->setManaSpent($playerSample->getManaSpent()); | 		$player->setManaSpent($char_to_copy->getManaSpent()); | ||||||
| 		$player->setSoul($playerSample->getSoul()); | 		$player->setSoul($char_to_copy->getSoul()); | ||||||
| 
 | 
 | ||||||
| 		for($skill = \POT::SKILL_FIRST; $skill <= \POT::SKILL_LAST; $skill++) { | 		for($skill = POT::SKILL_FIRST; $skill <= POT::SKILL_LAST; $skill++) { | ||||||
| 			$value = 10; | 			$value = 10; | ||||||
| 			if (setting('core.use_character_sample_skills')) { | 			if (setting('core.use_character_sample_skills')) { | ||||||
| 				$value = $playerSample->getSkill($skill); | 				$value = $char_to_copy->getSkill($skill); | ||||||
| 			} | 			} | ||||||
| 
 | 
 | ||||||
| 			$player->setSkill($skill, $value); | 			$player->setSkill($skill, $value); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$player->setLookBody($playerSample->getLookBody()); | 		$player->setLookBody($char_to_copy->getLookBody()); | ||||||
| 		$player->setLookFeet($playerSample->getLookFeet()); | 		$player->setLookFeet($char_to_copy->getLookFeet()); | ||||||
| 		$player->setLookHead($playerSample->getLookHead()); | 		$player->setLookHead($char_to_copy->getLookHead()); | ||||||
| 		$player->setLookLegs($playerSample->getLookLegs()); | 		$player->setLookLegs($char_to_copy->getLookLegs()); | ||||||
| 		$player->setLookType($playerSample->getLookType()); | 		$player->setLookType($char_to_copy->getLookType()); | ||||||
| 		$player->setCap($playerSample->getCap()); | 		$player->setCap($char_to_copy->getCap()); | ||||||
| 		$player->setBalance(0); | 		$player->setBalance(0); | ||||||
| 		$player->setPosX(0); | 		$player->setPosX(0); | ||||||
| 		$player->setPosY(0); | 		$player->setPosY(0); | ||||||
| 		$player->setPosZ(0); | 		$player->setPosZ(0); | ||||||
| 
 | 
 | ||||||
| 		if($db->hasColumn('players', 'stamina')) { | 		if($db->hasColumn('players', 'stamina')) { | ||||||
| 			$player->setStamina($playerSample->getStamina()); | 			$player->setStamina($char_to_copy->getStamina()); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if($db->hasColumn('players', 'loss_experience')) { | 		if($db->hasColumn('players', 'loss_experience')) { | ||||||
| 			$player->setLossExperience($playerSample->getLossExperience()); | 			$player->setLossExperience($char_to_copy->getLossExperience()); | ||||||
| 			$player->setLossMana($playerSample->getLossMana()); | 			$player->setLossMana($char_to_copy->getLossMana()); | ||||||
| 			$player->setLossSkills($playerSample->getLossSkills()); | 			$player->setLossSkills($char_to_copy->getLossSkills()); | ||||||
| 		} | 		} | ||||||
| 		if($db->hasColumn('players', 'loss_items')) { | 		if($db->hasColumn('players', 'loss_items')) { | ||||||
| 			$player->setLossItems($playerSample->getLossItems()); | 			$player->setLossItems($char_to_copy->getLossItems()); | ||||||
| 			$player->setLossContainers($playerSample->getLossContainers()); | 			$player->setLossContainers($char_to_copy->getLossContainers()); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$player->save(); | 		$player->save(); | ||||||
| 		$player->setCustomField('created', time()); | 		$player->setCustomField('created', time()); | ||||||
| 
 | 
 | ||||||
| 		$player = new \OTS_Player(); | 		$player = new OTS_Player(); | ||||||
| 		$player->find($name); | 		$player->find($name); | ||||||
| 
 | 
 | ||||||
| 		if(!$player->isLoaded()) { | 		if(!$player->isLoaded()) { | ||||||
| @@ -218,10 +240,10 @@ class CreateCharacter | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if($db->hasTable('player_skills')) { | 		if($db->hasTable('player_skills')) { | ||||||
| 			for($skill = \POT::SKILL_FIRST; $skill <= \POT::SKILL_LAST; $skill++) { | 			for($skill = POT::SKILL_FIRST; $skill <= POT::SKILL_LAST; $skill++) { | ||||||
| 				$value = 10; | 				$value = 10; | ||||||
| 				if (setting('core.use_character_sample_skills')) { | 				if (setting('core.use_character_sample_skills')) { | ||||||
| 					$value = $playerSample->getSkill($skill); | 					$value = $char_to_copy->getSkill($skill); | ||||||
| 				} | 				} | ||||||
| 				$skillExists = $db->query('SELECT `skillid` FROM `player_skills` WHERE `player_id` = ' . $player->getId() . ' AND `skillid` = ' . $skill); | 				$skillExists = $db->query('SELECT `skillid` FROM `player_skills` WHERE `player_id` = ' . $player->getId() . ' AND `skillid` = ' . $skill); | ||||||
| 				if($skillExists->rowCount() <= 0) { | 				if($skillExists->rowCount() <= 0) { | ||||||
| @@ -231,28 +253,13 @@ class CreateCharacter | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		if ($db->hasTable('player_items') && $db->hasColumn('player_items', 'pid') && $db->hasColumn('player_items', 'sid') && $db->hasColumn('player_items', 'itemtype')) { | 		if ($db->hasTable('player_items') && $db->hasColumn('player_items', 'pid') && $db->hasColumn('player_items', 'sid') && $db->hasColumn('player_items', 'itemtype')) { | ||||||
| 			$loaded_items_to_copy = $db->query("SELECT * FROM player_items WHERE player_id = ".$playerSample->getId().""); | 			$loaded_items_to_copy = $db->query("SELECT * FROM player_items WHERE player_id = ".$char_to_copy->getId().""); | ||||||
| 			foreach($loaded_items_to_copy as $save_item) { | 			foreach($loaded_items_to_copy as $save_item) { | ||||||
| 				$blob = $db->quote($save_item['attributes']); | 				$blob = $db->quote($save_item['attributes']); | ||||||
| 				$db->query("INSERT INTO `player_items` (`player_id` ,`pid` ,`sid` ,`itemtype`, `count`, `attributes`) VALUES ('".$player->getId()."', '".$save_item['pid']."', '".$save_item['sid']."', '".$save_item['itemtype']."', '".$save_item['count']."', $blob);"); | 				$db->query("INSERT INTO `player_items` (`player_id` ,`pid` ,`sid` ,`itemtype`, `count`, `attributes`) VALUES ('".$player->getId()."', '".$save_item['pid']."', '".$save_item['sid']."', '".$save_item['itemtype']."', '".$save_item['count']."', $blob);"); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		global $hooks; |  | ||||||
| 		if (!$hooks->trigger(HOOK_ACCOUNT_CREATE_CHARACTER_AFTER, |  | ||||||
| 			[ |  | ||||||
| 				'account' => $account, |  | ||||||
| 				'player' => $player, |  | ||||||
| 				'playerSample' => $playerSample, |  | ||||||
| 				'name' => $name, |  | ||||||
| 				'sex' => $sex, |  | ||||||
| 				'vocation' => $vocation, |  | ||||||
| 				'town' => $town, |  | ||||||
| 			] |  | ||||||
| 		)) { |  | ||||||
| 			return false; |  | ||||||
| 		} |  | ||||||
| 
 |  | ||||||
| 		global $twig; | 		global $twig; | ||||||
| 		$twig->display('success.html.twig', array( | 		$twig->display('success.html.twig', array( | ||||||
| 			'title' => 'Character Created', | 			'title' => 'Character Created', | ||||||
| @@ -23,11 +23,9 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| namespace MyAAC; | /** | ||||||
| 
 |  * Class DataLoader | ||||||
| use MyAAC\Cache\Cache; |  */ | ||||||
| use MyAAC\Models\Town; |  | ||||||
| 
 |  | ||||||
| class DataLoader | class DataLoader | ||||||
| { | { | ||||||
| 	private static $locale; | 	private static $locale; | ||||||
| @@ -40,6 +38,7 @@ class DataLoader | |||||||
| 	{ | 	{ | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
|  | 		require LIBS . 'items.php'; | ||||||
| 		if(Items::loadFromXML()) { | 		if(Items::loadFromXML()) { | ||||||
| 			success(self::$locale['step_database_loaded_items'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_items'] . self::getLoadedTime()); | ||||||
| 		} | 		} | ||||||
| @@ -49,20 +48,22 @@ class DataLoader | |||||||
| 
 | 
 | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
| 		if(Monsters::loadFromXML()) { | 		require LIBS . 'creatures.php'; | ||||||
|  | 		if(Creatures::loadFromXML()) { | ||||||
| 			success(self::$locale['step_database_loaded_monsters'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_monsters'] . self::getLoadedTime()); | ||||||
| 
 | 
 | ||||||
| 			if(Monsters::getMonstersList()->hasErrors()) { | 			if(Creatures::getMonstersList()->hasErrors()) { | ||||||
| 				self::$locale['step_database_error_monsters'] = str_replace('$LOG$', 'system/logs/error.log', self::$locale['step_database_error_monsters']); | 				self::$locale['step_database_error_monsters'] = str_replace('$LOG$', 'system/logs/error.log', self::$locale['step_database_error_monsters']); | ||||||
| 				warning(self::$locale['step_database_error_monsters']); | 				warning(self::$locale['step_database_error_monsters']); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			error(Monsters::getLastError()); | 			error(Creatures::getLastError()); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
|  | 		require_once LIBS . 'npc.php'; | ||||||
| 		if(NPCs::loadFromXML()) { | 		if(NPCs::loadFromXML()) { | ||||||
| 			success(self::$locale['step_database_loaded_npcs'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_npcs'] . self::getLoadedTime()); | ||||||
| 		} | 		} | ||||||
| @@ -72,6 +73,7 @@ class DataLoader | |||||||
| 
 | 
 | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
|  | 		require LIBS . 'spells.php'; | ||||||
| 		if(Spells::loadFromXML()) { | 		if(Spells::loadFromXML()) { | ||||||
| 			success(self::$locale['step_database_loaded_spells'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_spells'] . self::getLoadedTime()); | ||||||
| 		} | 		} | ||||||
| @@ -81,11 +83,7 @@ class DataLoader | |||||||
| 
 | 
 | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
| 		$cache = Cache::getInstance(); | 		if (Towns::save()) { | ||||||
| 		$cache->delete('towns'); // will be reloaded after next page load
 |  | ||||||
| 
 |  | ||||||
| 		global $db; |  | ||||||
| 		if ($db->hasTable('towns') && Town::count() > 0) { |  | ||||||
| 			success(self::$locale['step_database_loaded_towns'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_towns'] . self::getLoadedTime()); | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| @@ -94,6 +92,7 @@ class DataLoader | |||||||
| 
 | 
 | ||||||
| 		self::$startTime = microtime(true); | 		self::$startTime = microtime(true); | ||||||
| 
 | 
 | ||||||
|  | 		require LIBS . 'weapons.php'; | ||||||
| 		if(Weapons::loadFromXML()) { | 		if(Weapons::loadFromXML()) { | ||||||
| 			success(self::$locale['step_database_loaded_weapons'] . self::getLoadedTime()); | 			success(self::$locale['step_database_loaded_weapons'] . self::getLoadedTime()); | ||||||
| 		} | 		} | ||||||
							
								
								
									
										3
									
								
								system/libs/SensitiveException.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								system/libs/SensitiveException.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | |||||||
|  | <?php | ||||||
|  |  | ||||||
|  | class SensitiveException extends Exception {} | ||||||
| @@ -1,11 +1,17 @@ | |||||||
| <?php | <?php | ||||||
| 
 | 
 | ||||||
| namespace MyAAC; |  | ||||||
| 
 |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\Models\Settings as ModelsSettings; | use MyAAC\Models\Settings as ModelsSettings; | ||||||
| 
 | 
 | ||||||
| class Settings implements \ArrayAccess | /** | ||||||
|  |  * CreateCharacter | ||||||
|  |  * | ||||||
|  |  * @package   MyAAC | ||||||
|  |  * @author    Slawkens <slawkens@gmail.com> | ||||||
|  |  * @copyright 2020 MyAAC | ||||||
|  |  * @link      https://my-aac.org | ||||||
|  |  */ | ||||||
|  | 
 | ||||||
|  | class Settings implements ArrayAccess | ||||||
| { | { | ||||||
| 	static private $instance; | 	static private $instance; | ||||||
| 	private $settingsFile = []; | 	private $settingsFile = []; | ||||||
| @@ -38,7 +44,8 @@ class Settings implements \ArrayAccess | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$settings = ModelsSettings::all(); | 		$settings = ModelsSettings::all(); | ||||||
| 		foreach ($settings as $setting) { | 		foreach ($settings as $setting) | ||||||
|  | 		{ | ||||||
| 			$this->settingsDatabase[$setting->name][$setting->key] = $setting->value; | 			$this->settingsDatabase[$setting->name][$setting->key] = $setting->value; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -47,12 +54,9 @@ class Settings implements \ArrayAccess | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function save($pluginName, $values) | 	public function save($pluginName, $values) { | ||||||
| 	{ |  | ||||||
| 		$this->loadPlugin($pluginName); |  | ||||||
| 
 |  | ||||||
| 		if (!isset($this->settingsFile[$pluginName])) { | 		if (!isset($this->settingsFile[$pluginName])) { | ||||||
| 			throw new \RuntimeException("Error on save settings: plugin $pluginName does not exist"); | 			throw new RuntimeException('Error on save settings: plugin does not exist'); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$settings = $this->settingsFile[$pluginName]; | 		$settings = $this->settingsFile[$pluginName]; | ||||||
| @@ -87,26 +91,22 @@ class Settings implements \ArrayAccess | |||||||
| 					'key' => $key, | 					'key' => $key, | ||||||
| 					'value' => $value | 					'value' => $value | ||||||
| 				]); | 				]); | ||||||
| 			} catch (\PDOException $error) { | 			} catch (PDOException $error) { | ||||||
| 				$this->errors[] = 'Error while saving setting (' . $pluginName . ' - ' . $key . '): ' . $error->getMessage(); | 				$this->errors[] = 'Error while saving setting (' . $pluginName . ' - ' . $key . '): ' . $error->getMessage(); | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$this->clearCache(); | 		$cache = Cache::getInstance(); | ||||||
|  | 		if ($cache->enabled()) { | ||||||
|  | 			$cache->delete('settings'); | ||||||
|  | 		} | ||||||
|  | 
 | ||||||
| 		return true; | 		return true; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function updateInDatabase($pluginName, $key, $value) | 	public function updateInDatabase($pluginName, $key, $value) | ||||||
| 	{ | 	{ | ||||||
| 		if (ModelsSettings::where(['name' => $pluginName, 'key' => $key])->exists()) { | 		ModelsSettings::where(['name' => $pluginName, 'key' => $key])->update(['value' => $value]); | ||||||
| 			ModelsSettings::where(['name' => $pluginName, 'key' => $key])->update(['value' => $value]); |  | ||||||
| 		} |  | ||||||
| 		else { |  | ||||||
| 			// insert new
 |  | ||||||
| 			ModelsSettings::create(['name' => $pluginName, 'key' => $key, 'value' => $value]); |  | ||||||
| 		} |  | ||||||
| 
 |  | ||||||
| 		$this->clearCache(); |  | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function deleteFromDatabase($pluginName, $key = null) | 	public function deleteFromDatabase($pluginName, $key = null) | ||||||
| @@ -117,8 +117,6 @@ class Settings implements \ArrayAccess | |||||||
| 		else { | 		else { | ||||||
| 			ModelsSettings::where('name', $pluginName)->where('key', $key)->delete(); | 			ModelsSettings::where('name', $pluginName)->where('key', $key)->delete(); | ||||||
| 		} | 		} | ||||||
| 
 |  | ||||||
| 		$this->clearCache(); |  | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public static function display($plugin, $settings): array | 	public static function display($plugin, $settings): array | ||||||
| @@ -131,9 +129,6 @@ class Settings implements \ArrayAccess | |||||||
| 			if (is_bool($value)) { | 			if (is_bool($value)) { | ||||||
| 				$settingsDb[$key] = $value ? 'true' : 'false'; | 				$settingsDb[$key] = $value ? 'true' : 'false'; | ||||||
| 			} | 			} | ||||||
| 			elseif (is_array($value)) { |  | ||||||
| 				$settingsDb[$key] = $value; |  | ||||||
| 			} |  | ||||||
| 			else { | 			else { | ||||||
| 				$settingsDb[$key] = (string)$value; | 				$settingsDb[$key] = (string)$value; | ||||||
| 			} | 			} | ||||||
| @@ -251,10 +246,6 @@ class Settings implements \ArrayAccess | |||||||
| 				} | 				} | ||||||
| 
 | 
 | ||||||
| 				else if($setting['type'] === 'textarea') { | 				else if($setting['type'] === 'textarea') { | ||||||
| 					if (isset($settingsDb[$key]) && is_array($settingsDb[$key])) { |  | ||||||
| 						$settingsDb[$key] = implode(',', $settingsDb[$key]); |  | ||||||
| 					} |  | ||||||
| 
 |  | ||||||
| 					$value = ($settingsDb[$key] ?? ($setting['default'] ?? '')); | 					$value = ($settingsDb[$key] ?? ($setting['default'] ?? '')); | ||||||
| 					$valueWithSpaces = array_map('trim', preg_split('/\r\n|\r|\n/', trim($value))); | 					$valueWithSpaces = array_map('trim', preg_split('/\r\n|\r|\n/', trim($value))); | ||||||
| 					$rows = count($valueWithSpaces); | 					$rows = count($valueWithSpaces); | ||||||
| @@ -289,7 +280,7 @@ class Settings implements \ArrayAccess | |||||||
| 					} | 					} | ||||||
| 					else if ($setting['options'] == '$timezones') { | 					else if ($setting['options'] == '$timezones') { | ||||||
| 						$timezones = []; | 						$timezones = []; | ||||||
| 						foreach (\DateTimeZone::listIdentifiers() as $value) { | 						foreach (DateTimeZone::listIdentifiers() as $value) { | ||||||
| 							$timezones[$value] = $value; | 							$timezones[$value] = $value; | ||||||
| 						} | 						} | ||||||
| 
 | 
 | ||||||
| @@ -328,7 +319,7 @@ class Settings implements \ArrayAccess | |||||||
| 						</td> | 						</td> | ||||||
| 						<td> | 						<td> | ||||||
| 							<div class="well setting-default"><?php | 							<div class="well setting-default"><?php | ||||||
| 								echo (isset($setting['desc']) ? makeLinksClickable($setting['desc']) : ''); | 								echo ($setting['desc'] ?? ''); | ||||||
| 								echo '<br/>'; | 								echo '<br/>'; | ||||||
| 								echo '<strong>Default:</strong> '; | 								echo '<strong>Default:</strong> '; | ||||||
| 
 | 
 | ||||||
| @@ -339,7 +330,7 @@ class Settings implements \ArrayAccess | |||||||
| 									echo $setting['default']; | 									echo $setting['default']; | ||||||
| 								} | 								} | ||||||
| 								else if ($setting['type'] === 'options') { | 								else if ($setting['type'] === 'options') { | ||||||
| 									if (is_int($setting['default']) || !empty($setting['default'])) { | 									if (!empty($setting['default'])) { | ||||||
| 										echo $setting['options'][$setting['default']]; | 										echo $setting['options'][$setting['default']]; | ||||||
| 									} | 									} | ||||||
| 								} | 								} | ||||||
| @@ -382,8 +373,7 @@ class Settings implements \ArrayAccess | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$this->settingsDatabase[$pluginKeyName][$key] = $value; | 		$this->settingsDatabase[$pluginKeyName][$key] = $value; | ||||||
| 		// invalidate cache
 | 		$this->updateInDatabase($pluginKeyName, $key, $value); | ||||||
| 		unset($this->cache[$offset]); |  | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	#[\ReturnTypeWillChange]
 | 	#[\ReturnTypeWillChange]
 | ||||||
| @@ -424,6 +414,7 @@ class Settings implements \ArrayAccess | |||||||
| 
 | 
 | ||||||
| 		unset($this->settingsFile[$pluginKeyName]['settings'][$key]); | 		unset($this->settingsFile[$pluginKeyName]['settings'][$key]); | ||||||
| 		unset($this->settingsDatabase[$pluginKeyName][$key]); | 		unset($this->settingsDatabase[$pluginKeyName][$key]); | ||||||
|  | 		$this->deleteFromDatabase($pluginKeyName, $key); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	/** | 	/** | ||||||
| @@ -450,7 +441,7 @@ class Settings implements \ArrayAccess | |||||||
| 		// return specified plugin settings (all)
 | 		// return specified plugin settings (all)
 | ||||||
| 		if(!isset($key)) { | 		if(!isset($key)) { | ||||||
| 			if (!isset($this->settingsFile[$pluginKeyName]['settings'])) { | 			if (!isset($this->settingsFile[$pluginKeyName]['settings'])) { | ||||||
| 				throw new \RuntimeException('Unknown plugin settings: ' . $pluginKeyName); | 				throw new RuntimeException('Unknown plugin settings: ' . $pluginKeyName); | ||||||
| 			} | 			} | ||||||
| 			return $this->settingsFile[$pluginKeyName]['settings']; | 			return $this->settingsFile[$pluginKeyName]['settings']; | ||||||
| 		} | 		} | ||||||
| @@ -466,15 +457,9 @@ class Settings implements \ArrayAccess | |||||||
| 			$ret['value'] = $value; | 			$ret['value'] = $value; | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			if (!isset($this->settingsFile[$pluginKeyName]['settings'][$key])) { |  | ||||||
| 				return null; |  | ||||||
| 			} |  | ||||||
| 
 |  | ||||||
| 			$ret['value'] = $this->settingsFile[$pluginKeyName]['settings'][$key]['default']; | 			$ret['value'] = $this->settingsFile[$pluginKeyName]['settings'][$key]['default']; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$ret['key'] = $key; |  | ||||||
| 
 |  | ||||||
| 		if(isset($ret['type'])) { | 		if(isset($ret['type'])) { | ||||||
| 			switch($ret['type']) { | 			switch($ret['type']) { | ||||||
| 				case 'boolean': | 				case 'boolean': | ||||||
| @@ -547,11 +532,8 @@ class Settings implements \ArrayAccess | |||||||
| 
 | 
 | ||||||
| 	public static function saveConfig($config, $filename, &$content = '') | 	public static function saveConfig($config, $filename, &$content = '') | ||||||
| 	{ | 	{ | ||||||
| 		$content = "<?php" . PHP_EOL; | 		$content = "<?php" . PHP_EOL . | ||||||
| 
 | 			"\$config['installed'] = true;" . PHP_EOL; | ||||||
| 		unset($config['installed']); |  | ||||||
| 
 |  | ||||||
| 		$content .= "\$config['installed'] = true;" . PHP_EOL; |  | ||||||
| 
 | 
 | ||||||
| 		foreach ($config as $key => $value) { | 		foreach ($config as $key => $value) { | ||||||
| 			$content .= "\$config['$key'] = "; | 			$content .= "\$config['$key'] = "; | ||||||
| @@ -559,10 +541,10 @@ class Settings implements \ArrayAccess | |||||||
| 			$content .= ';' . PHP_EOL; | 			$content .= ';' . PHP_EOL; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$success = @file_put_contents($filename, $content); | 		$success = file_put_contents($filename, $content); | ||||||
| 
 | 
 | ||||||
| 		// we saved new config.php, need to revalidate cache (only if opcache is enabled)
 | 		// we saved new config.php, need to revalidate cache (only if opcache is enabled)
 | ||||||
| 		if ($success && function_exists('opcache_invalidate')) { | 		if (function_exists('opcache_invalidate')) { | ||||||
| 			opcache_invalidate($filename); | 			opcache_invalidate($filename); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -596,10 +578,10 @@ class Settings implements \ArrayAccess | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		try { | 		try { | ||||||
| 			$connectionTest = new \PDO('mysql:' . implode(';', $dns), $user, $password); | 			$connectionTest = new PDO('mysql:' . implode(';', $dns), $user, $password); | ||||||
| 			$connectionTest->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); | 			$connectionTest->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); | ||||||
| 		} | 		} | ||||||
| 		catch(\PDOException $error) { | 		catch(PDOException $error) { | ||||||
| 			error('MySQL connection failed. Settings has been reverted.'); | 			error('MySQL connection failed. Settings has been reverted.'); | ||||||
| 			error($error->getMessage()); | 			error($error->getMessage()); | ||||||
| 			return false; | 			return false; | ||||||
| @@ -608,15 +590,7 @@ class Settings implements \ArrayAccess | |||||||
| 		return true; | 		return true; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function getErrors(): array { | 	public function getErrors() { | ||||||
| 		return $this->errors; | 		return $this->errors; | ||||||
| 	} | 	} | ||||||
| 
 |  | ||||||
| 	public function clearCache(): void |  | ||||||
| 	{ |  | ||||||
| 		$cache = Cache::getInstance(); |  | ||||||
| 		if ($cache->enabled()) { |  | ||||||
| 			$cache->delete('settings'); |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } | } | ||||||
							
								
								
									
										131
									
								
								system/libs/Towns.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								system/libs/Towns.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,131 @@ | |||||||
|  | <?php | ||||||
|  | /** | ||||||
|  |  * Project: MyAAC | ||||||
|  |  *     Automatic Account Creator for Open Tibia Servers | ||||||
|  |  * | ||||||
|  |  * This is free software; you can redistribute it and/or | ||||||
|  |  * modify it under the terms of the GNU Lesser General Public | ||||||
|  |  * License as published by the Free Software Foundation; either | ||||||
|  |  * version 2.1 of the License, or (at your option) any later version. | ||||||
|  |  * | ||||||
|  |  * This software is distributed in the hope that it will be useful, | ||||||
|  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||
|  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | ||||||
|  |  * Lesser General Public License for more details. | ||||||
|  |  * | ||||||
|  |  * You should have received a copy of the GNU Lesser General Public | ||||||
|  |  * License along with this library; if not, write to the Free Software | ||||||
|  |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | ||||||
|  |  * | ||||||
|  |  * @package   MyAAC | ||||||
|  |  * @author    Slawkens <slawkens@gmail.com> | ||||||
|  |  * @copyright 2020 MyAAC | ||||||
|  |  * @link      https://my-aac.org | ||||||
|  |  */ | ||||||
|  |  | ||||||
|  | use MyAAC\Models\Town; | ||||||
|  |  | ||||||
|  | /** | ||||||
|  |  * Class Towns | ||||||
|  |  */ | ||||||
|  | class Towns | ||||||
|  | { | ||||||
|  | 	/** | ||||||
|  | 	 * @var string | ||||||
|  | 	 */ | ||||||
|  | 	private static $filename = CACHE . 'towns.php'; | ||||||
|  |  | ||||||
|  | 	/** | ||||||
|  | 	 * Determine towns | ||||||
|  | 	 * | ||||||
|  | 	 * @return array | ||||||
|  | 	 */ | ||||||
|  | 	public static function determine() | ||||||
|  | 	{ | ||||||
|  | 		global $db; | ||||||
|  |  | ||||||
|  | 		if($db->hasTable('towns')) { | ||||||
|  | 			return self::getFromDatabase(); | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return self::getFromOTBM(); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	/** | ||||||
|  | 	 * Load cached towns file | ||||||
|  | 	 */ | ||||||
|  | 	public static function load() | ||||||
|  | 	{ | ||||||
|  | 		$towns = config('towns'); | ||||||
|  | 		if (file_exists(self::$filename)) { | ||||||
|  | 			$towns = require self::$filename; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		config(['towns', $towns]); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	/** | ||||||
|  | 	 * Save into cache file | ||||||
|  | 	 * | ||||||
|  | 	 * @return bool | ||||||
|  | 	 */ | ||||||
|  | 	public static function save() | ||||||
|  | 	{ | ||||||
|  | 		$towns = self::determine(); | ||||||
|  | 		if (count($towns) > 0) { | ||||||
|  | 			file_put_contents(self::$filename, '<?php return ' . var_export($towns, true) . ';', LOCK_EX); | ||||||
|  | 			return true; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return false; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	/** | ||||||
|  | 	 * Load from OTBM map file | ||||||
|  | 	 * | ||||||
|  | 	 * @return array | ||||||
|  | 	 */ | ||||||
|  | 	public static function getFromOTBM() | ||||||
|  | 	{ | ||||||
|  | 		$mapName = configLua('mapName'); | ||||||
|  | 		if (!isset($mapName)) { | ||||||
|  | 			$mapName = configLua('map'); | ||||||
|  | 			$mapFile = config('server_path') . $mapName; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if (strpos($mapName, '.otbm') === false) { | ||||||
|  | 			$mapName .= '.otbm'; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if (!isset($mapFile)) { | ||||||
|  | 			$mapFile = config('data_path') . 'world/' . $mapName; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if (strpos($mapFile, '.gz') !== false) { | ||||||
|  | 			$mapFile = str_replace('.gz', '', $mapFile); | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		$towns = []; | ||||||
|  | 		if (file_exists($mapFile)) { | ||||||
|  | 			ini_set('memory_limit', '-1'); | ||||||
|  |  | ||||||
|  | 			require LIBS . 'TownsReader.php'; | ||||||
|  | 			$townsReader = new TownsReader($mapFile); | ||||||
|  | 			$townsReader->load(); | ||||||
|  |  | ||||||
|  | 			$towns = $townsReader->get(); | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return $towns; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	/** | ||||||
|  | 	 * Load from database | ||||||
|  | 	 * | ||||||
|  | 	 * @return array | ||||||
|  | 	 */ | ||||||
|  | 	public static function getFromDatabase() | ||||||
|  | 	{ | ||||||
|  | 		return Town::pluck('name', 'id')->toArray(); | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										82
									
								
								system/libs/TownsReader.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										82
									
								
								system/libs/TownsReader.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,82 @@ | |||||||
|  | <?php | ||||||
|  | /* | ||||||
|  |     This file is part of OTSCMS (http://www.otscms.com/) project. | ||||||
|  |  | ||||||
|  |     Copyright (C) 2005 - 2007 Wrzasq (wrzasq@gmail.com) | ||||||
|  |  | ||||||
|  |     This program is free software; you can redistribute it and/or modify | ||||||
|  |     it under the terms of the GNU General Public License as published by | ||||||
|  |     the Free Software Foundation; either version 2 of the License, or | ||||||
|  |     (at your option) any later version. | ||||||
|  |  | ||||||
|  |     This program is distributed in the hope that it will be useful, | ||||||
|  |     but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||
|  |     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||||
|  |     GNU General Public License for more details. | ||||||
|  |  | ||||||
|  |     You should have received a copy of the GNU General Public License | ||||||
|  |     along with this program; if not, write to the Free Software | ||||||
|  |     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA | ||||||
|  | */ | ||||||
|  |  | ||||||
|  | /* | ||||||
|  |     This code bases on oryginal OTServ code for .otbm files - file iomapotbm.cpp rev.2141 | ||||||
|  | */ | ||||||
|  | class TownsReader | ||||||
|  | { | ||||||
|  | 	// node bytes | ||||||
|  | 	const ESCAPE_CHAR = 0xFD; | ||||||
|  | 	const NODE_START = 0xFE; | ||||||
|  |  | ||||||
|  | 	// map node types | ||||||
|  | 	const OTBM_TOWN = 13; | ||||||
|  |  | ||||||
|  | 	// file handler | ||||||
|  | 	protected $file; | ||||||
|  |  | ||||||
|  | 	// towns | ||||||
|  | 	private $towns = []; | ||||||
|  |  | ||||||
|  | 	// loads map .otbm file | ||||||
|  | 	public function __construct($file) | ||||||
|  | 	{ | ||||||
|  | 		// opens file for reading | ||||||
|  | 		$this->file = fopen($file, 'rb'); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function load() | ||||||
|  | 	{ | ||||||
|  | 		// checks if file is opened correctly | ||||||
|  | 		if ($this->file) { | ||||||
|  | 			// skips version | ||||||
|  | 			fseek($this->file, 4); | ||||||
|  |  | ||||||
|  | 			// reads nodes chain | ||||||
|  | 			while (!feof($this->file)) { | ||||||
|  | 				// reads byte | ||||||
|  | 				switch (ord(fgetc($this->file))) { | ||||||
|  | 					// maybe a town node | ||||||
|  | 					case self::NODE_START: | ||||||
|  | 						// reads node type | ||||||
|  | 						if (ord(fgetc($this->file)) == self::OTBM_TOWN) { | ||||||
|  | 							$id = unpack('L', fread($this->file, 4)); | ||||||
|  | 							$length = unpack('S', fread($this->file, 2)); | ||||||
|  |  | ||||||
|  | 							// reads town name | ||||||
|  | 							$this->towns[$id[1]] = fread($this->file, $length[1]); | ||||||
|  | 						} | ||||||
|  | 						break; | ||||||
|  |  | ||||||
|  | 					// escape next character - it might be NODE_START character which is in fact not | ||||||
|  | 					case self::ESCAPE_CHAR: | ||||||
|  | 						fgetc($this->file); | ||||||
|  | 						break; | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function get() { | ||||||
|  | 		return $this->towns; | ||||||
|  | 	} | ||||||
|  | } | ||||||
| @@ -8,8 +8,7 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
| 
 | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| namespace MyAAC\Cache; |  | ||||||
| 
 | 
 | ||||||
| /** | /** | ||||||
|  * Class Cache |  * Class Cache | ||||||
| @@ -42,30 +41,40 @@ class Cache | |||||||
| 	 */ | 	 */ | ||||||
| 	public static function generateInstance($engine = '', $prefix = '') | 	public static function generateInstance($engine = '', $prefix = '') | ||||||
| 	{ | 	{ | ||||||
| 		if (config('env') === 'dev') { | 		if(config('env') === 'dev') { | ||||||
| 			self::$instance = new self(); | 			self::$instance = new self(); | ||||||
| 			return self::$instance; | 			return self::$instance; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		switch (strtolower($engine)) { | 		switch(strtolower($engine)) { | ||||||
| 			case 'apc': | 			case 'apc': | ||||||
| 				self::$instance = new APC($prefix); | 				require 'cache_apc.php'; | ||||||
|  | 				self::$instance = new Cache_APC($prefix); | ||||||
| 				break; | 				break; | ||||||
| 
 | 
 | ||||||
| 			case 'apcu': | 			case 'apcu': | ||||||
| 				self::$instance = new APCu($prefix); | 				require 'cache_apcu.php'; | ||||||
|  | 				self::$instance = new Cache_APCu($prefix); | ||||||
|  | 				break; | ||||||
|  | 
 | ||||||
|  | 			case 'eaccelerator': | ||||||
|  | 				require 'cache_eaccelerator.php'; | ||||||
|  | 				self::$instance = new Cache_eAccelerator($prefix); | ||||||
| 				break; | 				break; | ||||||
| 
 | 
 | ||||||
| 			case 'xcache': | 			case 'xcache': | ||||||
| 				self::$instance = new XCache($prefix); | 				require 'cache_xcache.php'; | ||||||
|  | 				self::$instance = new Cache_XCache($prefix); | ||||||
| 				break; | 				break; | ||||||
| 
 | 
 | ||||||
| 			case 'file': | 			case 'file': | ||||||
| 				self::$instance = new File($prefix, CACHE); | 				require 'cache_file.php'; | ||||||
|  | 				self::$instance = new Cache_File($prefix, CACHE); | ||||||
| 				break; | 				break; | ||||||
| 
 | 
 | ||||||
| 			case 'php': | 			case 'php': | ||||||
| 				self::$instance = new PHP($prefix, CACHE); | 				require 'cache_php.php'; | ||||||
|  | 				self::$instance = new Cache_PHP($prefix, CACHE); | ||||||
| 				break; | 				break; | ||||||
| 
 | 
 | ||||||
| 			case 'auto': | 			case 'auto': | ||||||
| @@ -85,11 +94,13 @@ class Cache | |||||||
| 	 */ | 	 */ | ||||||
| 	public static function detect() | 	public static function detect() | ||||||
| 	{ | 	{ | ||||||
| 		if (function_exists('apc_fetch')) | 		if(function_exists('apc_fetch')) | ||||||
| 			return 'apc'; | 			return 'apc'; | ||||||
| 		else if (function_exists('apcu_fetch')) | 		else if(function_exists('apcu_fetch')) | ||||||
| 			return 'apcu'; | 			return 'apcu'; | ||||||
| 		else if (function_exists('xcache_get') && ini_get('xcache.var_size')) | 		else if(function_exists('eaccelerator_get')) | ||||||
|  | 			return 'eaccelerator'; | ||||||
|  | 		else if(function_exists('xcache_get') && ini_get('xcache.var_size')) | ||||||
| 			return 'xcache'; | 			return 'xcache'; | ||||||
| 
 | 
 | ||||||
| 		return 'file'; | 		return 'file'; | ||||||
| @@ -98,15 +109,12 @@ class Cache | |||||||
| 	/** | 	/** | ||||||
| 	 * @return bool | 	 * @return bool | ||||||
| 	 */ | 	 */ | ||||||
| 	public function enabled() | 	public function enabled() {return false;} | ||||||
| 	{ |  | ||||||
| 		return false; |  | ||||||
| 	} |  | ||||||
| 
 | 
 | ||||||
| 	public static function remember($key, $ttl, $callback) | 	public static function remember($key, $ttl, $callback) | ||||||
| 	{ | 	{ | ||||||
| 		$cache = self::getInstance(); | 		$cache = self::getInstance(); | ||||||
| 		if (!$cache->enabled()) { | 		if(!$cache->enabled()) { | ||||||
| 			return $callback(); | 			return $callback(); | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -116,7 +124,7 @@ class Cache | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		$value = $callback(); | 		$value = $callback(); | ||||||
| 		$cache->set($key, serialize($value), $ttl); | 		$cache->set($key, serialize($value),$ttl); | ||||||
| 		return $value; | 		return $value; | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -8,10 +8,9 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| namespace MyAAC\Cache; | class Cache_APC | ||||||
| 
 |  | ||||||
| class APC |  | ||||||
| { | { | ||||||
| 	private $prefix; | 	private $prefix; | ||||||
| 	private $enabled; | 	private $enabled; | ||||||
| @@ -32,25 +31,22 @@ class APC | |||||||
| 	public function get($key) | 	public function get($key) | ||||||
| 	{ | 	{ | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| 		if ($this->fetch($this->prefix . $key, $tmp)) { | 		if($this->fetch($this->prefix . $key, $tmp)) { | ||||||
| 			return $tmp; | 			return $tmp; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		return ''; | 		return ''; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function fetch($key, &$var) | 	public function fetch($key, &$var) { | ||||||
| 	{ |  | ||||||
| 		return ($var = apc_fetch($this->prefix . $key)) !== false; | 		return ($var = apc_fetch($this->prefix . $key)) !== false; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function delete($key) | 	public function delete($key) { | ||||||
| 	{ |  | ||||||
| 		apc_delete($this->prefix . $key); | 		apc_delete($this->prefix . $key); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function enabled() | 	public function enabled() { | ||||||
| 	{ |  | ||||||
| 		return $this->enabled; | 		return $this->enabled; | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -8,10 +8,9 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| namespace MyAAC\Cache; | class Cache_APCu | ||||||
| 
 |  | ||||||
| class APCu |  | ||||||
| { | { | ||||||
| 	private $prefix; | 	private $prefix; | ||||||
| 	private $enabled; | 	private $enabled; | ||||||
| @@ -32,25 +31,22 @@ class APCu | |||||||
| 	public function get($key) | 	public function get($key) | ||||||
| 	{ | 	{ | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| 		if ($this->fetch($this->prefix . $key, $tmp)) { | 		if($this->fetch($this->prefix . $key, $tmp)) { | ||||||
| 			return $tmp; | 			return $tmp; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		return ''; | 		return ''; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function fetch($key, &$var) | 	public function fetch($key, &$var) { | ||||||
| 	{ |  | ||||||
| 		return ($var = apcu_fetch($this->prefix . $key)) !== false; | 		return ($var = apcu_fetch($this->prefix . $key)) !== false; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function delete($key) | 	public function delete($key) { | ||||||
| 	{ |  | ||||||
| 		apcu_delete($this->prefix . $key); | 		apcu_delete($this->prefix . $key); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function enabled() | 	public function enabled() { | ||||||
| 	{ |  | ||||||
| 		return $this->enabled; | 		return $this->enabled; | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
							
								
								
									
										51
									
								
								system/libs/cache_eaccelerator.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								system/libs/cache_eaccelerator.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,51 @@ | |||||||
|  | <?php | ||||||
|  | /** | ||||||
|  |  * Cache eAccelerator class | ||||||
|  |  * | ||||||
|  |  * @package   MyAAC | ||||||
|  |  * @author    Slawkens <slawkens@gmail.com> | ||||||
|  |  * @author    Mark Samman (Talaturen) <marksamman@gmail.com> | ||||||
|  |  * @copyright 2019 MyAAC | ||||||
|  |  * @link      https://my-aac.org | ||||||
|  |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  |  | ||||||
|  | class Cache_eAccelerator | ||||||
|  | { | ||||||
|  | 	private $prefix; | ||||||
|  | 	private $enabled; | ||||||
|  |  | ||||||
|  | 	public function __construct($prefix = '') { | ||||||
|  | 		$this->prefix = $prefix; | ||||||
|  | 		$this->enabled = function_exists('eaccelerator_get'); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function set($key, $var, $ttl = 0) | ||||||
|  | 	{ | ||||||
|  | 		$key = $this->prefix . $key; | ||||||
|  | 		eaccelerator_rm($key); | ||||||
|  | 		eaccelerator_put($key, $var, $ttl); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function get($key) | ||||||
|  | 	{ | ||||||
|  | 		$tmp = ''; | ||||||
|  | 		if($this->fetch($this->prefix . $key, $tmp)) { | ||||||
|  | 			return $tmp; | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		return ''; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function fetch($key, &$var) { | ||||||
|  | 		return ($var = eaccelerator_get($this->prefix . $key)) !== null; | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function delete($key) { | ||||||
|  | 		eaccelerator_rm($this->prefix . $key); | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	public function enabled() { | ||||||
|  | 		return $this->enabled; | ||||||
|  | 	} | ||||||
|  | } | ||||||
| @@ -7,17 +7,15 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| namespace MyAAC\Cache; | class Cache_File | ||||||
| 
 |  | ||||||
| class File |  | ||||||
| { | { | ||||||
| 	private $prefix; | 	private $prefix; | ||||||
| 	private $dir; | 	private $dir; | ||||||
| 	private $enabled; | 	private $enabled; | ||||||
| 
 | 
 | ||||||
| 	public function __construct($prefix = '', $dir = '') | 	public function __construct($prefix = '', $dir = '') { | ||||||
| 	{ |  | ||||||
| 		$this->prefix = $prefix; | 		$this->prefix = $prefix; | ||||||
| 		$this->dir = $dir; | 		$this->dir = $dir; | ||||||
| 		$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir)); | 		$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir)); | ||||||
| @@ -38,7 +36,7 @@ class File | |||||||
| 	public function get($key) | 	public function get($key) | ||||||
| 	{ | 	{ | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| 		if ($this->fetch($key, $tmp)) { | 		if($this->fetch($key, $tmp)) { | ||||||
| 			return $tmp; | 			return $tmp; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -48,7 +46,7 @@ class File | |||||||
| 	public function fetch($key, &$var) | 	public function fetch($key, &$var) | ||||||
| 	{ | 	{ | ||||||
| 		$file = $this->_name($key); | 		$file = $this->_name($key); | ||||||
| 		if (!file_exists($file) || filemtime($file) < time()) { | 		if(!file_exists($file) || filemtime($file) < time()) { | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -59,18 +57,16 @@ class File | |||||||
| 	public function delete($key) | 	public function delete($key) | ||||||
| 	{ | 	{ | ||||||
| 		$file = $this->_name($key); | 		$file = $this->_name($key); | ||||||
| 		if (file_exists($file)) { | 		if(file_exists($file)) { | ||||||
| 			unlink($file); | 			unlink($file); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function enabled() | 	public function enabled() { | ||||||
| 	{ |  | ||||||
| 		return $this->enabled; | 		return $this->enabled; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	private function _name($key) | 	private function _name($key) { | ||||||
| 	{ |  | ||||||
| 		return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key)); | 		return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key)); | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -7,17 +7,15 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| namespace MyAAC\Cache; | class Cache_PHP | ||||||
| 
 |  | ||||||
| class PHP |  | ||||||
| { | { | ||||||
| 	private $prefix; | 	private $prefix; | ||||||
| 	private $dir; | 	private $dir; | ||||||
| 	private $enabled; | 	private $enabled; | ||||||
| 
 | 
 | ||||||
| 	public function __construct($prefix = '', $dir = '') | 	public function __construct($prefix = '', $dir = '') { | ||||||
| 	{ |  | ||||||
| 		$this->prefix = $prefix; | 		$this->prefix = $prefix; | ||||||
| 		$this->dir = $dir; | 		$this->dir = $dir; | ||||||
| 		$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir)); | 		$this->enabled = (file_exists($this->dir) && is_dir($this->dir) && is_writable($this->dir)); | ||||||
| @@ -44,7 +42,7 @@ class PHP | |||||||
| 	public function get($key) | 	public function get($key) | ||||||
| 	{ | 	{ | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| 		if ($this->fetch($key, $tmp)) { | 		if($this->fetch($key, $tmp)) { | ||||||
| 			return $tmp; | 			return $tmp; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -54,7 +52,7 @@ class PHP | |||||||
| 	public function fetch($key, &$var) | 	public function fetch($key, &$var) | ||||||
| 	{ | 	{ | ||||||
| 		$file = $this->_name($key); | 		$file = $this->_name($key); | ||||||
| 		if (!file_exists($file) || filemtime($file) < time()) { | 		if(!file_exists($file) || filemtime($file) < time()) { | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -66,18 +64,16 @@ class PHP | |||||||
| 	public function delete($key) | 	public function delete($key) | ||||||
| 	{ | 	{ | ||||||
| 		$file = $this->_name($key); | 		$file = $this->_name($key); | ||||||
| 		if (file_exists($file)) { | 		if(file_exists($file)) { | ||||||
| 			unlink($file); | 			unlink($file); | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function enabled() | 	public function enabled() { | ||||||
| 	{ |  | ||||||
| 		return $this->enabled; | 		return $this->enabled; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	private function _name($key) | 	private function _name($key) { | ||||||
| 	{ |  | ||||||
| 		return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key) . '.php'); | 		return sprintf('%s%s%s', $this->dir, $this->prefix, sha1($key) . '.php'); | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -8,16 +8,14 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
|  | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| 
 | 
 | ||||||
| namespace MyAAC\Cache; | class Cache_XCache | ||||||
| 
 |  | ||||||
| class XCache |  | ||||||
| { | { | ||||||
| 	private $prefix; | 	private $prefix; | ||||||
| 	private $enabled; | 	private $enabled; | ||||||
| 
 | 
 | ||||||
| 	public function __construct($prefix = '') | 	public function __construct($prefix = '') { | ||||||
| 	{ |  | ||||||
| 		$this->prefix = $prefix; | 		$this->prefix = $prefix; | ||||||
| 		$this->enabled = function_exists('xcache_get') && ini_get('xcache.var_size'); | 		$this->enabled = function_exists('xcache_get') && ini_get('xcache.var_size'); | ||||||
| 	} | 	} | ||||||
| @@ -32,7 +30,7 @@ class XCache | |||||||
| 	public function get($key) | 	public function get($key) | ||||||
| 	{ | 	{ | ||||||
| 		$tmp = ''; | 		$tmp = ''; | ||||||
| 		if ($this->fetch($this->prefix . $key, $tmp)) { | 		if($this->fetch($this->prefix . $key, $tmp)) { | ||||||
| 			return $tmp; | 			return $tmp; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -42,7 +40,7 @@ class XCache | |||||||
| 	public function fetch($key, &$var) | 	public function fetch($key, &$var) | ||||||
| 	{ | 	{ | ||||||
| 		$key = $this->prefix . $key; | 		$key = $this->prefix . $key; | ||||||
| 		if (!xcache_isset($key)) { | 		if(!xcache_isset($key)) { | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| @@ -50,13 +48,11 @@ class XCache | |||||||
| 		return true; | 		return true; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function delete($key) | 	public function delete($key) { | ||||||
| 	{ |  | ||||||
| 		xcache_unset($this->prefix . $key); | 		xcache_unset($this->prefix . $key); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	public function enabled() | 	public function enabled() { | ||||||
| 	{ |  | ||||||
| 		return $this->enabled; | 		return $this->enabled; | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| @@ -1,8 +1,5 @@ | |||||||
| <?php | <?php | ||||||
| 
 | 
 | ||||||
| namespace MyAAC; |  | ||||||
| 
 |  | ||||||
| use MyAAC\Cache\Cache; |  | ||||||
| use MyAAC\Models\Changelog as ModelsChangelog; | use MyAAC\Models\Changelog as ModelsChangelog; | ||||||
| 
 | 
 | ||||||
| class Changelog | class Changelog | ||||||
| @@ -88,17 +85,16 @@ class Changelog | |||||||
| 		return true; | 		return true; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	static public function toggleHide($id, &$errors, &$status) | 	static public function toggleHidden($id, &$errors, &$status) | ||||||
| 	{ | 	{ | ||||||
| 		if(isset($id)) | 		if(isset($id)) | ||||||
| 		{ | 		{ | ||||||
| 			$row = ModelsChangelog::find($id); | 			$row = ModelsChangelog::find($id); | ||||||
| 			if ($row) { | 			if ($row) { | ||||||
| 				$row->hide = $row->hide == 1 ? 0 : 1; | 				$row->hidden = $row->hidden == 1 ? 0 : 1; | ||||||
| 				if (!$row->save()) { | 				if (!$row->save()) { | ||||||
| 					$errors[] = 'Fail during toggle hide Changelog.'; | 					$errors[] = 'Fail during toggle hidden Changelog.'; | ||||||
| 				} | 				} | ||||||
| 				$status = $row->hide; |  | ||||||
| 			} else { | 			} else { | ||||||
| 				$errors[] = 'Changelog with id ' . $id . ' does not exists.'; | 				$errors[] = 'Changelog with id ' . $id . ' does not exists.'; | ||||||
| 			} | 			} | ||||||
| @@ -9,13 +9,14 @@ | |||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| namespace MyAAC; |  | ||||||
| 
 |  | ||||||
| use MyAAC\Models\Monster; | use MyAAC\Models\Monster; | ||||||
| 
 | 
 | ||||||
| class Monsters { | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
|  | 
 | ||||||
|  | require_once LIBS . 'items.php'; | ||||||
|  | class Creatures { | ||||||
| 	/** | 	/** | ||||||
| 	 * @var \OTS_MonstersList | 	 * @var OTS_MonstersList | ||||||
| 	 */ | 	 */ | ||||||
| 	private static $monstersList; | 	private static $monstersList; | ||||||
| 	private static $lastError = ''; | 	private static $lastError = ''; | ||||||
| @@ -23,7 +24,7 @@ class Monsters { | |||||||
| 	public static function loadFromXML($show = false) { | 	public static function loadFromXML($show = false) { | ||||||
| 		try { | 		try { | ||||||
| 			Monster::query()->delete(); | 			Monster::query()->delete(); | ||||||
| 		} catch(\Exception $error) {} | 		} catch(Exception $error) {} | ||||||
| 
 | 
 | ||||||
| 		if($show) { | 		if($show) { | ||||||
| 			echo '<h2>Reload monsters.</h2>'; | 			echo '<h2>Reload monsters.</h2>'; | ||||||
| @@ -31,9 +32,9 @@ class Monsters { | |||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
| 		try { | 		try { | ||||||
| 			self::$monstersList = new \OTS_MonstersList(config('data_path') . 'monster/'); | 			self::$monstersList = new OTS_MonstersList(config('data_path') . 'monster/'); | ||||||
| 		} | 		} | ||||||
| 		catch(\Exception $e) { | 		catch(Exception $e) { | ||||||
| 			self::$lastError = $e->getMessage(); | 			self::$lastError = $e->getMessage(); | ||||||
| 			return false; | 			return false; | ||||||
| 		} | 		} | ||||||
| @@ -118,7 +119,7 @@ class Monsters { | |||||||
| 			$summons = $monster->getSummons(); | 			$summons = $monster->getSummons(); | ||||||
| 			$loot = $monster->getLoot(); | 			$loot = $monster->getLoot(); | ||||||
| 			foreach($loot as &$item) { | 			foreach($loot as &$item) { | ||||||
| 				if(!\Validator::number($item['id'])) { | 				if(!Validator::number($item['id'])) { | ||||||
| 					if(isset($items[$item['id']])) { | 					if(isset($items[$item['id']])) { | ||||||
| 						$item['id'] = $items[$item['id']]; | 						$item['id'] = $items[$item['id']]; | ||||||
| 					} | 					} | ||||||
| @@ -160,7 +161,7 @@ class Monsters { | |||||||
| 						success('Added: ' . $name . '<br/>'); | 						success('Added: ' . $name . '<br/>'); | ||||||
| 					} | 					} | ||||||
| 				} | 				} | ||||||
| 				catch(\Exception $error) { | 				catch(Exception $error) { | ||||||
| 					if($show) { | 					if($show) { | ||||||
| 						warning('Error while adding monster (' . $name . '): ' . $error->getMessage()); | 						warning('Error while adding monster (' . $name . '): ' . $error->getMessage()); | ||||||
| 					} | 					} | ||||||
| @@ -7,8 +7,7 @@ | |||||||
|  * @copyright 2019 MyAAC |  * @copyright 2019 MyAAC | ||||||
|  * @link      https://my-aac.org |  * @link      https://my-aac.org | ||||||
|  */ |  */ | ||||||
| 
 | defined('MYAAC') or die('Direct access not allowed!'); | ||||||
| namespace MyAAC; |  | ||||||
| 
 | 
 | ||||||
| class Data | class Data | ||||||
| { | { | ||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user