├── .gitignore ├── AUTHORS ├── COPYING ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ ├── FOSUserBundle │ │ └── views │ │ │ ├── Security │ │ │ └── login.html.twig │ │ │ └── layout.html.twig │ └── views │ │ ├── admin │ │ └── changes.html.twig │ │ ├── base.html.twig │ │ ├── config │ │ ├── opensips │ │ │ └── opensips_custom_listeners.cfg.twig │ │ └── rtpengine │ │ │ └── interfaces.twig │ │ └── default │ │ └── index.html.twig └── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── easyadmin.yml │ ├── easyadmin │ ├── entities │ │ ├── MediaIps.yml │ │ ├── RoutingRegisters.yml │ │ ├── RoutingRequests.yml │ │ ├── SipListeners.yml │ │ └── User.yml │ └── menu.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ ├── security.yml │ └── services.yml ├── bin ├── console └── symfony_requirements ├── composer.json ├── composer.lock ├── config ├── apache2 │ └── 001-itsbc-web.conf ├── opensips │ ├── opensips.cfg │ ├── opensips_custom_listeners.cfg │ └── opensips_database.cfg └── rtpengine │ └── interfaces ├── debian ├── changelog ├── compat ├── conffiles ├── control ├── install ├── links ├── postinst ├── rules └── systemd │ ├── opensips-restarter.path │ ├── opensips-restarter.service │ ├── rtpengine-restarter.path │ └── rtpengine-restarter.service ├── phpunit.xml.dist ├── schema └── initial.sql ├── scripts ├── osipslog └── osipstail ├── src ├── .htaccess └── AppBundle │ ├── AppBundle.php │ ├── Controller │ ├── AdminController.php │ ├── ChangesController.php │ └── DefaultController.php │ ├── DependencyInjection │ └── Compiler │ │ └── LifecycleCompiler.php │ ├── Entity │ ├── MediaIps.php │ ├── RoutingRegisters.php │ ├── RoutingRequests.php │ ├── SipListeners.php │ └── User.php │ ├── Event │ └── Dispatcher.php │ ├── EventListener │ └── OpensipsService.php │ └── Repository │ ├── MediaIpsRepository.php │ ├── RoutingRegistersRepository.php │ ├── RoutingRequestsRepository.php │ └── SipListenersRepository.php ├── tests └── AppBundle │ └── Controller │ └── DefaultControllerTest.php ├── var ├── SymfonyRequirements.php ├── cache │ └── .gitkeep ├── logs │ └── .gitkeep └── sessions │ └── .gitkeep └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/FOSUserBundle/views/Security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/FOSUserBundle/views/Security/login.html.twig -------------------------------------------------------------------------------- /app/Resources/FOSUserBundle/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/FOSUserBundle/views/layout.html.twig -------------------------------------------------------------------------------- /app/Resources/views/admin/changes.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/views/admin/changes.html.twig -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/Resources/views/config/opensips/opensips_custom_listeners.cfg.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/views/config/opensips/opensips_custom_listeners.cfg.twig -------------------------------------------------------------------------------- /app/Resources/views/config/rtpengine/interfaces.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/views/config/rtpengine/interfaces.twig -------------------------------------------------------------------------------- /app/Resources/views/default/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/Resources/views/default/index.html.twig -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/easyadmin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin.yml -------------------------------------------------------------------------------- /app/config/easyadmin/entities/MediaIps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/entities/MediaIps.yml -------------------------------------------------------------------------------- /app/config/easyadmin/entities/RoutingRegisters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/entities/RoutingRegisters.yml -------------------------------------------------------------------------------- /app/config/easyadmin/entities/RoutingRequests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/entities/RoutingRequests.yml -------------------------------------------------------------------------------- /app/config/easyadmin/entities/SipListeners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/entities/SipListeners.yml -------------------------------------------------------------------------------- /app/config/easyadmin/entities/User.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/entities/User.yml -------------------------------------------------------------------------------- /app/config/easyadmin/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/easyadmin/menu.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/bin/console -------------------------------------------------------------------------------- /bin/symfony_requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/bin/symfony_requirements -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/composer.lock -------------------------------------------------------------------------------- /config/apache2/001-itsbc-web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/config/apache2/001-itsbc-web.conf -------------------------------------------------------------------------------- /config/opensips/opensips.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/config/opensips/opensips.cfg -------------------------------------------------------------------------------- /config/opensips/opensips_custom_listeners.cfg: -------------------------------------------------------------------------------- 1 | # SAMPLE 2 | listen=udp:127.0.0.1:4060 3 | 4 | -------------------------------------------------------------------------------- /config/opensips/opensips_database.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/config/opensips/opensips_database.cfg -------------------------------------------------------------------------------- /config/rtpengine/interfaces: -------------------------------------------------------------------------------- 1 | INTERFACES="--interface=SAMPLE/127.0.0.1" 2 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/conffiles -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/control -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/install -------------------------------------------------------------------------------- /debian/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/links -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/systemd/opensips-restarter.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/systemd/opensips-restarter.path -------------------------------------------------------------------------------- /debian/systemd/opensips-restarter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/systemd/opensips-restarter.service -------------------------------------------------------------------------------- /debian/systemd/rtpengine-restarter.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/systemd/rtpengine-restarter.path -------------------------------------------------------------------------------- /debian/systemd/rtpengine-restarter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/debian/systemd/rtpengine-restarter.service -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /schema/initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/schema/initial.sql -------------------------------------------------------------------------------- /scripts/osipslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/scripts/osipslog -------------------------------------------------------------------------------- /scripts/osipstail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/scripts/osipstail -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/AppBundle/AppBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/AppBundle.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Controller/AdminController.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/ChangesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Controller/ChangesController.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/AppBundle/DependencyInjection/Compiler/LifecycleCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/DependencyInjection/Compiler/LifecycleCompiler.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/MediaIps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Entity/MediaIps.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/RoutingRegisters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Entity/RoutingRegisters.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/RoutingRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Entity/RoutingRequests.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/SipListeners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Entity/SipListeners.php -------------------------------------------------------------------------------- /src/AppBundle/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Entity/User.php -------------------------------------------------------------------------------- /src/AppBundle/Event/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Event/Dispatcher.php -------------------------------------------------------------------------------- /src/AppBundle/EventListener/OpensipsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/EventListener/OpensipsService.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/MediaIpsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Repository/MediaIpsRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/RoutingRegistersRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Repository/RoutingRegistersRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/RoutingRequestsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Repository/RoutingRequestsRepository.php -------------------------------------------------------------------------------- /src/AppBundle/Repository/SipListenersRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/src/AppBundle/Repository/SipListenersRepository.php -------------------------------------------------------------------------------- /tests/AppBundle/Controller/DefaultControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/tests/AppBundle/Controller/DefaultControllerTest.php -------------------------------------------------------------------------------- /var/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/var/SymfonyRequirements.php -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irontec/itsbc/HEAD/web/robots.txt --------------------------------------------------------------------------------