bahrianpro / yii2-url-shortener-1

Example of Shortener URL Application on Yii2.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yii2 URL Shortener


Основано на Yii 2 Basic Project Template. ( Based On Yii 2 Basic Project Template. )

Пользователю предоставляется поле для ввода URL, по нажатию кнопки «Уменьшить» пользователю предоставляется короткая ссылка с текущим доменом сайта. ( The user is provided with a field for entering a URL, by pressing the "Reduce" button, the user is provided with a short link with the current domain of the site. )

При переходе по уменьшенной ссылке юзер будет перенаправлен на исходную страницу. ( When clicking on the reduced link, the user will be redirected to the original page. )

Пользователь имеет возможность: ( The user has the ability to: )

  • создать свою короткую ссылку; ( * create your own short link; )
  • возможность создавать ссылки с ограниченным сроком жизни. ( * the ability to create links with a limited lifetime. )

Пользователь, создающий ссылку также получает ссылку на статистику переходов: ( The user who creates the link also receives a link to conversion statistics: )

  • дата и время перехода; ( * date and time of transition; )
  • гео-информацию (страна, город); ( * geo-information (country, city); )
  • наименование и версия браузера и ОС. ( * name and version of browser and OS. )

DIRECTORY STRUCTURE

  assets/             contains assets definition
  commands/           contains console commands (controllers)
  config/             contains application configurations
  controllers/        contains Web controller classes
  migrations/         contains migrations classes
  models/             contains model classes
  runtime/            contains files generated during runtime
  tests/              contains various tests for the basic application
  vendor/             contains dependent 3rd-party packages
  views/              contains view files for the Web application
  web/                contains the entry script and Web resources

REQUIREMENTS

The minimum requirement by this project template that your Web server supports PHP 7.1.0.

INSTALLATION

Install via Composer

If you do not have Composer, you may install it by following the instructions at getcomposer.org.

You can then install this project template using the following command:

php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic basic

Now you should be able to access the application through the following URL, assuming basic is the directory directly under the Web root.

http://localhost/basic/web/

Конфигурация ( Configuration )

База даных ( Database )

Создать базу данных и внести необходимые изменения в файл config/db.php, например: ( Create a database and make the necessary changes to the config/db.php file, for example: )

return [
    'class' => 'yii\db\Connection',
    'dsn' => 'mysql:host=localhost;dbname=yii2-url-shortener',
    'username' => 'root',
    'password' => '1234',
    'charset' => 'utf8',
];

Применить миграции, выполнив команду: ( Apply migrations by running the command: )

php yii migrate

Тестирование ( Testing )

Перед запуском тестов необходимо создать тестовую БД и указать её в настройках файла config/test_db.php, например: ( Before running tests, you need to create a test database and specify it in the settings of the file config / test_db.php, for example: )

$db['dsn'] = 'mysql:host=localhost;dbname=yii2-url-shortener_test';

Тесты запускаются командой ( Tests are run by the command )

vendor/bin/codecept run

About

Example of Shortener URL Application on Yii2.


Languages

Language:PHP 96.6%Language:CSS 2.3%Language:Batchfile 1.1%