├── LICENSE ├── README.md ├── README_bitrix24.md ├── README_suitecrm.md ├── ami_connector.go ├── b24_connector.go ├── conf.example.yml ├── connect ├── b24 │ ├── b24.go │ ├── call.go │ ├── endpoint.go │ ├── entitiy.go │ └── rest.go ├── connect.go ├── suitecrm │ ├── call.go │ ├── endpoint.go │ ├── entity.go │ ├── rest.go │ ├── stream.go │ ├── suitecrm-asterlink-module │ │ ├── LICENSE.txt │ │ ├── custom │ │ │ └── Extension │ │ │ │ ├── application │ │ │ │ └── Ext │ │ │ │ │ ├── EntryPointRegistry │ │ │ │ │ └── AsterLinkEntryPoint.php │ │ │ │ │ ├── Include │ │ │ │ │ └── sf_asterlink.php │ │ │ │ │ └── Language │ │ │ │ │ ├── en_us.AsterLink.php │ │ │ │ │ └── ru_RU.AsterLink.php │ │ │ │ └── modules │ │ │ │ ├── Administration │ │ │ │ └── Ext │ │ │ │ │ ├── Administration │ │ │ │ │ └── asterlink_admin.php │ │ │ │ │ └── Language │ │ │ │ │ ├── en_us.AsterLink.php │ │ │ │ │ └── ru_RU.AsterLink.php │ │ │ │ ├── Calls │ │ │ │ └── Ext │ │ │ │ │ ├── Language │ │ │ │ │ ├── en_us.AsterLink.php │ │ │ │ │ └── ru_RU.AsterLink.php │ │ │ │ │ └── Vardefs │ │ │ │ │ └── AsterLink_Override_Calls_duration_hours.php │ │ │ │ └── Users │ │ │ │ └── Ext │ │ │ │ └── Language │ │ │ │ ├── en_us.AsterLink.php │ │ │ │ └── ru_RU.AsterLink.php │ │ ├── extensions │ │ │ └── asterlink │ │ │ │ ├── app │ │ │ │ ├── angular.json │ │ │ │ ├── karma.conf.js │ │ │ │ ├── src │ │ │ │ │ ├── app │ │ │ │ │ │ ├── app.component.css │ │ │ │ │ │ ├── app.component.html │ │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ │ ├── app.component.ts │ │ │ │ │ │ └── app.module.ts │ │ │ │ │ ├── assets │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── bootstrap.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── asterlink │ │ │ │ │ │ │ ├── asterlink.component.html │ │ │ │ │ │ │ └── asterlink.component.ts │ │ │ │ │ │ └── call-card │ │ │ │ │ │ │ ├── call-card.component.css │ │ │ │ │ │ │ ├── call-card.component.html │ │ │ │ │ │ │ └── call-card.component.ts │ │ │ │ │ ├── directives │ │ │ │ │ │ └── stop-tel-link.directive.ts │ │ │ │ │ ├── environments │ │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ │ └── environment.ts │ │ │ │ │ ├── extension.module.ts │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── fields │ │ │ │ │ │ └── phone-field │ │ │ │ │ │ │ ├── phone-field.component.css │ │ │ │ │ │ │ ├── phone-field.component.html │ │ │ │ │ │ │ └── phone-field.component.ts │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main.ts │ │ │ │ │ ├── pipes │ │ │ │ │ │ ├── app-strings.pipe.ts │ │ │ │ │ │ ├── call-duration.pipe.ts │ │ │ │ │ │ ├── module-name.pipe.ts │ │ │ │ │ │ ├── record-link.pipe.ts │ │ │ │ │ │ ├── rel-query-param.pipe.ts │ │ │ │ │ │ └── tel-link.pipe.ts │ │ │ │ │ ├── polyfills.ts │ │ │ │ │ ├── services │ │ │ │ │ │ └── asterlink.service.ts │ │ │ │ │ ├── styles.css │ │ │ │ │ └── test.ts │ │ │ │ ├── tsconfig.app.json │ │ │ │ ├── tsconfig.spec.json │ │ │ │ ├── tslint.json │ │ │ │ ├── webpack.config.js │ │ │ │ └── webpack.prod.config.js │ │ │ │ └── config │ │ │ │ ├── extension.php │ │ │ │ └── services.yaml │ │ ├── manifest.php │ │ ├── modules │ │ │ └── AsterLink │ │ │ │ ├── AsterLinkEndPoint.php │ │ │ │ ├── AsterLinkEntryPoint.php │ │ │ │ ├── AsterLinkHook.php │ │ │ │ ├── action_view_map.php │ │ │ │ ├── controller.php │ │ │ │ ├── javascript │ │ │ │ ├── asterlink.js │ │ │ │ └── asterlink.worker.js │ │ │ │ ├── language │ │ │ │ ├── en_us.lang.php │ │ │ │ └── ru_RU.lang.php │ │ │ │ ├── tpls │ │ │ │ └── config.tpl │ │ │ │ ├── utils.php │ │ │ │ └── views │ │ │ │ └── view.config.php │ │ ├── post_execute.php │ │ ├── post_execute_040_to_050.php │ │ └── post_uninstall.php │ └── suitecrm.go └── test.go ├── go.mod ├── go.sum ├── main.go └── suitecrm_connector.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/README.md -------------------------------------------------------------------------------- /README_bitrix24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/README_bitrix24.md -------------------------------------------------------------------------------- /README_suitecrm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/README_suitecrm.md -------------------------------------------------------------------------------- /ami_connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/ami_connector.go -------------------------------------------------------------------------------- /b24_connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/b24_connector.go -------------------------------------------------------------------------------- /conf.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/conf.example.yml -------------------------------------------------------------------------------- /connect/b24/b24.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/b24/b24.go -------------------------------------------------------------------------------- /connect/b24/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/b24/call.go -------------------------------------------------------------------------------- /connect/b24/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/b24/endpoint.go -------------------------------------------------------------------------------- /connect/b24/entitiy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/b24/entitiy.go -------------------------------------------------------------------------------- /connect/b24/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/b24/rest.go -------------------------------------------------------------------------------- /connect/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/connect.go -------------------------------------------------------------------------------- /connect/suitecrm/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/call.go -------------------------------------------------------------------------------- /connect/suitecrm/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/endpoint.go -------------------------------------------------------------------------------- /connect/suitecrm/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/entity.go -------------------------------------------------------------------------------- /connect/suitecrm/rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/rest.go -------------------------------------------------------------------------------- /connect/suitecrm/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/stream.go -------------------------------------------------------------------------------- /connect/suitecrm/suitecrm-asterlink-module/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/suitecrm-asterlink-module/LICENSE.txt -------------------------------------------------------------------------------- /connect/suitecrm/suitecrm-asterlink-module/custom/Extension/application/Ext/EntryPointRegistry/AsterLinkEntryPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serfreeman1337/asterlink/HEAD/connect/suitecrm/suitecrm-asterlink-module/custom/Extension/application/Ext/EntryPointRegistry/AsterLinkEntryPoint.php -------------------------------------------------------------------------------- /connect/suitecrm/suitecrm-asterlink-module/custom/Extension/application/Ext/Include/sf_asterlink.php: -------------------------------------------------------------------------------- 1 |