├── .env.dist ├── .env.testing.dist ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── .travis └── php.ini ├── COPYRIGHT ├── LICENSE ├── README.md ├── app ├── Client │ ├── ClassifierExternalClient.php │ ├── GuzzleAdPayClient.php │ ├── GuzzleAdSelectClient.php │ ├── GuzzleAdUserClient.php │ ├── GuzzleAdsOperatorClient.php │ ├── GuzzleAdsRpcClient.php │ ├── GuzzleClassifierExternalClient.php │ ├── GuzzleDemandClient.php │ ├── GuzzleLicenseClient.php │ ├── GuzzlePublisherBannerClassifier.php │ ├── GuzzleSupplyClient.php │ ├── LocalPublisherBannerClassifier.php │ ├── Mapper │ │ ├── AbstractFilterMapper.php │ │ ├── AdPay │ │ │ ├── DemandBidStrategyMapper.php │ │ │ ├── DemandCampaignMapper.php │ │ │ └── DemandEventMapper.php │ │ ├── AdSelect │ │ │ ├── BoostPaymentMapper.php │ │ │ ├── CampaignMapper.php │ │ │ ├── CaseClickMapper.php │ │ │ ├── CaseMapper.php │ │ │ ├── CasePaymentMapper.php │ │ │ ├── EventMapper.php │ │ │ ├── EventPaymentMapper.php │ │ │ └── TargetingMapper.php │ │ └── JsonValueMapper.php │ └── MultipleExternalClassifierAdClassifyClient.php ├── Console │ ├── Commands │ │ ├── AdPayCampaignExportCommand.php │ │ ├── AdPayEventExportCommand.php │ │ ├── AdPayGetPayments.php │ │ ├── AdSelectCaseExportCommand.php │ │ ├── AdSelectCasePaymentsExportCommand.php │ │ ├── AdSelectInventoryExporterCommand.php │ │ ├── AdsBroadcastHost.php │ │ ├── AdsFetchHosts.php │ │ ├── AdsMe.php │ │ ├── AdsProcessTx.php │ │ ├── AggregateCaseStatisticsPublisherCommand.php │ │ ├── AggregateStatisticsAdvertiserCommand.php │ │ ├── BackupAdServerStatisticsCommand.php │ │ ├── BannerClassificationsCreateCommand.php │ │ ├── BannerClassificationsRequestCommand.php │ │ ├── BaseCommand.php │ │ ├── CdnResetBannersCommand.php │ │ ├── CdnUploadBannersCommand.php │ │ ├── ClearEvents.php │ │ ├── ClearReports.php │ │ ├── CreateAdminUserCommand.php │ │ ├── CreateOauthClientCommand.php │ │ ├── DeleteUserCommand.php │ │ ├── DemandBlockRequiredAmount.php │ │ ├── DemandPreparePayments.php │ │ ├── DemandProcessPayments.php │ │ ├── DemandSendPayments.php │ │ ├── EmailNotificationsSendCommand.php │ │ ├── ExpiredWithdrawalCancellationCommand.php │ │ ├── FetchExchangeRateCommand.php │ │ ├── FetchLicenseCommand.php │ │ ├── InventoryImporterCommand.php │ │ ├── ListAdministratorsCommand.php │ │ ├── SendEmailsCommand.php │ │ ├── SendJoiningFee.php │ │ ├── SiteAdsTxtCheckCommand.php │ │ ├── SiteClassificationUpdateCommand.php │ │ ├── SiteRankReassessRequestCommand.php │ │ ├── SiteRankUpdateCommand.php │ │ ├── SupplyDefaultPlaceholdersReloadCommand.php │ │ ├── SupplyProcessPayments.php │ │ ├── TargetingReachCompute.php │ │ ├── TargetingReachFetch.php │ │ ├── TransferMoneyToColdWalletCommand.php │ │ ├── UpdateFilteringOptions.php │ │ ├── UpdateServeDomainsCommand.php │ │ ├── UpdateTargetingOptions.php │ │ ├── UpsertConfigurationCommand.php │ │ ├── WalletAmountCheckCommand.php │ │ └── WalletWithdrawalCheckCommand.php │ ├── Kernel.php │ ├── LineFormatterTrait.php │ └── Locker.php ├── Events │ ├── CampaignCreating.php │ ├── CreativeSha1.php │ ├── GenerateUUID.php │ ├── ReportMetaDeleting.php │ ├── ServerEvent.php │ └── UserCreated.php ├── Exceptions │ ├── Advertiser │ │ └── MissingEventsException.php │ ├── ConsoleCommandException.php │ ├── Demand │ │ ├── AdPayReportMissingEventsException.php │ │ └── AdPayReportNotReadyException.php │ ├── Handler.php │ ├── JobException.php │ ├── MissingInitialConfigurationException.php │ └── Publisher │ │ └── MissingCasesException.php ├── Facades │ └── DB.php ├── Http │ ├── Controller.php │ ├── Controllers │ │ ├── ClassificationController.php │ │ ├── ClassifyController.php │ │ ├── ConversionController.php │ │ ├── DemandController.php │ │ ├── InfoController.php │ │ ├── Manager │ │ │ ├── AdminController.php │ │ │ ├── ApiCampaignsController.php │ │ │ ├── ApiTaxonomyController.php │ │ │ ├── AuthController.php │ │ │ ├── BidStrategyController.php │ │ │ ├── CampaignsController.php │ │ │ ├── ClassifierController.php │ │ │ ├── ConfigController.php │ │ │ ├── InvoicesController.php │ │ │ ├── NotificationsController.php │ │ │ ├── OAuthController.php │ │ │ ├── OptionsController.php │ │ │ ├── RefLinksController.php │ │ │ ├── ServerConfigurationController.php │ │ │ ├── ServerMonitoringController.php │ │ │ ├── SettingsController.php │ │ │ ├── Simulator.php │ │ │ ├── SitesController.php │ │ │ ├── StatisticsGlobalController.php │ │ │ ├── StatsController.php │ │ │ ├── SupplyBannerPlaceholderController.php │ │ │ ├── UsersController.php │ │ │ └── WalletController.php │ │ └── SupplyController.php │ ├── GzippedStreamedResponse.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AddHeadersToResponse.php │ │ ├── CamelizeJsonResponse.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── Impersonation.php │ │ ├── RequireAdminAccess.php │ │ ├── RequireAdvertiserAccess.php │ │ ├── RequireAgencyAccess.php │ │ ├── RequireGuestAccess.php │ │ ├── RequireModeratorAccess.php │ │ ├── RequirePublisherAccess.php │ │ ├── SnakizeRequest.php │ │ ├── StatisticsCollectorAccess.php │ │ ├── TrackUserActivity.php │ │ └── TrustProxies.php │ ├── Request │ │ └── Classifier │ │ │ └── NetworkBannerFilter.php │ ├── Requests │ │ ├── BidStrategyRequest.php │ │ ├── Campaign │ │ │ ├── BannerValidator.php │ │ │ ├── CampaignTargetingProcessor.php │ │ │ └── TargetingProcessor.php │ │ ├── Common │ │ │ └── LimitValidator.php │ │ ├── Filter │ │ │ ├── BoolFilter.php │ │ │ ├── DateFilter.php │ │ │ ├── Filter.php │ │ │ ├── FilterCollection.php │ │ │ ├── FilterType.php │ │ │ └── StringFilter.php │ │ ├── FormRequest.php │ │ ├── GetSiteCode.php │ │ ├── Order │ │ │ ├── OrderBy.php │ │ │ └── OrderByCollection.php │ │ ├── TargetingReachRequest.php │ │ └── UpdateRegulation.php │ ├── Resources │ │ ├── BannerResource.php │ │ ├── CampaignResource.php │ │ ├── GenericCollection.php │ │ ├── HostResource.php │ │ ├── SupplyBannerPlaceholderResource.php │ │ └── UserResource.php │ ├── Response │ │ ├── Classifier │ │ │ ├── ClassifierResponse.php │ │ │ └── Item.php │ │ ├── InfoResponse.php │ │ ├── LicenseResponse.php │ │ ├── Site │ │ │ └── SizesResponse.php │ │ └── Stats │ │ │ ├── AdvertiserReportResponse.php │ │ │ ├── BidStrategySpreadsheetResponse.php │ │ │ ├── PublisherReportResponse.php │ │ │ ├── ReportResponse.php │ │ │ └── ReportsListResponse.php │ └── Utils.php ├── Jobs │ ├── AdsSendOne.php │ └── ExecuteCommand.php ├── Listeners │ └── ServerEventListener.php ├── Logging │ └── CustomizeFormatter.php ├── Mail │ ├── AuthRecovery.php │ ├── BannerClassified.php │ ├── CampaignResume.php │ ├── Crm │ │ ├── CampaignCreated.php │ │ ├── SiteAdded.php │ │ └── UserRegistered.php │ ├── DepositProcessed.php │ ├── InvoiceCreated.php │ ├── Newsletter.php │ ├── Notifications │ │ ├── CampaignAccepted.php │ │ ├── CampaignDraft.php │ │ ├── CampaignEnded.php │ │ ├── CampaignEndedExtend.php │ │ ├── CampaignEnds.php │ │ ├── FundsEnded.php │ │ ├── FundsEnds.php │ │ ├── InactiveAdvertiser.php │ │ ├── InactivePublisher.php │ │ ├── InactiveUser.php │ │ ├── InactiveUserExtend.php │ │ ├── InactiveUserWhoDeposit.php │ │ ├── SiteAccepted.php │ │ └── SiteDraft.php │ ├── PanelPlaceholdersChange.php │ ├── SiteAdsTxtInvalid.php │ ├── SiteAdsTxtValid.php │ ├── SiteApprovalPending.php │ ├── TechnicalError.php │ ├── UserBanned.php │ ├── UserConfirmed.php │ ├── UserEmailActivate.php │ ├── UserEmailChangeConfirm1Old.php │ ├── UserEmailChangeConfirm2New.php │ ├── UserPasswordChange.php │ ├── UserPasswordChangeConfirm.php │ ├── WalletConnectConfirm.php │ ├── WalletConnected.php │ ├── WalletFundsEmail.php │ ├── WithdrawalApproval.php │ └── WithdrawalSuccess.php ├── Manager │ └── EloquentTransactionManager.php ├── Models │ ├── AdsPayment.php │ ├── AdsPaymentMeta.php │ ├── AdvertiserBudget.php │ ├── Banner.php │ ├── BannerClassification.php │ ├── BidStrategy.php │ ├── BidStrategyDetail.php │ ├── Campaign.php │ ├── Classification.php │ ├── Config.php │ ├── Conversion.php │ ├── ConversionDefinition.php │ ├── Email.php │ ├── EventBoostLog.php │ ├── EventConversionLog.php │ ├── EventLog.php │ ├── EventLogsHourlyMeta.php │ ├── ExchangeRate.php │ ├── Invoice.php │ ├── JoiningFee.php │ ├── JoiningFeeLog.php │ ├── NetworkBanner.php │ ├── NetworkBoostPayment.php │ ├── NetworkCampaign.php │ ├── NetworkCase.php │ ├── NetworkCaseClick.php │ ├── NetworkCaseLogsHourlyMeta.php │ ├── NetworkCasePayment.php │ ├── NetworkHost.php │ ├── NetworkImpression.php │ ├── NetworkMissedCase.php │ ├── NetworkPayment.php │ ├── NetworkVectorsMeta.php │ ├── Notification.php │ ├── NotificationEmailLog.php │ ├── NowPaymentsLog.php │ ├── PanelPlaceholder.php │ ├── Payment.php │ ├── PaymentReport.php │ ├── PublisherBoostLedgerEntry.php │ ├── RefLink.php │ ├── ReportMeta.php │ ├── ServeDomain.php │ ├── ServerEventLog.php │ ├── Site.php │ ├── SiteRejectReason.php │ ├── SitesRejectedDomain.php │ ├── SspHost.php │ ├── SupplyBannerPlaceholder.php │ ├── Token.php │ ├── Traits │ │ ├── AccountAddress.php │ │ ├── AddressWithNetwork.php │ │ ├── AutomateMutators.php │ │ ├── BinHex.php │ │ ├── DateAtom.php │ │ ├── JsonValue.php │ │ ├── Ownership.php │ │ ├── OwnershipScope.php │ │ ├── Serialize.php │ │ └── TransactionId.php │ ├── TurnoverEntry.php │ ├── UploadedFile.php │ ├── User.php │ ├── UserLedgerEntry.php │ ├── UserSettings.php │ └── Zone.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BuilderMacros │ │ └── TokenPaginate.php │ ├── CloudflareIpServiceProvider.php │ ├── Common │ │ ├── ClientProvider.php │ │ ├── OptionsProvider.php │ │ └── PassportServiceProvider.php │ ├── EventServiceProvider.php │ ├── MacrosProvider.php │ ├── RepositoryServiceProvider.php │ ├── RouteServiceProvider.php │ ├── Supply │ │ ├── ClassifyProvider.php │ │ ├── InventoryImporterProvider.php │ │ └── PaymentDetailsVerifyProvider.php │ └── WalletUserProvider.php ├── Repository │ ├── Advertiser │ │ ├── MySqlAggregatedStatsQueryBuilder.php │ │ ├── MySqlLiveStatsQueryBuilder.php │ │ └── MySqlStatsRepository.php │ ├── CampaignRepository.php │ ├── Common │ │ ├── AccessTokenRepository.php │ │ ├── ClassifierExternalRepository.php │ │ ├── Dto │ │ │ └── ClassifierExternal.php │ │ ├── EloquentExchangeRateRepository.php │ │ ├── EloquentServerEventLogRepository.php │ │ ├── EloquentUserRepository.php │ │ ├── MySqlQueryBuilder.php │ │ ├── MySqlServerStatisticsRepository.php │ │ ├── ServerEventLogRepository.php │ │ ├── TotalFeeReader.php │ │ └── UserRepository.php │ ├── Demand │ │ └── MySqlDemandServerStatisticsRepository.php │ ├── FileConfigurationRepository.php │ ├── Publisher │ │ ├── MySqlAggregatedStatsQueryBuilder.php │ │ ├── MySqlLiveStatsQueryBuilder.php │ │ └── MySqlStatsRepository.php │ └── Supply │ │ ├── MySqlSupplyServerStatisticsRepository.php │ │ ├── NetworkCampaignRepository.php │ │ └── NetworkHostRepository.php ├── Rules │ ├── AccountIdRule.php │ └── PayoutAddressRule.php ├── Services │ ├── AdsExchange.php │ ├── Advertiser │ │ ├── Dto │ │ │ ├── TargetingReach.php │ │ │ └── TargetingReachVector.php │ │ ├── NetworkVectorComputer.php │ │ └── TargetingReachComputer.php │ ├── Cdn │ │ ├── CdnProvider.php │ │ ├── CdnProviderFactory.php │ │ └── SkynetCdn.php │ ├── Common │ │ ├── AdsLogReader.php │ │ ├── AdsTxtCrawler.php │ │ ├── ClassifierExternalSignatureVerifier.php │ │ ├── CrmNotifier.php │ │ ├── Dto │ │ │ └── EmailData.php │ │ ├── EmailJobsQueuing.php │ │ ├── Exception │ │ │ └── UserDeletionException.php │ │ ├── MetaverseAddressValidator.php │ │ ├── ReportsStorage.php │ │ └── UserDelete.php │ ├── ConversionValidator.php │ ├── Demand │ │ ├── AdPayPaymentReportProcessor.php │ │ ├── BannerClassificationCreator.php │ │ ├── BannerCreator.php │ │ └── CampaignCreator.php │ ├── Dto │ │ └── PaymentProcessingResult.php │ ├── EventCaseFinder.php │ ├── LicenseFeeSender.php │ ├── NowPayments.php │ ├── PaymentDetailsFeeCalculator.php │ ├── PaymentDetailsProcessor.php │ ├── Publisher │ │ ├── SiteCategoriesValidator.php │ │ ├── SiteCodeConfig.php │ │ ├── SiteCodeConfigPops.php │ │ └── SiteCodeGenerator.php │ └── Supply │ │ ├── AdSelectCaseExporter.php │ │ ├── BannerPlaceholderConverter.php │ │ ├── BannerPlaceholderProvider.php │ │ ├── DefaultBannerPlaceholderGenerator.php │ │ ├── NetworkImpressionUpdater.php │ │ ├── SiteFilteringMatcher.php │ │ └── SiteFilteringUpdater.php ├── Uploader │ ├── DirectLink │ │ ├── DirectLinkUploader.php │ │ └── UploadedDirectLink.php │ ├── Factory.php │ ├── Html │ │ ├── HtmlUploader.php │ │ └── UploadedHtml.php │ ├── Image │ │ ├── ImageUploader.php │ │ └── UploadedImage.php │ ├── Model │ │ ├── ModelUploader.php │ │ └── UploadedModel.php │ ├── PlaceholderUploader.php │ ├── UploadedFile.php │ ├── Uploader.php │ └── Video │ │ ├── UploadedVideo.php │ │ └── VideoUploader.php ├── Utilities │ ├── AdPanelUrlBuilder.php │ ├── AdsAuthenticator.php │ ├── AdsUtils.php │ ├── ArrayUtils.php │ ├── BinaryStringUtils.php │ ├── ClassifierExternalKeywordsSerializer.php │ ├── ConfigTypes.php │ ├── CssUtils.php │ ├── DatabaseConfigReader.php │ ├── DateUtils.php │ ├── DomainReader.php │ ├── EthUtils.php │ ├── InvoiceUtils.php │ ├── NonceGenerator.php │ ├── Pagination │ │ └── TokenPaginator.php │ ├── PercentileComputer.php │ ├── SiteUtils.php │ ├── SiteValidator.php │ ├── SqlUtils.php │ ├── UniqueId.php │ ├── UniqueIdentifierFactory.php │ └── UuidStringGenerator.php └── ViewModel │ ├── AccessToken.php │ ├── BannerStatus.php │ ├── CampaignStatus.php │ ├── ClickConversionType.php │ ├── MediumName.php │ ├── MetaverseVendor.php │ ├── NotificationEmailCategory.php │ ├── OptionsSelector.php │ ├── Role.php │ ├── ScopeType.php │ ├── ServerEventType.php │ └── ZoneSize.php ├── artisan ├── bin ├── artisan.sh ├── composer.sh ├── init.sh └── php.sh ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── jwt │ └── .gitignore ├── logging.php ├── mail.php ├── passport.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── factories │ ├── AdsPaymentFactory.php │ ├── AdsPaymentMetaFactory.php │ ├── BannerFactory.php │ ├── BidStrategyFactory.php │ ├── CampaignFactory.php │ ├── ClassificationFactory.php │ ├── ConfigFactory.php │ ├── ConversionDefinitionFactory.php │ ├── ConversionFactory.php │ ├── EventBoostLogFactory.php │ ├── EventConversionLogFactory.php │ ├── EventLogFactory.php │ ├── InvoiceFactory.php │ ├── JoiningFeeFactory.php │ ├── JoiningFeeLogFactory.php │ ├── NetworkBannerFactory.php │ ├── NetworkBoostPaymentFactory.php │ ├── NetworkCampaignFactory.php │ ├── NetworkCaseFactory.php │ ├── NetworkCasePaymentFactory.php │ ├── NetworkHostFactory.php │ ├── NetworkImpressionFactory.php │ ├── NetworkMissedCaseFactory.php │ ├── NetworkVectorsMetaFactory.php │ ├── NotificationEmailLogFactory.php │ ├── PaymentFactory.php │ ├── PublisherBoostLedgerEntryFactory.php │ ├── RefLinkFactory.php │ ├── ServeDomainFactory.php │ ├── ServerEventLogFactory.php │ ├── SiteFactory.php │ ├── SiteRejectReasonFactory.php │ ├── SitesRejectedDomainFactory.php │ ├── SspHostFactory.php │ ├── SupplyBannerPlaceholderFactory.php │ ├── TurnoverEntryFactory.php │ ├── UploadedFileFactory.php │ ├── UserFactory.php │ ├── UserLedgerEntryFactory.php │ └── ZoneFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2016_06_01_000001_create_oauth_auth_codes_table.php │ ├── 2016_06_01_000002_create_oauth_access_tokens_table.php │ ├── 2016_06_01_000003_create_oauth_refresh_tokens_table.php │ ├── 2016_06_01_000004_create_oauth_clients_table.php │ ├── 2016_06_01_000005_create_oauth_personal_access_clients_table.php │ ├── 2018_04_06_103846_create_campaigns_table.php │ ├── 2018_04_06_103848_create_banners_table.php │ ├── 2018_04_06_103900_create_event_logs_table.php │ ├── 2018_04_06_103900_create_network_campaigns_table.php │ ├── 2018_04_06_103900_create_network_event_logs_table.php │ ├── 2018_04_06_103902_create_network_banners_table.php │ ├── 2018_04_06_103910_create_network_hosts_table.php │ ├── 2018_04_06_103920_create_network_payments_table.php │ ├── 2018_04_06_103920_create_payments_table.php │ ├── 2018_04_06_103928_create_sites_table.php │ ├── 2018_04_06_103930_create_zones_table.php │ ├── 2018_06_15_055026_create_jobs_table.php │ ├── 2018_07_04_220157_create_failed_jobs_table.php │ ├── 2018_07_04_220436_create_tokens_table.php │ ├── 2018_07_23_121101_create_notifications_table.php │ ├── 2018_07_23_121623_create_users_settings_table.php │ ├── 2018_10_15_130030_create_ads_payments_table.php │ ├── 2018_10_15_153907_create_configs_table.php │ ├── 2018_10_16_112832_create_user_ledgers_table.php │ ├── 2019_01_21_090259_add_error_code_to_network_hosts_table.php │ ├── 2019_02_14_120900_add_classification_to_network_banners_table.php │ ├── 2019_02_18_080158_create_classification_table.php │ ├── 2019_02_20_102741_change_classification_to_classifications_table.php │ ├── 2019_02_21_113307_change_classifications_signature_field.php │ ├── 2019_02_27_143641_add_classified_booleans_to_sites.php │ ├── 2019_03_01_102146_add_info_field_to_network_hosts_table.php │ ├── 2019_03_04_091037_replace_js_enabled_key.php │ ├── 2019_03_06_071921_change_event_logs_human_score_to_decimal.php │ ├── 2019_03_06_072002_change_network_event_logs_human_score_to_decimal.php │ ├── 2019_03_12_135004_insert_config_settings.php │ ├── 2019_03_13_143325_create_regulations_table.php │ ├── 2019_03_20_180000_insert_config_wallet_disable.php │ ├── 2019_03_28_111356_change_event_logs_add_domain_column.php │ ├── 2019_03_28_111405_change_network_event_logs_add_domain_column.php │ ├── 2019_03_29_142707_update_license_config.php │ ├── 2019_04_05_072801_insert_config_adpay_event_last_exported_id.php │ ├── 2019_04_08_125259_change_network_campaigns_publisher_id_null.php │ ├── 2019_04_08_134251_change_network_banners_add_demand_banner_id.php │ ├── 2019_04_08_142523_create_exchange_rates_table.php │ ├── 2019_04_11_084433_update_config_entry_name_for_cold_wallet.php │ ├── 2019_04_12_123957_bonus_config.php │ ├── 2019_04_19_123103_change_event_logs_add_currency.php │ ├── 2019_04_19_140059_even_tracking_id.php │ ├── 2019_04_24_110427_delete_overwritten_classification.php │ ├── 2019_04_25_111529_ipv6.php │ ├── 2019_05_14_123157_create_statistics_aggregates.php │ ├── 2019_05_21_093919_add_index_to_statistics_aggregates.php │ ├── 2019_05_22_103648_change_config_entry_for_adselect_export.php │ ├── 2019_05_23_103023_change_network_event_logs.php │ ├── 2019_05_23_131345_change_network_banners_uuid_index.php │ ├── 2019_05_24_114206_network_event_logs_tracking_id.php │ ├── 2019_05_29_072338_delete_event_export_data_from_config.php │ ├── 2019_05_29_164544_add_referrer_user_id_to_users_table.php │ ├── 2019_06_13_131014_change_config_add_adselect_export_event_id.php │ ├── 2019_06_18_112315_add_processed_transaction_offset.php │ ├── 2019_06_24_144849_add_index_to_created_at_for_events.php │ ├── 2019_07_02_053653_add_conversion_to_campaign.php │ ├── 2019_07_04_141336_add_indexes_to_user_ledger_entries.php │ ├── 2019_07_09_112042_create_event_conversion_logs.php │ ├── 2019_07_10_074151_create_conversion_definitions_table.php │ ├── 2019_07_10_074254_create_conversion_groups_table.php │ ├── 2019_07_11_074437_create_serve_domains_table.php │ ├── 2019_07_15_121337_create_banner_classifications_table.php │ ├── 2019_07_19_123737_change_classifications_drop_signature.php │ ├── 2019_07_30_102337_create_supply_blacklisted_domains_table.php │ ├── 2019_07_31_082859_drop_headers_column_from_events.php │ ├── 2019_07_31_114933_create_emails_table.php │ ├── 2019_08_07_104346_split_network_event_logs.php │ ├── 2019_08_09_081121_add_subscribe_to_users.php │ ├── 2019_08_23_134439_drop_headers_column_from_conversion_events.php │ ├── 2019_09_06_131424_add_type_index_to_user_ledger_entries_table.php │ ├── 2019_09_28_141618_drop_network_event_logs_table.php │ ├── 2019_10_02_143013_change_config_adpay_last_exported_event.php │ ├── 2019_10_03_140647_delete_adselect_export_data_from_config.php │ ├── 2019_10_04_131737_change_conversion_definitions_budget_type.php │ ├── 2019_10_10_074254_create_conversions_table.php │ ├── 2019_10_14_074221_change_event_logs_rename_column_reason.php │ ├── 2019_10_22_120833_create_payment_reports_table.php │ ├── 2019_10_25_121904_drop_conversion_groups_table.php │ ├── 2019_10_30_130103_add_transaction_time_to_ads_payments_table.php │ ├── 2019_11_04_123530_create_network_case_logs_hourly_meta_table.php │ ├── 2019_11_06_104633_add_page_rank_column.php │ ├── 2019_11_08_110215_add_unique_views_for_campaign.php │ ├── 2019_11_13_161923_change_width_and_height_into_size.php │ ├── 2019_11_21_131425_add_domain_to_sites.php │ ├── 2019_12_02_135435_drop_limit_from_conversion_definition.php │ ├── 2019_12_05_130532_create_event_logs_hourly_meta_table.php │ ├── 2019_12_09_115102_add_cost_payment_to_event_logs_hourly.php │ ├── 2020_01_07_154048_create_stats_aggregates_tables.php │ ├── 2020_01_10_115128_create_now_payments_logs_table.php │ ├── 2020_01_14_102704_create_conversions_hourly_table.php │ ├── 2020_02_03_141305_create_network_vectors_tables.php │ ├── 2020_02_18_105555_add_currency_to_user_ledger.php │ ├── 2020_02_19_171824_create_report_metas_table.php │ ├── 2020_04_09_095423_add_rank_to_sites.php │ ├── 2020_04_27_165418_rename_regulations_table.php │ ├── 2020_05_04_125910_create_bid_strategy_tables.php │ ├── 2020_05_23_131631_create_sites_rejected_domains_table.php │ ├── 2020_05_27_183954_add_reassess_to_sites.php │ ├── 2020_06_08_121239_add_categories_to_sites.php │ ├── 2020_06_17_094723_add_categories_by_user_to_sites.php │ ├── 2020_06_25_111021_add_soft_delete_to_bid_strategies.php │ ├── 2021_03_13_103813_add_country_to_network_impressions.php │ ├── 2021_06_11_115932_add_status_index_to_user_ledger_entries_table.php │ ├── 2021_06_18_115912_add_cdn_url_to_banners.php │ ├── 2021_07_19_124220_create_ref_links_table.php │ ├── 2021_07_19_124300_add_ref_link_id_to_users_table.php │ ├── 2021_07_19_143137_referral_refund_config.php │ ├── 2021_07_28_131939_registration_mode_config.php │ ├── 2021_08_02_113449_add_admin_confirmed_at_to_users.php │ ├── 2021_08_19_091247_create_invoices_table.php │ ├── 2021_12_07_141635_add_moderator_and_agency_roles.php │ ├── 2021_12_13_115444_add_wallet_address_to_user.php │ ├── 2021_12_21_134749_add_auto_registration_setting.php │ ├── 2022_01_05_140456_add_email_verification_required_setting.php │ ├── 2022_01_17_165804_add_only_accepted_banners_to_site.php │ ├── 2022_01_18_145238_allow_auto_cpm.php │ ├── 2022_01_20_115956_add_mime_to_banners.php │ ├── 2022_03_01_113942_add_medium_name.php │ ├── 2022_04_07_085106_alter_banners_creative_contents.php │ ├── 2022_04_26_173410_site_settings_config.php │ ├── 2022_05_04_15494103_add_medium_to_bid_strategy.php │ ├── 2022_05_06_143357_add_ban_to_users.php │ ├── 2022_05_18_125033_fix_metaverse_site_name.php │ ├── 2022_07_07_161203_add_medium_to_network_campaigns.php │ ├── 2022_07_20_101041_move_env_to_config.php │ ├── 2022_08_04_100616_add_logs_tables_clearing_procedures.php │ ├── 2022_09_20_112411_add_user_roles_to_ref_links.php │ ├── 2022_09_30_065846_add_status_to_network_hosts.php │ ├── 2022_10_12_070755_create_server_event_logs_table.php │ ├── 2022_10_24_053805_add_last_active_at_to_users.php │ ├── 2022_10_28_092618_create_activity_log_table.php │ ├── 2022_11_17_150343_drop_campaigns_legacy_columns.php │ ├── 2022_11_28_095119_fix_config_case.php │ ├── 2022_12_13_140411_metaverse_zone_consolidation.php │ ├── 2022_12_21_081628_create_uploaded_files_table.php │ ├── 2023_01_02_144509_change_network_hosts_extend_status.php │ ├── 2023_01_13_142418_add_approval_to_sites.php │ ├── 2023_01_17_155259_add_last_synchronization_attempt_to_network_hosts.php │ ├── 2023_01_30_120227_set_sites_accepted_at.php │ ├── 2023_02_08_092608_add_community_fee_to_event_logs.php │ ├── 2023_03_15_093732_create_site_reject_reasons.php │ ├── 2023_04_06_090327_add_ads_txt_to_sites.php │ ├── 2023_04_17_100747_create_turnover_entries_table.php │ ├── 2023_05_25_075458_create_supply_banner_placeholders_table.php │ ├── 2023_06_30_113758_create_notification_email_logs_table.php │ ├── 2023_07_05_104501_add_signed_at_to_network_banners.php │ ├── 2023_07_25_133942_add_only_direct_deals_to_sites.php │ └── 2024_02_09_132520_paid_experiments.php ├── mock-data │ ├── campaigns-advertisers.json │ ├── sites-publishers.json │ ├── user-ledger.json │ └── users.json └── seeders │ ├── DatabaseSeeder.php │ ├── MockDataCampaignsSeeder.php │ ├── MockDataNetworkHostsSeeder.php │ ├── MockDataPaymentsAndEventLogsSeeder.php │ ├── MockDataSeeder.php │ ├── MockDataSitesSeeder.php │ ├── MockDataUserLedgerSeeder.php │ ├── MockDataUsersSeeder.php │ └── assets │ ├── ads │ ├── ads_160x600.png │ ├── ads_320x50.png │ ├── ads_468x60.png │ └── ads_970x90.png │ ├── ads2 │ ├── ads1_230x600.png │ ├── ads1_728x90.png │ ├── ads1_750x300.png │ ├── ads2_230x600.png │ ├── ads2_750x300.png │ ├── adshares_160x600.png │ ├── esc_728x90.png │ ├── slide16-750x200.png │ └── startup3_750x200.png │ ├── cats │ ├── cats_160x600.png │ ├── cats_320x50.png │ ├── cats_468x60.png │ └── cats_970x90.png │ ├── tea │ ├── tea_160x600.png │ ├── tea_320x50.png │ ├── tea_468x60.png │ └── tea_970x90.png │ ├── travel │ ├── travel_160x600.png │ ├── travel_320x50.png │ ├── travel_468x60.png │ └── travel_970x90.png │ └── usterka.png ├── deploy ├── build.sh ├── crontablist.sh ├── migrate.sh ├── nginx-server.conf ├── reload.sh ├── supervisor.conf ├── supervisor_ads.conf ├── v0.5 │ ├── README.md │ └── update_domain.php ├── v0.8.2 │ └── update_network_event_logs_campaign_id.sql ├── v0.8 │ ├── README.md │ ├── insert_stats_aggregates_advertiser.sql │ └── insert_stats_aggregates_publisher.sql ├── v1.2.0 │ └── README.md └── v1.2.3 │ └── README.md ├── dev-router.php ├── docker ├── bin │ ├── append_to_hosts.sh │ ├── docker-php-entrypoint.sh │ ├── php-fpm.sh │ ├── set_config_from_env.sh │ └── wait_for_database.sh ├── cron │ ├── adpay-export.sh │ ├── ads-broadcast-host.sh │ ├── ads-fetch-hosts.sh │ ├── ads-scanner.sh │ ├── adselect-export.sh │ ├── crontab │ ├── crontab-demo │ ├── crontab-docker │ ├── crontab-test │ ├── ops-inventory.sh │ ├── ops-payments.sh │ └── ops-wallet.sh ├── dockerfile ├── nginx.conf ├── overrides.conf └── skel │ ├── .bash_logout │ ├── .bashrc │ ├── .config │ └── mc │ │ ├── ini │ │ └── panels.ini │ ├── .profile │ └── .ssh │ └── authorized_keys ├── docs ├── CONTRIBUTING.md ├── banner-sizes.md ├── conversion_diagram.puml ├── conversion_flow.puml ├── examples │ ├── adselect01.banner_select.json │ ├── adselect01.campaign_update.json │ ├── adselect02.banner_select.json │ └── adselect02.campaign_update.json ├── publisher-flow.puml └── schemas │ ├── context │ └── v0.1 │ │ ├── example.json │ │ └── schema.json │ ├── info │ └── v0.1 │ │ ├── example.json │ │ └── schema.json │ ├── schema.json │ └── taxonomy │ └── v0.1 │ ├── schema.json │ └── targeting-example.json ├── lib ├── DOMDocumentSafe.php └── ZipToHtml.php ├── mocks ├── mappings │ ├── ad_unit_sizes_get.json │ ├── admin_settings__get.json │ ├── admin_settings__patch.json │ ├── admin_settings_get.json │ ├── adshares_address_get.json │ ├── all_get.json │ ├── auth_check__get.json │ ├── auth_login_admin__post.json │ ├── auth_login_failed__post.json │ ├── auth_login_user_post.json │ ├── auth_logout_get.json │ ├── auth_recovery__post.json │ ├── billing_history_get.json │ ├── campaign_183297987312_get.json │ ├── campaign_377892908378478_get.json │ ├── campaign_targeting_get.json │ ├── campaigns_0_banner_0__delete.json │ ├── campaigns_0_banner__post.json │ ├── campaigns_183297987312__get.json │ ├── campaigns_377892908378478__get.json │ ├── campaigns__post.json │ ├── campaigns_count__get.json │ ├── campaigns_post.json │ ├── campaigns_targeting__get.json │ ├── campaigns_totals_post.json │ ├── change_automatic_withdraw__post.json │ ├── change_automatic_withdraw_post.json │ ├── change_email_post.json │ ├── change_password_post.json │ ├── change_withdraw_address_post.json │ ├── chart__post.json │ ├── chart_post.json │ ├── config.json │ ├── config_adshares_address__get.json │ ├── config_banners__get.json │ ├── delete_ad_post.json │ ├── dismiss_notification_post.json │ ├── notifications_1__delete.json │ ├── notifications__get.json │ ├── notifications_list_get.json │ ├── notifications_settings__get.json │ ├── notifications_settings_get.json │ ├── notifications_settings_patch.json │ ├── options.json │ ├── publisher_chart__post.json │ ├── publisher_chart_post.json │ ├── register_user_post.json │ ├── remind_password_post.json │ ├── save_ad__post.json │ ├── save_ad_post.json │ ├── save_campaign_post.json │ ├── save_site_post.json │ ├── send_activation_email_post.json │ ├── site_1111_get.json │ ├── site_222222222222_get.json │ ├── site_targeting_get.json │ ├── sites_1111__get.json │ ├── sites_222222222222__get.json │ ├── sites__post.json │ ├── sites_count__get.json │ ├── sites_get.json │ ├── sites_post.json │ ├── sites_targeting__get.json │ ├── sites_totals__post.json │ ├── sites_totals_post.json │ ├── update_admin_settings_post.json │ ├── update_notifications_settings_post.json │ ├── upload_ad_0_put.json │ ├── users___get.json │ ├── users___patch.json │ ├── users_email__post.json │ ├── users_email_activate_resend__post.json │ ├── users_user_1_password__patch.json │ ├── users_users__get.json │ ├── users_users__post.json │ ├── users_users_get.json │ ├── wallet_history__get.json │ ├── wallet_settings__patch.json │ ├── wallet_withdraw__post.json │ └── withdraw_funds_post.json ├── readme.md ├── sites.json └── wallet-history_get.json ├── package.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── public ├── css │ └── why.css ├── index.php ├── panel-assets-default │ └── favicon.ico ├── robots.txt └── web.config ├── resources ├── fonts │ └── mock-font.ttf ├── img │ ├── empty.gif │ └── placeholder_seed.png ├── js │ ├── app.js │ ├── base │ │ ├── base64.js │ │ ├── compat.js │ │ ├── domready.js │ │ └── utils.js │ ├── bootstrap.js │ ├── components │ │ └── ExampleComponent.vue │ ├── cryptovoxels │ │ ├── cryptovoxels.js │ │ └── template.js │ ├── demand │ │ ├── banner.js │ │ ├── view.js │ │ └── ziptohtml │ │ │ ├── createjs_fix.js │ │ │ └── fixscript.js │ ├── footer │ │ └── footer.js │ ├── header │ │ └── header.js │ └── supply │ │ ├── find │ │ ├── backfill.js │ │ ├── block_detect.js │ │ └── find.js │ │ ├── inv.js │ │ ├── main │ │ └── head.js │ │ ├── pops │ │ ├── 1_store.js │ │ └── 2_pops.js │ │ ├── sha1.js │ │ └── sha1_compat.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── validation.php │ │ └── why-this-ad.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── common │ └── newsletter-unsubscribe.blade.php │ ├── demand │ ├── view-event-legacy.blade.php │ └── view-event.blade.php │ ├── emails │ ├── auth-recovery.blade.php │ ├── banner-classified.blade.php │ ├── campaign-resume.blade.php │ ├── crm │ │ ├── campaign-created.blade.php │ │ ├── site-added.blade.php │ │ └── user-registered.blade.php │ ├── deposit-processed.blade.php │ ├── invoice-created.blade.php │ ├── newsletter.blade.php │ ├── notifications │ │ ├── campaign-accepted.blade.php │ │ ├── campaign-draft.blade.php │ │ ├── campaign-ended-extend.blade.php │ │ ├── campaign-ended.blade.php │ │ ├── campaign-ends.blade.php │ │ ├── funds-ended.blade.php │ │ ├── funds-ends.blade.php │ │ ├── inactive-advertiser.blade.php │ │ ├── inactive-publisher.blade.php │ │ ├── inactive-user-extend.blade.php │ │ ├── inactive-user-who-deposit.blade.php │ │ ├── inactive-user.blade.php │ │ ├── site-accepted.blade.php │ │ └── site-draft.blade.php │ ├── panel-placeholders-change.blade.php │ ├── site-ads-txt-invalid.blade.php │ ├── site-ads-txt-valid.blade.php │ ├── site-approval-pending.blade.php │ ├── technical-error.blade.php │ ├── user-banned.blade.php │ ├── user-confirmed.blade.php │ ├── user-email-activate.blade.php │ ├── user-email-change-confirm-1-old.blade.php │ ├── user-email-change-confirm-2-new.blade.php │ ├── user-password-change-confirm.blade.php │ ├── user-password-change.blade.php │ ├── wallet-connect-confirm.blade.php │ ├── wallet-connected.blade.php │ ├── wallet-funds-email.blade.php │ ├── withdrawal-approval.blade.php │ └── withdrawal-success.blade.php │ ├── info │ └── policy.blade.php │ ├── invoices │ └── proforma-en.blade.php │ └── supply │ └── why.blade.php ├── routes ├── admin.php ├── auth.php ├── config.php ├── demand.php ├── main.php ├── manager.php └── supply.php ├── scripts ├── build.sh ├── install.sh ├── pre-build.sh └── pre-install.sh ├── server.php ├── sonar-project.properties ├── src ├── Advertiser │ ├── Dto │ │ ├── Input │ │ │ ├── ChartInput.php │ │ │ ├── ConversionDataInput.php │ │ │ ├── InvalidInputException.php │ │ │ └── StatsInput.php │ │ └── Result │ │ │ ├── ChartResult.php │ │ │ ├── Stats │ │ │ ├── Calculation.php │ │ │ ├── ConversionDataCollection.php │ │ │ ├── ConversionDataEntry.php │ │ │ ├── DataCollection.php │ │ │ ├── DataEntry.php │ │ │ ├── ReportCalculation.php │ │ │ └── Total.php │ │ │ └── StatsResult.php │ ├── Repository │ │ └── StatsRepository.php │ └── Service │ │ ├── ChartDataProvider.php │ │ └── StatsDataProvider.php ├── Classify │ ├── Application │ │ ├── Exception │ │ │ └── BannerNotVerifiedException.php │ │ └── Service │ │ │ └── ClassifierInterface.php │ ├── Domain │ │ └── Model │ │ │ ├── Classification.php │ │ │ └── ClassificationCollection.php │ └── Infrastructure │ │ └── Service │ │ ├── DummyClassifier.php │ │ └── LocalClassifier.php ├── Common │ ├── Application │ │ ├── Dto │ │ │ ├── CommunityFee.php │ │ │ ├── EncodedLicense.php │ │ │ ├── ExchangeRate.php │ │ │ ├── Gateway.php │ │ │ ├── Media.php │ │ │ ├── PageRank.php │ │ │ ├── TaxonomyV1.php │ │ │ ├── TaxonomyV1 │ │ │ │ ├── Item.php │ │ │ │ └── Item │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Value.php │ │ │ ├── TaxonomyV2.php │ │ │ └── TaxonomyV2 │ │ │ │ ├── DictionaryTargetingItem.php │ │ │ │ ├── Format.php │ │ │ │ ├── InputTargetingItem.php │ │ │ │ ├── Medium.php │ │ │ │ ├── Meta.php │ │ │ │ ├── Targeting.php │ │ │ │ └── TargetingItem.php │ │ ├── Factory │ │ │ ├── MediaFactory.php │ │ │ ├── TaxonomyV1Factory.php │ │ │ ├── TaxonomyV1ItemFactory.php │ │ │ ├── TaxonomyV2 │ │ │ │ └── TargetingItemFactory.php │ │ │ └── TaxonomyV2Factory.php │ │ ├── Format │ │ │ └── Json │ │ │ │ └── JsonDataRequest.php │ │ ├── Model │ │ │ ├── Currency.php │ │ │ ├── Selector.php │ │ │ └── Selector │ │ │ │ ├── Option.php │ │ │ │ └── OptionValue.php │ │ ├── Service │ │ │ ├── AdClassify.php │ │ │ ├── AdUser.php │ │ │ ├── Ads.php │ │ │ ├── AdsRpcClient.php │ │ │ ├── ConfigurationRepository.php │ │ │ ├── Exception │ │ │ │ ├── AdsException.php │ │ │ │ ├── ExchangeRateNotAvailableException.php │ │ │ │ └── SignatureVerifierException.php │ │ │ ├── ExchangeRateRepository.php │ │ │ ├── LicenseDecoder.php │ │ │ ├── LicenseProvider.php │ │ │ ├── LicenseVault.php │ │ │ └── SignatureVerifier.php │ │ └── TransactionManager.php │ ├── Comparable.php │ ├── Domain │ │ ├── Adapter │ │ │ ├── ArrayCollection.php │ │ │ └── ArrayableItemCollection.php │ │ ├── Collection.php │ │ ├── Id.php │ │ ├── Model │ │ │ ├── Account.php │ │ │ └── Transaction.php │ │ ├── ValueObject.php │ │ └── ValueObject │ │ │ ├── AccountId.php │ │ │ ├── ChartResolution.php │ │ │ ├── Commission.php │ │ │ ├── Email.php │ │ │ ├── EmptyAccountId.php │ │ │ ├── Exception │ │ │ ├── InvalidStringException.php │ │ │ └── InvalidUuidException.php │ │ │ ├── License.php │ │ │ ├── NullUrl.php │ │ │ ├── SecureUrl.php │ │ │ ├── SemVer.php │ │ │ ├── Taxonomy │ │ │ └── Schema.php │ │ │ ├── TransactionId.php │ │ │ ├── Url.php │ │ │ ├── Uuid.php │ │ │ └── WalletAddress.php │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Identifiable.php │ ├── Infrastructure │ │ └── Service │ │ │ ├── CommunityFeeReader.php │ │ │ ├── ExchangeRateReader.php │ │ │ ├── LicenseDecoderV1.php │ │ │ ├── LicenseReader.php │ │ │ ├── LicenseVaultFilesystem.php │ │ │ ├── PhpAdsClient.php │ │ │ ├── Sodium.php │ │ │ ├── SodiumCompatSignatureVerifier.php │ │ │ └── Web3.php │ └── UrlInterface.php ├── Config │ ├── AppMode.php │ ├── RegistrationMode.php │ └── UserRole.php ├── Demand │ └── Application │ │ ├── Dto │ │ ├── AdPayEvents.php │ │ └── TransferMoneyResponse.php │ │ ├── Exception │ │ └── TransferMoneyException.php │ │ └── Service │ │ ├── AdPay.php │ │ ├── PaymentDetailsVerify.php │ │ ├── TargetingOptionsImporter.php │ │ ├── TransferMoneyToColdWallet.php │ │ └── WalletFundsChecker.php ├── Network │ ├── Broadcast.php │ ├── Broadcastable.php │ └── BroadcastableUrl.php ├── Publisher │ ├── Dto │ │ ├── Input │ │ │ ├── ChartInput.php │ │ │ ├── InvalidInputException.php │ │ │ └── StatsInput.php │ │ └── Result │ │ │ ├── ChartResult.php │ │ │ ├── Stats │ │ │ ├── Calculation.php │ │ │ ├── DataCollection.php │ │ │ ├── DataEntry.php │ │ │ ├── ReportCalculation.php │ │ │ └── Total.php │ │ │ └── StatsResult.php │ ├── Repository │ │ └── StatsRepository.php │ └── Service │ │ ├── ChartDataProvider.php │ │ └── StatsDataProvider.php └── Supply │ ├── Application │ ├── Dto │ │ ├── Classification │ │ │ └── Collection.php │ │ ├── FoundBanners.php │ │ ├── FoundBanners │ │ │ └── Banner.php │ │ ├── ImpressionContext.php │ │ ├── Info.php │ │ ├── InfoStatistics.php │ │ └── UserContext.php │ └── Service │ │ ├── AdSelect.php │ │ ├── AdSelectInventoryExporter.php │ │ ├── BannerClassifier.php │ │ ├── DemandClient.php │ │ ├── Exception │ │ ├── EmptyInventoryException.php │ │ ├── NoBannersForGivenCampaign.php │ │ └── UnexpectedClientResponseException.php │ │ ├── FilteringOptionsImporter.php │ │ ├── InventoryImporter.php │ │ ├── MarkedCampaignsAsDeleted.php │ │ └── SupplyClient.php │ └── Domain │ ├── Factory │ ├── CampaignFactory.php │ └── Exception │ │ └── InvalidCampaignArgumentException.php │ ├── Model │ ├── Banner.php │ ├── Campaign.php │ ├── CampaignCollection.php │ └── Exception │ │ ├── InvalidBudgetValueException.php │ │ ├── UnsupportedBannerTypeException.php │ │ └── UnsupportedStatusTypeException.php │ ├── Repository │ ├── CampaignRepository.php │ └── Exception │ │ └── CampaignRepositoryException.php │ └── ValueObject │ ├── BannerUrl.php │ ├── Budget.php │ ├── CampaignDate.php │ ├── Classification.php │ ├── Exception │ ├── InvalidBudgetValueException.php │ ├── InvalidCampaignDateException.php │ ├── InvalidUrlException.php │ └── UnsupportedBannerTypeException.php │ ├── HostStatus.php │ ├── Size.php │ ├── SourceCampaign.php │ ├── Status.php │ └── TurnoverEntryType.php ├── tests ├── app │ ├── Client │ │ ├── GuzzleAdPayClientTest.php │ │ ├── GuzzleAdSelectClientTest.php │ │ ├── GuzzleAdUserClientTest.php │ │ ├── GuzzleAdsOperatorClientTest.php │ │ ├── GuzzleDemandClientTest.php │ │ └── Mapper │ │ │ ├── AbstractFilterMapperTest.php │ │ │ ├── AdPay │ │ │ ├── DemandBidStrategyMapperTest.php │ │ │ ├── DemandCampaignMapperTest.php │ │ │ └── DemandEventMapperTest.php │ │ │ └── AdSelect │ │ │ ├── CampaignMapperTest.php │ │ │ ├── CaseMapperTest.php │ │ │ ├── CreditPaymentMapperTest.php │ │ │ └── TargetingMapperTest.php │ ├── Console │ │ ├── Commands │ │ │ ├── AdPayCampaignExportCommandTest.php │ │ │ ├── AdPayEventExportCommandTest.php │ │ │ ├── AdPayGetPaymentsTest.php │ │ │ ├── AdSelectCaseExportCommandTest.php │ │ │ ├── AdSelectCasePaymentsExportCommandTest.php │ │ │ ├── AdSelectInventoryExporterCommandTest.php │ │ │ ├── AdsBroadcastHostTest.php │ │ │ ├── AdsFetchHostsTest.php │ │ │ ├── AdsMeTest.php │ │ │ ├── AdsProcessTxTest.php │ │ │ ├── AggregateCaseStatisticsPublisherCommandTest.php │ │ │ ├── BannerClassificationsCreateCommandTest.php │ │ │ ├── BannerClassificationsRequestCommandTest.php │ │ │ ├── CdnUploadBannersCommandTest.php │ │ │ ├── CreateOauthClientCommandTest.php │ │ │ ├── DemandBlockRequiredAmountTest.php │ │ │ ├── DemandPreparePaymentsTest.php │ │ │ ├── DemandProcessPaymentsTest.php │ │ │ ├── DemandSendPaymentsTest.php │ │ │ ├── EmailNotificationsSendCommandTest.php │ │ │ ├── ExpiredWithdrawalCancellationCommandTest.php │ │ │ ├── FetchExchangeRateCommandTest.php │ │ │ ├── InventoryImporterCommandTest.php │ │ │ ├── ListAdministratorsCommandTest.php │ │ │ ├── SendJoiningFeeTest.php │ │ │ ├── SiteAdsTxtCheckCommandTest.php │ │ │ ├── SiteRankReassessRequestCommandTest.php │ │ │ ├── SiteRankUpdateCommandTest.php │ │ │ ├── SupplyDefaultPlaceholdersReloadCommandTest.php │ │ │ ├── SupplyProcessPaymentsTest.php │ │ │ ├── TargetingReachFetchTest.php │ │ │ ├── TransferMoneyToColdWalletCommandTest.php │ │ │ ├── UpdateFilteringOptionsTest.php │ │ │ ├── UpdateTargetingOptionsTest.php │ │ │ ├── UpsertConfigurationCommandTest.php │ │ │ ├── WalletAmountCheckCommandTest.php │ │ │ └── WalletWithdrawalCheckCommandTest.php │ │ └── ConsoleTestCase.php │ ├── CreatesApplication.php │ ├── Http │ │ ├── ClassifierControllerTest.php │ │ ├── Controllers │ │ │ ├── ClassificationControllerTest.php │ │ │ ├── ConversionControllerTest.php │ │ │ ├── DemandControllerTest.php │ │ │ ├── InfoControllerTest.php │ │ │ ├── Manager │ │ │ │ ├── AdminControllerTest.php │ │ │ │ ├── ApiCampaignsControllerTest.php │ │ │ │ ├── ApiTaxonomyControllerTest.php │ │ │ │ ├── AuthControllerTest.php │ │ │ │ ├── BidStrategyControllerTest.php │ │ │ │ ├── CampaignsControllerTest.php │ │ │ │ ├── InvoicesControllerTest.php │ │ │ │ ├── OAuthControllerTest.php │ │ │ │ ├── OptionsControllerTest.php │ │ │ │ ├── RefLinksControllerTest.php │ │ │ │ ├── ServerConfigurationControllerTest.php │ │ │ │ ├── ServerMonitoringControllerTest.php │ │ │ │ ├── SitesControllerTest.php │ │ │ │ ├── StatisticsGlobalControllerTest.php │ │ │ │ └── SupplyBannerPlaceholderControllerTest.php │ │ │ ├── SettingsControllerTest.php │ │ │ ├── SupplyControllerTest.php │ │ │ └── WalletControllerTest.php │ │ ├── Middleware │ │ │ ├── CheckForMaintenanceModeTest.php │ │ │ └── StatisticsCollectorAccessTest.php │ │ ├── Requests │ │ │ ├── Campaign │ │ │ │ ├── BannerValidatorTest.php │ │ │ │ ├── CampaignTargetingProcessorTest.php │ │ │ │ └── TargetingProcessorTest.php │ │ │ ├── Common │ │ │ │ └── LimitValidatorTest.php │ │ │ ├── Filter │ │ │ │ ├── BoolFilterTest.php │ │ │ │ ├── DateFilterTest.php │ │ │ │ ├── FilterCollectionTest.php │ │ │ │ └── StringFilterTest.php │ │ │ └── NetworkBannerFilterTest.php │ │ ├── Response │ │ │ ├── LicenseResponseTest.php │ │ │ └── Site │ │ │ │ └── SizesResponseTest.php │ │ ├── StatsControllerTest.php │ │ └── UtilsTest.php │ ├── Jobs │ │ ├── AdsSendOneTest.php │ │ └── ExecuteCommandTest.php │ ├── Listener │ │ └── ServerEventListenerTest.php │ ├── Mail │ │ ├── Crm │ │ │ └── CampaignCreatedTest.php │ │ ├── DepositProcessedTest.php │ │ ├── MailTestCase.php │ │ ├── Notifications │ │ │ ├── CampaignAcceptedTest.php │ │ │ ├── CampaignDraftTest.php │ │ │ ├── CampaignEndedExtendTest.php │ │ │ ├── CampaignEndedTest.php │ │ │ ├── CampaignEndsTest.php │ │ │ ├── FundsEndedTest.php │ │ │ ├── FundsEndsTest.php │ │ │ ├── InactiveAdvertiserTest.php │ │ │ ├── InactivePublisherTest.php │ │ │ ├── InactiveUserExtendTest.php │ │ │ ├── InactiveUserTest.php │ │ │ ├── InactiveUserWhoDepositTest.php │ │ │ ├── SiteAcceptedTest.php │ │ │ └── SiteDraftTest.php │ │ ├── SiteAdsTxtInvalidTest.php │ │ ├── SiteAdsTxtValidTest.php │ │ ├── SiteApprovalPendingTest.php │ │ └── TechnicalErrorTest.php │ ├── Models │ │ ├── AdsPaymentMetaTest.php │ │ ├── BannerTest.php │ │ ├── CampaignTest.php │ │ ├── ConfigTest.php │ │ ├── EventBoostLogTest.php │ │ ├── EventLogTest.php │ │ ├── InvoiceTest.php │ │ ├── JoiningFeeLogTest.php │ │ ├── JoiningFeeTest.php │ │ ├── NetworkBannerTest.php │ │ ├── NetworkCampaignTest.php │ │ ├── NetworkHostTest.php │ │ ├── NetworkMissedCaseTest.php │ │ ├── NotificationEmailLogTest.php │ │ ├── PaymentReportTest.php │ │ ├── PublisherBoostLedgerEntryTest.php │ │ ├── RefLinkTest.php │ │ ├── ServeDomainTest.php │ │ ├── SiteTest.php │ │ ├── SitesRejectedDomainTest.php │ │ ├── SspHostTest.php │ │ ├── TurnoverEntryTest.php │ │ ├── UserLedgerEntryTest.php │ │ ├── UserTest.php │ │ └── ZoneTest.php │ ├── RefreshDatabase.php │ ├── Repository │ │ ├── Advertiser │ │ │ └── MySqlStatsRepositoryTest.php │ │ ├── CampaignRepositoryTest.php │ │ ├── Common │ │ │ ├── AccessTokenRepositoryTest.php │ │ │ ├── EloquentExchangeRateRepositoryTest.php │ │ │ ├── MySqlServerStatisticsRepositoryTest.php │ │ │ ├── MysqlQueryBuilderTest.php │ │ │ └── TotalFeeReaderTest.php │ │ ├── FileConfigurationRepositoryTest.php │ │ ├── Publisher │ │ │ └── MySqlStatsRepositoryTest.php │ │ └── Supply │ │ │ ├── MySqlSupplyServerStatisticsRepositoryTest.php │ │ │ └── NetworkCampaignRepositoryTest.php │ ├── Services │ │ ├── Advertiser │ │ │ └── Dto │ │ │ │ └── TargetingReachVectorTest.php │ │ ├── Common │ │ │ ├── AdsLogReaderTest.php │ │ │ ├── AdsTxtCrawlerTest.php │ │ │ ├── CrmNotifierTest.php │ │ │ └── UserDeleteTest.php │ │ ├── ConversionValidatorTest.php │ │ ├── Demand │ │ │ ├── BannerCreatorTest.php │ │ │ └── CampaignCreatorTest.php │ │ ├── NowPaymentsTest.php │ │ ├── PaymentDetailsProcessorTest.php │ │ ├── Publisher │ │ │ └── SiteCategoriesValidatorTest.php │ │ └── Supply │ │ │ ├── AdSelectCaseExporterTest.php │ │ │ ├── BannerPlaceholderConverterTest.php │ │ │ ├── BannerPlaceholderProviderTest.php │ │ │ ├── DefaultBannerPlaceholderGeneratorTest.php │ │ │ ├── SiteFilteringMatcherTest.php │ │ │ └── SiteFilteringUpdaterTest.php │ ├── TestCase.php │ ├── Uploader │ │ ├── DirectLink │ │ │ ├── DirectLinkUploaderTest.php │ │ │ └── UploadedDirectLinkTest.php │ │ ├── FactoryTest.php │ │ ├── Html │ │ │ ├── HtmlUploaderTest.php │ │ │ └── UploadedHtmlTest.php │ │ ├── Image │ │ │ └── ImageUploaderTest.php │ │ ├── Model │ │ │ └── ModelUploaderTest.php │ │ ├── PlaceholderUploaderTest.php │ │ └── Video │ │ │ └── VideoUploaderTest.php │ ├── Utilities │ │ ├── AdsAuthenticatorTest.php │ │ ├── AdsUtilsTest.php │ │ ├── ArrayUtilsTest.php │ │ ├── BinaryStringUtilsTest.php │ │ ├── ClassifierExternalKeywordsSerializerTest.php │ │ ├── CssUtilsTest.php │ │ ├── DatabaseConfigReaderTest.php │ │ ├── DateUtilsTest.php │ │ ├── DomainReaderTest.php │ │ ├── InvoiceUtilsTest.php │ │ ├── SiteUtilsTest.php │ │ ├── SiteValidatorTest.php │ │ ├── UniqueIdTest.php │ │ └── UuidStringGeneratorTest.php │ └── ViewModel │ │ ├── AccessTokenTest.php │ │ ├── BannerStatusTest.php │ │ ├── CampaignStatusTest.php │ │ ├── ClickConversionTypeTest.php │ │ └── ZoneSizeTest.php ├── lib │ └── ZipToHtmlTest.php ├── mock │ ├── Client │ │ ├── DummyAdClassifyClient.php │ │ ├── DummyAdPayClient.php │ │ ├── DummyAdSelectClient.php │ │ ├── DummyAdUserClient.php │ │ ├── DummyAdsClient.php │ │ ├── DummyAdsRpcClient.php │ │ ├── DummyClassifierExternalClient.php │ │ ├── DummyDemandClient.php │ │ ├── DummyExchangeRateRepository.php │ │ └── DummySupplyClient.php │ ├── Console │ │ └── Kernel.php │ ├── Files │ │ ├── Banners │ │ │ ├── 2xhtml.zip │ │ │ ├── 300x250.png │ │ │ ├── 300x250.zip │ │ │ ├── 980x120.png │ │ │ ├── adshares.mp4 │ │ │ ├── empty.zip │ │ │ ├── model.vox │ │ │ ├── too_big_unzipped.zip │ │ │ └── too_big_zipped.zip │ │ └── OAuth │ │ │ ├── oauth-private.key │ │ │ └── oauth-public.key │ ├── Repository │ │ └── DummyConfigurationRepository.php │ ├── ToStringClass.php │ ├── filtering_schema.json │ ├── info.json │ ├── network.json │ ├── targeting_schema_v2.json │ └── targeting_schema_v2_smart_link.json └── src │ ├── Advertiser │ ├── Dto │ │ └── Input │ │ │ ├── ChartInputTest.php │ │ │ └── StatsInputTest.php │ └── Repository │ │ └── DummyStatsRepository.php │ ├── Classify │ └── Model │ │ └── ClassificationTest.php │ ├── Common │ ├── Application │ │ ├── Dto │ │ │ ├── CommunityFeeTest.php │ │ │ ├── TaxonomyV2 │ │ │ │ ├── DictionaryTargetingItemTest.php │ │ │ │ ├── FormatTest.php │ │ │ │ ├── InputTargetingItemTest.php │ │ │ │ ├── MediumTest.php │ │ │ │ ├── MetaTest.php │ │ │ │ └── TargetingTest.php │ │ │ └── TaxonomyV2Test.php │ │ └── Factory │ │ │ ├── TaxonomyV2 │ │ │ └── TargetingItemFactoryTest.php │ │ │ └── TaxonomyV2FactoryTest.php │ ├── Domain │ │ ├── Adapter │ │ │ └── ArrayableItemCollectionTest.php │ │ └── ValueObject │ │ │ ├── AccountIdTest.php │ │ │ ├── BroadcastableUrlTest.php │ │ │ ├── CommissionTest.php │ │ │ ├── EmailTest.php │ │ │ ├── EmptyAccountIdTest.php │ │ │ ├── SecureUrlTest.php │ │ │ ├── SemVerTest.php │ │ │ ├── TransactionIdTest.php │ │ │ ├── UrlTest.php │ │ │ ├── UuidTest.php │ │ │ └── WalletAddressTest.php │ └── Infrastructure │ │ └── Service │ │ ├── CommunityFeeReaderTest.php │ │ ├── ExchangeRateReaderTest.php │ │ ├── LicenseReaderTest.php │ │ └── SodiumCompatSignatureVerifierTest.php │ ├── Config │ ├── AppModeTest.php │ └── UserRoleTest.php │ ├── Demand │ └── Application │ │ ├── Dto │ │ └── AdPayEventsTest.php │ │ └── Service │ │ ├── PaymentDetailsVerifyTest.php │ │ ├── TargetingOptionsImporterTest.php │ │ ├── TransferMoneyToColdWalletTest.php │ │ └── WalletFundsCheckerTest.php │ ├── Publisher │ ├── Dto │ │ ├── Input │ │ │ ├── ChartInputTest.php │ │ │ └── StatsInputTest.php │ │ └── Result │ │ │ └── Stats │ │ │ └── CalculationTest.php │ └── Repository │ │ └── DummyStatsRepository.php │ └── Supply │ ├── Application │ ├── Dto │ │ ├── Classification │ │ │ └── CollectionTest.php │ │ ├── ImpressionContextTest.php │ │ └── InfoTest.php │ └── Service │ │ ├── AdSelectInventoryExporterTest.php │ │ ├── AdSelectTest.php │ │ └── InventoryImporterTest.php │ └── Domain │ ├── Factory │ └── CampaignFactoryTest.php │ ├── Model │ ├── BannerTest.php │ └── CampaignTest.php │ └── ValueObject │ ├── BannerUrlTest.php │ ├── BudgetTest.php │ ├── CampaignDateTest.php │ ├── ClassificationTest.php │ ├── SizeTest.php │ ├── SourceCampaignTest.php │ └── StatusTest.php ├── webpack.mix.js └── yarn.lock /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.env.dist -------------------------------------------------------------------------------- /.env.testing.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.env.testing.dist -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/php.ini: -------------------------------------------------------------------------------- 1 | extension = apcu.so 2 | xdebug.mode = coverage 3 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/README.md -------------------------------------------------------------------------------- /app/Client/ClassifierExternalClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/ClassifierExternalClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleAdPayClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleAdPayClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleAdSelectClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleAdSelectClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleAdUserClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleAdUserClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleAdsOperatorClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleAdsOperatorClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleAdsRpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleAdsRpcClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleClassifierExternalClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleClassifierExternalClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleDemandClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleDemandClient.php -------------------------------------------------------------------------------- /app/Client/GuzzleLicenseClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleLicenseClient.php -------------------------------------------------------------------------------- /app/Client/GuzzlePublisherBannerClassifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzlePublisherBannerClassifier.php -------------------------------------------------------------------------------- /app/Client/GuzzleSupplyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/GuzzleSupplyClient.php -------------------------------------------------------------------------------- /app/Client/LocalPublisherBannerClassifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/LocalPublisherBannerClassifier.php -------------------------------------------------------------------------------- /app/Client/Mapper/AbstractFilterMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AbstractFilterMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdPay/DemandCampaignMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdPay/DemandCampaignMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdPay/DemandEventMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdPay/DemandEventMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/BoostPaymentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/BoostPaymentMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/CampaignMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/CampaignMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/CaseClickMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/CaseClickMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/CaseMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/CaseMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/CasePaymentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/CasePaymentMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/EventMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/EventMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/EventPaymentMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/EventPaymentMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/AdSelect/TargetingMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/AdSelect/TargetingMapper.php -------------------------------------------------------------------------------- /app/Client/Mapper/JsonValueMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Client/Mapper/JsonValueMapper.php -------------------------------------------------------------------------------- /app/Console/Commands/AdPayEventExportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdPayEventExportCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/AdPayGetPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdPayGetPayments.php -------------------------------------------------------------------------------- /app/Console/Commands/AdSelectCaseExportCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdSelectCaseExportCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/AdsBroadcastHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdsBroadcastHost.php -------------------------------------------------------------------------------- /app/Console/Commands/AdsFetchHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdsFetchHosts.php -------------------------------------------------------------------------------- /app/Console/Commands/AdsMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdsMe.php -------------------------------------------------------------------------------- /app/Console/Commands/AdsProcessTx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/AdsProcessTx.php -------------------------------------------------------------------------------- /app/Console/Commands/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/BaseCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/CdnResetBannersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/CdnResetBannersCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/CdnUploadBannersCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/CdnUploadBannersCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ClearEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/ClearEvents.php -------------------------------------------------------------------------------- /app/Console/Commands/ClearReports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/ClearReports.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateAdminUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/CreateAdminUserCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateOauthClientCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/CreateOauthClientCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/DeleteUserCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/DeleteUserCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/DemandBlockRequiredAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/DemandBlockRequiredAmount.php -------------------------------------------------------------------------------- /app/Console/Commands/DemandPreparePayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/DemandPreparePayments.php -------------------------------------------------------------------------------- /app/Console/Commands/DemandProcessPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/DemandProcessPayments.php -------------------------------------------------------------------------------- /app/Console/Commands/DemandSendPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/DemandSendPayments.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchExchangeRateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/FetchExchangeRateCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchLicenseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/FetchLicenseCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/InventoryImporterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/InventoryImporterCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ListAdministratorsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/ListAdministratorsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/SendEmailsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/SendEmailsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/SendJoiningFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/SendJoiningFee.php -------------------------------------------------------------------------------- /app/Console/Commands/SiteAdsTxtCheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/SiteAdsTxtCheckCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/SiteRankUpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/SiteRankUpdateCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/SupplyProcessPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/SupplyProcessPayments.php -------------------------------------------------------------------------------- /app/Console/Commands/TargetingReachCompute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/TargetingReachCompute.php -------------------------------------------------------------------------------- /app/Console/Commands/TargetingReachFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/TargetingReachFetch.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateFilteringOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/UpdateFilteringOptions.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateServeDomainsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/UpdateServeDomainsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateTargetingOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/UpdateTargetingOptions.php -------------------------------------------------------------------------------- /app/Console/Commands/WalletAmountCheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Commands/WalletAmountCheckCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Console/LineFormatterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/LineFormatterTrait.php -------------------------------------------------------------------------------- /app/Console/Locker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Console/Locker.php -------------------------------------------------------------------------------- /app/Events/CampaignCreating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/CampaignCreating.php -------------------------------------------------------------------------------- /app/Events/CreativeSha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/CreativeSha1.php -------------------------------------------------------------------------------- /app/Events/GenerateUUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/GenerateUUID.php -------------------------------------------------------------------------------- /app/Events/ReportMetaDeleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/ReportMetaDeleting.php -------------------------------------------------------------------------------- /app/Events/ServerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/ServerEvent.php -------------------------------------------------------------------------------- /app/Events/UserCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Events/UserCreated.php -------------------------------------------------------------------------------- /app/Exceptions/ConsoleCommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Exceptions/ConsoleCommandException.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/JobException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Exceptions/JobException.php -------------------------------------------------------------------------------- /app/Exceptions/Publisher/MissingCasesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Exceptions/Publisher/MissingCasesException.php -------------------------------------------------------------------------------- /app/Facades/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Facades/DB.php -------------------------------------------------------------------------------- /app/Http/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ClassificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/ClassificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ClassifyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/ClassifyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ConversionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/ConversionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DemandController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/DemandController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InfoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/InfoController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/ConfigController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/OAuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/OAuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/OptionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/OptionsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/Simulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/Simulator.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/SitesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/SitesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/StatsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/StatsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Manager/WalletController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/Manager/WalletController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SupplyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Controllers/SupplyController.php -------------------------------------------------------------------------------- /app/Http/GzippedStreamedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/GzippedStreamedResponse.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AddHeadersToResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/AddHeadersToResponse.php -------------------------------------------------------------------------------- /app/Http/Middleware/CamelizeJsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/CamelizeJsonResponse.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/Impersonation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/Impersonation.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireAdminAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequireAdminAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireAdvertiserAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequireAdvertiserAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireAgencyAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequireAgencyAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireGuestAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequireGuestAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequireModeratorAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequireModeratorAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequirePublisherAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/RequirePublisherAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/SnakizeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/SnakizeRequest.php -------------------------------------------------------------------------------- /app/Http/Middleware/StatisticsCollectorAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/StatisticsCollectorAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrackUserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/TrackUserActivity.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Requests/BidStrategyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/BidStrategyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Campaign/BannerValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Campaign/BannerValidator.php -------------------------------------------------------------------------------- /app/Http/Requests/Campaign/TargetingProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Campaign/TargetingProcessor.php -------------------------------------------------------------------------------- /app/Http/Requests/Common/LimitValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Common/LimitValidator.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/BoolFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/BoolFilter.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/DateFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/DateFilter.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/Filter.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/FilterCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/FilterCollection.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/FilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/FilterType.php -------------------------------------------------------------------------------- /app/Http/Requests/Filter/StringFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Filter/StringFilter.php -------------------------------------------------------------------------------- /app/Http/Requests/FormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/FormRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/GetSiteCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/GetSiteCode.php -------------------------------------------------------------------------------- /app/Http/Requests/Order/OrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Order/OrderBy.php -------------------------------------------------------------------------------- /app/Http/Requests/Order/OrderByCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/Order/OrderByCollection.php -------------------------------------------------------------------------------- /app/Http/Requests/TargetingReachRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/TargetingReachRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRegulation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Requests/UpdateRegulation.php -------------------------------------------------------------------------------- /app/Http/Resources/BannerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Resources/BannerResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CampaignResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Resources/CampaignResource.php -------------------------------------------------------------------------------- /app/Http/Resources/GenericCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Resources/GenericCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/HostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Resources/HostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Http/Response/Classifier/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/Classifier/Item.php -------------------------------------------------------------------------------- /app/Http/Response/InfoResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/InfoResponse.php -------------------------------------------------------------------------------- /app/Http/Response/LicenseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/LicenseResponse.php -------------------------------------------------------------------------------- /app/Http/Response/Site/SizesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/Site/SizesResponse.php -------------------------------------------------------------------------------- /app/Http/Response/Stats/ReportResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/Stats/ReportResponse.php -------------------------------------------------------------------------------- /app/Http/Response/Stats/ReportsListResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Response/Stats/ReportsListResponse.php -------------------------------------------------------------------------------- /app/Http/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Http/Utils.php -------------------------------------------------------------------------------- /app/Jobs/AdsSendOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Jobs/AdsSendOne.php -------------------------------------------------------------------------------- /app/Jobs/ExecuteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Jobs/ExecuteCommand.php -------------------------------------------------------------------------------- /app/Listeners/ServerEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Listeners/ServerEventListener.php -------------------------------------------------------------------------------- /app/Logging/CustomizeFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Logging/CustomizeFormatter.php -------------------------------------------------------------------------------- /app/Mail/AuthRecovery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/AuthRecovery.php -------------------------------------------------------------------------------- /app/Mail/BannerClassified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/BannerClassified.php -------------------------------------------------------------------------------- /app/Mail/CampaignResume.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/CampaignResume.php -------------------------------------------------------------------------------- /app/Mail/Crm/CampaignCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Crm/CampaignCreated.php -------------------------------------------------------------------------------- /app/Mail/Crm/SiteAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Crm/SiteAdded.php -------------------------------------------------------------------------------- /app/Mail/Crm/UserRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Crm/UserRegistered.php -------------------------------------------------------------------------------- /app/Mail/DepositProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/DepositProcessed.php -------------------------------------------------------------------------------- /app/Mail/InvoiceCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/InvoiceCreated.php -------------------------------------------------------------------------------- /app/Mail/Newsletter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Newsletter.php -------------------------------------------------------------------------------- /app/Mail/Notifications/CampaignAccepted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/CampaignAccepted.php -------------------------------------------------------------------------------- /app/Mail/Notifications/CampaignDraft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/CampaignDraft.php -------------------------------------------------------------------------------- /app/Mail/Notifications/CampaignEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/CampaignEnded.php -------------------------------------------------------------------------------- /app/Mail/Notifications/CampaignEndedExtend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/CampaignEndedExtend.php -------------------------------------------------------------------------------- /app/Mail/Notifications/CampaignEnds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/CampaignEnds.php -------------------------------------------------------------------------------- /app/Mail/Notifications/FundsEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/FundsEnded.php -------------------------------------------------------------------------------- /app/Mail/Notifications/FundsEnds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/FundsEnds.php -------------------------------------------------------------------------------- /app/Mail/Notifications/InactiveAdvertiser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/InactiveAdvertiser.php -------------------------------------------------------------------------------- /app/Mail/Notifications/InactivePublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/InactivePublisher.php -------------------------------------------------------------------------------- /app/Mail/Notifications/InactiveUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/InactiveUser.php -------------------------------------------------------------------------------- /app/Mail/Notifications/InactiveUserExtend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/InactiveUserExtend.php -------------------------------------------------------------------------------- /app/Mail/Notifications/InactiveUserWhoDeposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/InactiveUserWhoDeposit.php -------------------------------------------------------------------------------- /app/Mail/Notifications/SiteAccepted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/SiteAccepted.php -------------------------------------------------------------------------------- /app/Mail/Notifications/SiteDraft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/Notifications/SiteDraft.php -------------------------------------------------------------------------------- /app/Mail/PanelPlaceholdersChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/PanelPlaceholdersChange.php -------------------------------------------------------------------------------- /app/Mail/SiteAdsTxtInvalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/SiteAdsTxtInvalid.php -------------------------------------------------------------------------------- /app/Mail/SiteAdsTxtValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/SiteAdsTxtValid.php -------------------------------------------------------------------------------- /app/Mail/SiteApprovalPending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/SiteApprovalPending.php -------------------------------------------------------------------------------- /app/Mail/TechnicalError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/TechnicalError.php -------------------------------------------------------------------------------- /app/Mail/UserBanned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserBanned.php -------------------------------------------------------------------------------- /app/Mail/UserConfirmed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserConfirmed.php -------------------------------------------------------------------------------- /app/Mail/UserEmailActivate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserEmailActivate.php -------------------------------------------------------------------------------- /app/Mail/UserEmailChangeConfirm1Old.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserEmailChangeConfirm1Old.php -------------------------------------------------------------------------------- /app/Mail/UserEmailChangeConfirm2New.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserEmailChangeConfirm2New.php -------------------------------------------------------------------------------- /app/Mail/UserPasswordChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserPasswordChange.php -------------------------------------------------------------------------------- /app/Mail/UserPasswordChangeConfirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/UserPasswordChangeConfirm.php -------------------------------------------------------------------------------- /app/Mail/WalletConnectConfirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/WalletConnectConfirm.php -------------------------------------------------------------------------------- /app/Mail/WalletConnected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/WalletConnected.php -------------------------------------------------------------------------------- /app/Mail/WalletFundsEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/WalletFundsEmail.php -------------------------------------------------------------------------------- /app/Mail/WithdrawalApproval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/WithdrawalApproval.php -------------------------------------------------------------------------------- /app/Mail/WithdrawalSuccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Mail/WithdrawalSuccess.php -------------------------------------------------------------------------------- /app/Manager/EloquentTransactionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Manager/EloquentTransactionManager.php -------------------------------------------------------------------------------- /app/Models/AdsPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/AdsPayment.php -------------------------------------------------------------------------------- /app/Models/AdsPaymentMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/AdsPaymentMeta.php -------------------------------------------------------------------------------- /app/Models/AdvertiserBudget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/AdvertiserBudget.php -------------------------------------------------------------------------------- /app/Models/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Banner.php -------------------------------------------------------------------------------- /app/Models/BannerClassification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/BannerClassification.php -------------------------------------------------------------------------------- /app/Models/BidStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/BidStrategy.php -------------------------------------------------------------------------------- /app/Models/BidStrategyDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/BidStrategyDetail.php -------------------------------------------------------------------------------- /app/Models/Campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Campaign.php -------------------------------------------------------------------------------- /app/Models/Classification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Classification.php -------------------------------------------------------------------------------- /app/Models/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Config.php -------------------------------------------------------------------------------- /app/Models/Conversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Conversion.php -------------------------------------------------------------------------------- /app/Models/ConversionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/ConversionDefinition.php -------------------------------------------------------------------------------- /app/Models/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Email.php -------------------------------------------------------------------------------- /app/Models/EventBoostLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/EventBoostLog.php -------------------------------------------------------------------------------- /app/Models/EventConversionLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/EventConversionLog.php -------------------------------------------------------------------------------- /app/Models/EventLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/EventLog.php -------------------------------------------------------------------------------- /app/Models/EventLogsHourlyMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/EventLogsHourlyMeta.php -------------------------------------------------------------------------------- /app/Models/ExchangeRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/ExchangeRate.php -------------------------------------------------------------------------------- /app/Models/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Invoice.php -------------------------------------------------------------------------------- /app/Models/JoiningFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/JoiningFee.php -------------------------------------------------------------------------------- /app/Models/JoiningFeeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/JoiningFeeLog.php -------------------------------------------------------------------------------- /app/Models/NetworkBanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkBanner.php -------------------------------------------------------------------------------- /app/Models/NetworkBoostPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkBoostPayment.php -------------------------------------------------------------------------------- /app/Models/NetworkCampaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkCampaign.php -------------------------------------------------------------------------------- /app/Models/NetworkCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkCase.php -------------------------------------------------------------------------------- /app/Models/NetworkCaseClick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkCaseClick.php -------------------------------------------------------------------------------- /app/Models/NetworkCaseLogsHourlyMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkCaseLogsHourlyMeta.php -------------------------------------------------------------------------------- /app/Models/NetworkCasePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkCasePayment.php -------------------------------------------------------------------------------- /app/Models/NetworkHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkHost.php -------------------------------------------------------------------------------- /app/Models/NetworkImpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkImpression.php -------------------------------------------------------------------------------- /app/Models/NetworkMissedCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkMissedCase.php -------------------------------------------------------------------------------- /app/Models/NetworkPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkPayment.php -------------------------------------------------------------------------------- /app/Models/NetworkVectorsMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NetworkVectorsMeta.php -------------------------------------------------------------------------------- /app/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Notification.php -------------------------------------------------------------------------------- /app/Models/NotificationEmailLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NotificationEmailLog.php -------------------------------------------------------------------------------- /app/Models/NowPaymentsLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/NowPaymentsLog.php -------------------------------------------------------------------------------- /app/Models/PanelPlaceholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/PanelPlaceholder.php -------------------------------------------------------------------------------- /app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Payment.php -------------------------------------------------------------------------------- /app/Models/PaymentReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/PaymentReport.php -------------------------------------------------------------------------------- /app/Models/PublisherBoostLedgerEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/PublisherBoostLedgerEntry.php -------------------------------------------------------------------------------- /app/Models/RefLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/RefLink.php -------------------------------------------------------------------------------- /app/Models/ReportMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/ReportMeta.php -------------------------------------------------------------------------------- /app/Models/ServeDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/ServeDomain.php -------------------------------------------------------------------------------- /app/Models/ServerEventLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/ServerEventLog.php -------------------------------------------------------------------------------- /app/Models/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Site.php -------------------------------------------------------------------------------- /app/Models/SiteRejectReason.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/SiteRejectReason.php -------------------------------------------------------------------------------- /app/Models/SitesRejectedDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/SitesRejectedDomain.php -------------------------------------------------------------------------------- /app/Models/SspHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/SspHost.php -------------------------------------------------------------------------------- /app/Models/SupplyBannerPlaceholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/SupplyBannerPlaceholder.php -------------------------------------------------------------------------------- /app/Models/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Token.php -------------------------------------------------------------------------------- /app/Models/Traits/AccountAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/AccountAddress.php -------------------------------------------------------------------------------- /app/Models/Traits/AddressWithNetwork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/AddressWithNetwork.php -------------------------------------------------------------------------------- /app/Models/Traits/AutomateMutators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/AutomateMutators.php -------------------------------------------------------------------------------- /app/Models/Traits/BinHex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/BinHex.php -------------------------------------------------------------------------------- /app/Models/Traits/DateAtom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/DateAtom.php -------------------------------------------------------------------------------- /app/Models/Traits/JsonValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/JsonValue.php -------------------------------------------------------------------------------- /app/Models/Traits/Ownership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/Ownership.php -------------------------------------------------------------------------------- /app/Models/Traits/OwnershipScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/OwnershipScope.php -------------------------------------------------------------------------------- /app/Models/Traits/Serialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/Serialize.php -------------------------------------------------------------------------------- /app/Models/Traits/TransactionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Traits/TransactionId.php -------------------------------------------------------------------------------- /app/Models/TurnoverEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/TurnoverEntry.php -------------------------------------------------------------------------------- /app/Models/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/UploadedFile.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserLedgerEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/UserLedgerEntry.php -------------------------------------------------------------------------------- /app/Models/UserSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/UserSettings.php -------------------------------------------------------------------------------- /app/Models/Zone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Models/Zone.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BuilderMacros/TokenPaginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/BuilderMacros/TokenPaginate.php -------------------------------------------------------------------------------- /app/Providers/CloudflareIpServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/CloudflareIpServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Common/ClientProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/Common/ClientProvider.php -------------------------------------------------------------------------------- /app/Providers/Common/OptionsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/Common/OptionsProvider.php -------------------------------------------------------------------------------- /app/Providers/Common/PassportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/Common/PassportServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/MacrosProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/MacrosProvider.php -------------------------------------------------------------------------------- /app/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Supply/ClassifyProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/Supply/ClassifyProvider.php -------------------------------------------------------------------------------- /app/Providers/Supply/InventoryImporterProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/Supply/InventoryImporterProvider.php -------------------------------------------------------------------------------- /app/Providers/WalletUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Providers/WalletUserProvider.php -------------------------------------------------------------------------------- /app/Repository/Advertiser/MySqlStatsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Advertiser/MySqlStatsRepository.php -------------------------------------------------------------------------------- /app/Repository/CampaignRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/CampaignRepository.php -------------------------------------------------------------------------------- /app/Repository/Common/AccessTokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Common/AccessTokenRepository.php -------------------------------------------------------------------------------- /app/Repository/Common/MySqlQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Common/MySqlQueryBuilder.php -------------------------------------------------------------------------------- /app/Repository/Common/TotalFeeReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Common/TotalFeeReader.php -------------------------------------------------------------------------------- /app/Repository/Common/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Common/UserRepository.php -------------------------------------------------------------------------------- /app/Repository/FileConfigurationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/FileConfigurationRepository.php -------------------------------------------------------------------------------- /app/Repository/Supply/NetworkHostRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Repository/Supply/NetworkHostRepository.php -------------------------------------------------------------------------------- /app/Rules/AccountIdRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Rules/AccountIdRule.php -------------------------------------------------------------------------------- /app/Rules/PayoutAddressRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Rules/PayoutAddressRule.php -------------------------------------------------------------------------------- /app/Services/AdsExchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/AdsExchange.php -------------------------------------------------------------------------------- /app/Services/Advertiser/Dto/TargetingReach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Advertiser/Dto/TargetingReach.php -------------------------------------------------------------------------------- /app/Services/Cdn/CdnProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Cdn/CdnProvider.php -------------------------------------------------------------------------------- /app/Services/Cdn/CdnProviderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Cdn/CdnProviderFactory.php -------------------------------------------------------------------------------- /app/Services/Cdn/SkynetCdn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Cdn/SkynetCdn.php -------------------------------------------------------------------------------- /app/Services/Common/AdsLogReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/AdsLogReader.php -------------------------------------------------------------------------------- /app/Services/Common/AdsTxtCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/AdsTxtCrawler.php -------------------------------------------------------------------------------- /app/Services/Common/CrmNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/CrmNotifier.php -------------------------------------------------------------------------------- /app/Services/Common/Dto/EmailData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/Dto/EmailData.php -------------------------------------------------------------------------------- /app/Services/Common/EmailJobsQueuing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/EmailJobsQueuing.php -------------------------------------------------------------------------------- /app/Services/Common/ReportsStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/ReportsStorage.php -------------------------------------------------------------------------------- /app/Services/Common/UserDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Common/UserDelete.php -------------------------------------------------------------------------------- /app/Services/ConversionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/ConversionValidator.php -------------------------------------------------------------------------------- /app/Services/Demand/BannerCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Demand/BannerCreator.php -------------------------------------------------------------------------------- /app/Services/Demand/CampaignCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Demand/CampaignCreator.php -------------------------------------------------------------------------------- /app/Services/Dto/PaymentProcessingResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Dto/PaymentProcessingResult.php -------------------------------------------------------------------------------- /app/Services/EventCaseFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/EventCaseFinder.php -------------------------------------------------------------------------------- /app/Services/LicenseFeeSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/LicenseFeeSender.php -------------------------------------------------------------------------------- /app/Services/NowPayments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/NowPayments.php -------------------------------------------------------------------------------- /app/Services/PaymentDetailsFeeCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/PaymentDetailsFeeCalculator.php -------------------------------------------------------------------------------- /app/Services/PaymentDetailsProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/PaymentDetailsProcessor.php -------------------------------------------------------------------------------- /app/Services/Publisher/SiteCodeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Publisher/SiteCodeConfig.php -------------------------------------------------------------------------------- /app/Services/Publisher/SiteCodeConfigPops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Publisher/SiteCodeConfigPops.php -------------------------------------------------------------------------------- /app/Services/Publisher/SiteCodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Publisher/SiteCodeGenerator.php -------------------------------------------------------------------------------- /app/Services/Supply/AdSelectCaseExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Supply/AdSelectCaseExporter.php -------------------------------------------------------------------------------- /app/Services/Supply/SiteFilteringMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Supply/SiteFilteringMatcher.php -------------------------------------------------------------------------------- /app/Services/Supply/SiteFilteringUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Services/Supply/SiteFilteringUpdater.php -------------------------------------------------------------------------------- /app/Uploader/DirectLink/DirectLinkUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/DirectLink/DirectLinkUploader.php -------------------------------------------------------------------------------- /app/Uploader/DirectLink/UploadedDirectLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/DirectLink/UploadedDirectLink.php -------------------------------------------------------------------------------- /app/Uploader/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Factory.php -------------------------------------------------------------------------------- /app/Uploader/Html/HtmlUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Html/HtmlUploader.php -------------------------------------------------------------------------------- /app/Uploader/Html/UploadedHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Html/UploadedHtml.php -------------------------------------------------------------------------------- /app/Uploader/Image/ImageUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Image/ImageUploader.php -------------------------------------------------------------------------------- /app/Uploader/Image/UploadedImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Image/UploadedImage.php -------------------------------------------------------------------------------- /app/Uploader/Model/ModelUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Model/ModelUploader.php -------------------------------------------------------------------------------- /app/Uploader/Model/UploadedModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Model/UploadedModel.php -------------------------------------------------------------------------------- /app/Uploader/PlaceholderUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/PlaceholderUploader.php -------------------------------------------------------------------------------- /app/Uploader/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/UploadedFile.php -------------------------------------------------------------------------------- /app/Uploader/Uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Uploader.php -------------------------------------------------------------------------------- /app/Uploader/Video/UploadedVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Video/UploadedVideo.php -------------------------------------------------------------------------------- /app/Uploader/Video/VideoUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Uploader/Video/VideoUploader.php -------------------------------------------------------------------------------- /app/Utilities/AdPanelUrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/AdPanelUrlBuilder.php -------------------------------------------------------------------------------- /app/Utilities/AdsAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/AdsAuthenticator.php -------------------------------------------------------------------------------- /app/Utilities/AdsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/AdsUtils.php -------------------------------------------------------------------------------- /app/Utilities/ArrayUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/ArrayUtils.php -------------------------------------------------------------------------------- /app/Utilities/BinaryStringUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/BinaryStringUtils.php -------------------------------------------------------------------------------- /app/Utilities/ConfigTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/ConfigTypes.php -------------------------------------------------------------------------------- /app/Utilities/CssUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/CssUtils.php -------------------------------------------------------------------------------- /app/Utilities/DatabaseConfigReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/DatabaseConfigReader.php -------------------------------------------------------------------------------- /app/Utilities/DateUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/DateUtils.php -------------------------------------------------------------------------------- /app/Utilities/DomainReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/DomainReader.php -------------------------------------------------------------------------------- /app/Utilities/EthUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/EthUtils.php -------------------------------------------------------------------------------- /app/Utilities/InvoiceUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/InvoiceUtils.php -------------------------------------------------------------------------------- /app/Utilities/NonceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/NonceGenerator.php -------------------------------------------------------------------------------- /app/Utilities/Pagination/TokenPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/Pagination/TokenPaginator.php -------------------------------------------------------------------------------- /app/Utilities/PercentileComputer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/PercentileComputer.php -------------------------------------------------------------------------------- /app/Utilities/SiteUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/SiteUtils.php -------------------------------------------------------------------------------- /app/Utilities/SiteValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/SiteValidator.php -------------------------------------------------------------------------------- /app/Utilities/SqlUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/SqlUtils.php -------------------------------------------------------------------------------- /app/Utilities/UniqueId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/UniqueId.php -------------------------------------------------------------------------------- /app/Utilities/UniqueIdentifierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/UniqueIdentifierFactory.php -------------------------------------------------------------------------------- /app/Utilities/UuidStringGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/Utilities/UuidStringGenerator.php -------------------------------------------------------------------------------- /app/ViewModel/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/AccessToken.php -------------------------------------------------------------------------------- /app/ViewModel/BannerStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/BannerStatus.php -------------------------------------------------------------------------------- /app/ViewModel/CampaignStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/CampaignStatus.php -------------------------------------------------------------------------------- /app/ViewModel/ClickConversionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/ClickConversionType.php -------------------------------------------------------------------------------- /app/ViewModel/MediumName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/MediumName.php -------------------------------------------------------------------------------- /app/ViewModel/MetaverseVendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/MetaverseVendor.php -------------------------------------------------------------------------------- /app/ViewModel/NotificationEmailCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/NotificationEmailCategory.php -------------------------------------------------------------------------------- /app/ViewModel/OptionsSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/OptionsSelector.php -------------------------------------------------------------------------------- /app/ViewModel/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/Role.php -------------------------------------------------------------------------------- /app/ViewModel/ScopeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/ScopeType.php -------------------------------------------------------------------------------- /app/ViewModel/ServerEventType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/ServerEventType.php -------------------------------------------------------------------------------- /app/ViewModel/ZoneSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/app/ViewModel/ZoneSize.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/artisan -------------------------------------------------------------------------------- /bin/artisan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/bin/artisan.sh -------------------------------------------------------------------------------- /bin/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/bin/composer.sh -------------------------------------------------------------------------------- /bin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/bin/init.sh -------------------------------------------------------------------------------- /bin/php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/bin/php.sh -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activitylog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/activitylog.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jwt/.gitignore: -------------------------------------------------------------------------------- 1 | *.key 2 | -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/passport.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/config/view.php -------------------------------------------------------------------------------- /database/factories/AdsPaymentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/AdsPaymentFactory.php -------------------------------------------------------------------------------- /database/factories/AdsPaymentMetaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/AdsPaymentMetaFactory.php -------------------------------------------------------------------------------- /database/factories/BannerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/BannerFactory.php -------------------------------------------------------------------------------- /database/factories/BidStrategyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/BidStrategyFactory.php -------------------------------------------------------------------------------- /database/factories/CampaignFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/CampaignFactory.php -------------------------------------------------------------------------------- /database/factories/ClassificationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ClassificationFactory.php -------------------------------------------------------------------------------- /database/factories/ConfigFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ConfigFactory.php -------------------------------------------------------------------------------- /database/factories/ConversionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ConversionFactory.php -------------------------------------------------------------------------------- /database/factories/EventBoostLogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/EventBoostLogFactory.php -------------------------------------------------------------------------------- /database/factories/EventLogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/EventLogFactory.php -------------------------------------------------------------------------------- /database/factories/InvoiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/InvoiceFactory.php -------------------------------------------------------------------------------- /database/factories/JoiningFeeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/JoiningFeeFactory.php -------------------------------------------------------------------------------- /database/factories/JoiningFeeLogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/JoiningFeeLogFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkBannerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkBannerFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkCampaignFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkCampaignFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkCaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkCaseFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkHostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkHostFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkImpressionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkImpressionFactory.php -------------------------------------------------------------------------------- /database/factories/NetworkMissedCaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/NetworkMissedCaseFactory.php -------------------------------------------------------------------------------- /database/factories/PaymentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/PaymentFactory.php -------------------------------------------------------------------------------- /database/factories/RefLinkFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/RefLinkFactory.php -------------------------------------------------------------------------------- /database/factories/ServeDomainFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ServeDomainFactory.php -------------------------------------------------------------------------------- /database/factories/ServerEventLogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ServerEventLogFactory.php -------------------------------------------------------------------------------- /database/factories/SiteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/SiteFactory.php -------------------------------------------------------------------------------- /database/factories/SiteRejectReasonFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/SiteRejectReasonFactory.php -------------------------------------------------------------------------------- /database/factories/SspHostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/SspHostFactory.php -------------------------------------------------------------------------------- /database/factories/TurnoverEntryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/TurnoverEntryFactory.php -------------------------------------------------------------------------------- /database/factories/UploadedFileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/UploadedFileFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/factories/UserLedgerEntryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/UserLedgerEntryFactory.php -------------------------------------------------------------------------------- /database/factories/ZoneFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/factories/ZoneFactory.php -------------------------------------------------------------------------------- /database/migrations/2019_04_25_111529_ipv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/migrations/2019_04_25_111529_ipv6.php -------------------------------------------------------------------------------- /database/mock-data/campaigns-advertisers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/mock-data/campaigns-advertisers.json -------------------------------------------------------------------------------- /database/mock-data/sites-publishers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/mock-data/sites-publishers.json -------------------------------------------------------------------------------- /database/mock-data/user-ledger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/mock-data/user-ledger.json -------------------------------------------------------------------------------- /database/mock-data/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/mock-data/users.json -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataCampaignsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataCampaignsSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataNetworkHostsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataNetworkHostsSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataSitesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataSitesSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataUserLedgerSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataUserLedgerSeeder.php -------------------------------------------------------------------------------- /database/seeders/MockDataUsersSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/MockDataUsersSeeder.php -------------------------------------------------------------------------------- /database/seeders/assets/ads/ads_160x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads/ads_160x600.png -------------------------------------------------------------------------------- /database/seeders/assets/ads/ads_320x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads/ads_320x50.png -------------------------------------------------------------------------------- /database/seeders/assets/ads/ads_468x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads/ads_468x60.png -------------------------------------------------------------------------------- /database/seeders/assets/ads/ads_970x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads/ads_970x90.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/ads1_230x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/ads1_230x600.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/ads1_728x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/ads1_728x90.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/ads1_750x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/ads1_750x300.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/ads2_230x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/ads2_230x600.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/ads2_750x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/ads2_750x300.png -------------------------------------------------------------------------------- /database/seeders/assets/ads2/esc_728x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/ads2/esc_728x90.png -------------------------------------------------------------------------------- /database/seeders/assets/cats/cats_160x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/cats/cats_160x600.png -------------------------------------------------------------------------------- /database/seeders/assets/cats/cats_320x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/cats/cats_320x50.png -------------------------------------------------------------------------------- /database/seeders/assets/cats/cats_468x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/cats/cats_468x60.png -------------------------------------------------------------------------------- /database/seeders/assets/cats/cats_970x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/cats/cats_970x90.png -------------------------------------------------------------------------------- /database/seeders/assets/tea/tea_160x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/tea/tea_160x600.png -------------------------------------------------------------------------------- /database/seeders/assets/tea/tea_320x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/tea/tea_320x50.png -------------------------------------------------------------------------------- /database/seeders/assets/tea/tea_468x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/tea/tea_468x60.png -------------------------------------------------------------------------------- /database/seeders/assets/tea/tea_970x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/tea/tea_970x90.png -------------------------------------------------------------------------------- /database/seeders/assets/usterka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/database/seeders/assets/usterka.png -------------------------------------------------------------------------------- /deploy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/build.sh -------------------------------------------------------------------------------- /deploy/crontablist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/crontablist.sh -------------------------------------------------------------------------------- /deploy/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/migrate.sh -------------------------------------------------------------------------------- /deploy/nginx-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/nginx-server.conf -------------------------------------------------------------------------------- /deploy/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/reload.sh -------------------------------------------------------------------------------- /deploy/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/supervisor.conf -------------------------------------------------------------------------------- /deploy/supervisor_ads.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/supervisor_ads.conf -------------------------------------------------------------------------------- /deploy/v0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/v0.5/README.md -------------------------------------------------------------------------------- /deploy/v0.5/update_domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/v0.5/update_domain.php -------------------------------------------------------------------------------- /deploy/v0.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/v0.8/README.md -------------------------------------------------------------------------------- /deploy/v1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/v1.2.0/README.md -------------------------------------------------------------------------------- /deploy/v1.2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/deploy/v1.2.3/README.md -------------------------------------------------------------------------------- /dev-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/dev-router.php -------------------------------------------------------------------------------- /docker/bin/append_to_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/bin/append_to_hosts.sh -------------------------------------------------------------------------------- /docker/bin/docker-php-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/bin/docker-php-entrypoint.sh -------------------------------------------------------------------------------- /docker/bin/php-fpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/bin/php-fpm.sh -------------------------------------------------------------------------------- /docker/bin/set_config_from_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/bin/set_config_from_env.sh -------------------------------------------------------------------------------- /docker/bin/wait_for_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/bin/wait_for_database.sh -------------------------------------------------------------------------------- /docker/cron/adpay-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/adpay-export.sh -------------------------------------------------------------------------------- /docker/cron/ads-broadcast-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ads-broadcast-host.sh -------------------------------------------------------------------------------- /docker/cron/ads-fetch-hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ads-fetch-hosts.sh -------------------------------------------------------------------------------- /docker/cron/ads-scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ads-scanner.sh -------------------------------------------------------------------------------- /docker/cron/adselect-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/adselect-export.sh -------------------------------------------------------------------------------- /docker/cron/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/crontab -------------------------------------------------------------------------------- /docker/cron/crontab-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/crontab-demo -------------------------------------------------------------------------------- /docker/cron/crontab-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/crontab-docker -------------------------------------------------------------------------------- /docker/cron/crontab-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/crontab-test -------------------------------------------------------------------------------- /docker/cron/ops-inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ops-inventory.sh -------------------------------------------------------------------------------- /docker/cron/ops-payments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ops-payments.sh -------------------------------------------------------------------------------- /docker/cron/ops-wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/cron/ops-wallet.sh -------------------------------------------------------------------------------- /docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/dockerfile -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/overrides.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/overrides.conf -------------------------------------------------------------------------------- /docker/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/skel/.bash_logout -------------------------------------------------------------------------------- /docker/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/skel/.bashrc -------------------------------------------------------------------------------- /docker/skel/.config/mc/ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/skel/.config/mc/ini -------------------------------------------------------------------------------- /docker/skel/.config/mc/panels.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/skel/.config/mc/panels.ini -------------------------------------------------------------------------------- /docker/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docker/skel/.profile -------------------------------------------------------------------------------- /docker/skel/.ssh/authorized_keys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/banner-sizes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/banner-sizes.md -------------------------------------------------------------------------------- /docs/conversion_diagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/conversion_diagram.puml -------------------------------------------------------------------------------- /docs/conversion_flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/conversion_flow.puml -------------------------------------------------------------------------------- /docs/examples/adselect01.banner_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/examples/adselect01.banner_select.json -------------------------------------------------------------------------------- /docs/examples/adselect01.campaign_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/examples/adselect01.campaign_update.json -------------------------------------------------------------------------------- /docs/examples/adselect02.banner_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/examples/adselect02.banner_select.json -------------------------------------------------------------------------------- /docs/examples/adselect02.campaign_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/examples/adselect02.campaign_update.json -------------------------------------------------------------------------------- /docs/publisher-flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/publisher-flow.puml -------------------------------------------------------------------------------- /docs/schemas/context/v0.1/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/context/v0.1/example.json -------------------------------------------------------------------------------- /docs/schemas/context/v0.1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/context/v0.1/schema.json -------------------------------------------------------------------------------- /docs/schemas/info/v0.1/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/info/v0.1/example.json -------------------------------------------------------------------------------- /docs/schemas/info/v0.1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/info/v0.1/schema.json -------------------------------------------------------------------------------- /docs/schemas/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/schema.json -------------------------------------------------------------------------------- /docs/schemas/taxonomy/v0.1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/docs/schemas/taxonomy/v0.1/schema.json -------------------------------------------------------------------------------- /lib/DOMDocumentSafe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/lib/DOMDocumentSafe.php -------------------------------------------------------------------------------- /lib/ZipToHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/lib/ZipToHtml.php -------------------------------------------------------------------------------- /mocks/mappings/ad_unit_sizes_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/ad_unit_sizes_get.json -------------------------------------------------------------------------------- /mocks/mappings/admin_settings__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/admin_settings__get.json -------------------------------------------------------------------------------- /mocks/mappings/admin_settings__patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/admin_settings__patch.json -------------------------------------------------------------------------------- /mocks/mappings/admin_settings_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/admin_settings_get.json -------------------------------------------------------------------------------- /mocks/mappings/adshares_address_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/adshares_address_get.json -------------------------------------------------------------------------------- /mocks/mappings/all_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/all_get.json -------------------------------------------------------------------------------- /mocks/mappings/auth_check__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_check__get.json -------------------------------------------------------------------------------- /mocks/mappings/auth_login_admin__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_login_admin__post.json -------------------------------------------------------------------------------- /mocks/mappings/auth_login_failed__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_login_failed__post.json -------------------------------------------------------------------------------- /mocks/mappings/auth_login_user_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_login_user_post.json -------------------------------------------------------------------------------- /mocks/mappings/auth_logout_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_logout_get.json -------------------------------------------------------------------------------- /mocks/mappings/auth_recovery__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/auth_recovery__post.json -------------------------------------------------------------------------------- /mocks/mappings/billing_history_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/billing_history_get.json -------------------------------------------------------------------------------- /mocks/mappings/campaign_183297987312_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaign_183297987312_get.json -------------------------------------------------------------------------------- /mocks/mappings/campaign_targeting_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaign_targeting_get.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_0_banner__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_0_banner__post.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_183297987312__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_183297987312__get.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns__post.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_count__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_count__get.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_post.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_targeting__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_targeting__get.json -------------------------------------------------------------------------------- /mocks/mappings/campaigns_totals_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/campaigns_totals_post.json -------------------------------------------------------------------------------- /mocks/mappings/change_email_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/change_email_post.json -------------------------------------------------------------------------------- /mocks/mappings/change_password_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/change_password_post.json -------------------------------------------------------------------------------- /mocks/mappings/chart__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/chart__post.json -------------------------------------------------------------------------------- /mocks/mappings/chart_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/chart_post.json -------------------------------------------------------------------------------- /mocks/mappings/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/config.json -------------------------------------------------------------------------------- /mocks/mappings/config_banners__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/config_banners__get.json -------------------------------------------------------------------------------- /mocks/mappings/delete_ad_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/delete_ad_post.json -------------------------------------------------------------------------------- /mocks/mappings/dismiss_notification_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/dismiss_notification_post.json -------------------------------------------------------------------------------- /mocks/mappings/notifications_1__delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/notifications_1__delete.json -------------------------------------------------------------------------------- /mocks/mappings/notifications__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/notifications__get.json -------------------------------------------------------------------------------- /mocks/mappings/notifications_list_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/notifications_list_get.json -------------------------------------------------------------------------------- /mocks/mappings/notifications_settings__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/notifications_settings__get.json -------------------------------------------------------------------------------- /mocks/mappings/notifications_settings_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/notifications_settings_get.json -------------------------------------------------------------------------------- /mocks/mappings/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/options.json -------------------------------------------------------------------------------- /mocks/mappings/publisher_chart__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/publisher_chart__post.json -------------------------------------------------------------------------------- /mocks/mappings/publisher_chart_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/publisher_chart_post.json -------------------------------------------------------------------------------- /mocks/mappings/register_user_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/register_user_post.json -------------------------------------------------------------------------------- /mocks/mappings/remind_password_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/remind_password_post.json -------------------------------------------------------------------------------- /mocks/mappings/save_ad__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/save_ad__post.json -------------------------------------------------------------------------------- /mocks/mappings/save_ad_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/save_ad_post.json -------------------------------------------------------------------------------- /mocks/mappings/save_campaign_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/save_campaign_post.json -------------------------------------------------------------------------------- /mocks/mappings/save_site_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/save_site_post.json -------------------------------------------------------------------------------- /mocks/mappings/send_activation_email_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/send_activation_email_post.json -------------------------------------------------------------------------------- /mocks/mappings/site_1111_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/site_1111_get.json -------------------------------------------------------------------------------- /mocks/mappings/site_222222222222_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/site_222222222222_get.json -------------------------------------------------------------------------------- /mocks/mappings/site_targeting_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/site_targeting_get.json -------------------------------------------------------------------------------- /mocks/mappings/sites_1111__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_1111__get.json -------------------------------------------------------------------------------- /mocks/mappings/sites_222222222222__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_222222222222__get.json -------------------------------------------------------------------------------- /mocks/mappings/sites__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites__post.json -------------------------------------------------------------------------------- /mocks/mappings/sites_count__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_count__get.json -------------------------------------------------------------------------------- /mocks/mappings/sites_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_get.json -------------------------------------------------------------------------------- /mocks/mappings/sites_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_post.json -------------------------------------------------------------------------------- /mocks/mappings/sites_targeting__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_targeting__get.json -------------------------------------------------------------------------------- /mocks/mappings/sites_totals__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_totals__post.json -------------------------------------------------------------------------------- /mocks/mappings/sites_totals_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/sites_totals_post.json -------------------------------------------------------------------------------- /mocks/mappings/update_admin_settings_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/update_admin_settings_post.json -------------------------------------------------------------------------------- /mocks/mappings/upload_ad_0_put.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/upload_ad_0_put.json -------------------------------------------------------------------------------- /mocks/mappings/users___get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users___get.json -------------------------------------------------------------------------------- /mocks/mappings/users___patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users___patch.json -------------------------------------------------------------------------------- /mocks/mappings/users_email__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users_email__post.json -------------------------------------------------------------------------------- /mocks/mappings/users_users__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users_users__get.json -------------------------------------------------------------------------------- /mocks/mappings/users_users__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users_users__post.json -------------------------------------------------------------------------------- /mocks/mappings/users_users_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/users_users_get.json -------------------------------------------------------------------------------- /mocks/mappings/wallet_history__get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/wallet_history__get.json -------------------------------------------------------------------------------- /mocks/mappings/wallet_settings__patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/wallet_settings__patch.json -------------------------------------------------------------------------------- /mocks/mappings/wallet_withdraw__post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/wallet_withdraw__post.json -------------------------------------------------------------------------------- /mocks/mappings/withdraw_funds_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/mappings/withdraw_funds_post.json -------------------------------------------------------------------------------- /mocks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/readme.md -------------------------------------------------------------------------------- /mocks/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/sites.json -------------------------------------------------------------------------------- /mocks/wallet-history_get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/mocks/wallet-history_get.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/css/why.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/public/css/why.css -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/public/index.php -------------------------------------------------------------------------------- /public/panel-assets-default/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/public/panel-assets-default/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/fonts/mock-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/fonts/mock-font.ttf -------------------------------------------------------------------------------- /resources/img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/img/empty.gif -------------------------------------------------------------------------------- /resources/img/placeholder_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/img/placeholder_seed.png -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/base/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/base/base64.js -------------------------------------------------------------------------------- /resources/js/base/compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/base/compat.js -------------------------------------------------------------------------------- /resources/js/base/domready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/base/domready.js -------------------------------------------------------------------------------- /resources/js/base/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/base/utils.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/cryptovoxels/cryptovoxels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/cryptovoxels/cryptovoxels.js -------------------------------------------------------------------------------- /resources/js/cryptovoxels/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/cryptovoxels/template.js -------------------------------------------------------------------------------- /resources/js/demand/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/demand/banner.js -------------------------------------------------------------------------------- /resources/js/demand/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/demand/view.js -------------------------------------------------------------------------------- /resources/js/demand/ziptohtml/createjs_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/demand/ziptohtml/createjs_fix.js -------------------------------------------------------------------------------- /resources/js/demand/ziptohtml/fixscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/demand/ziptohtml/fixscript.js -------------------------------------------------------------------------------- /resources/js/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/footer/footer.js -------------------------------------------------------------------------------- /resources/js/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/header/header.js -------------------------------------------------------------------------------- /resources/js/supply/find/backfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/find/backfill.js -------------------------------------------------------------------------------- /resources/js/supply/find/block_detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/find/block_detect.js -------------------------------------------------------------------------------- /resources/js/supply/find/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/find/find.js -------------------------------------------------------------------------------- /resources/js/supply/inv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/inv.js -------------------------------------------------------------------------------- /resources/js/supply/main/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/main/head.js -------------------------------------------------------------------------------- /resources/js/supply/pops/1_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/pops/1_store.js -------------------------------------------------------------------------------- /resources/js/supply/pops/2_pops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/pops/2_pops.js -------------------------------------------------------------------------------- /resources/js/supply/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/sha1.js -------------------------------------------------------------------------------- /resources/js/supply/sha1_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/js/supply/sha1_compat.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/en/why-this-ad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/lang/en/why-this-ad.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/demand/view-event.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/demand/view-event.blade.php -------------------------------------------------------------------------------- /resources/views/emails/auth-recovery.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/emails/auth-recovery.blade.php -------------------------------------------------------------------------------- /resources/views/emails/crm/site-added.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/emails/crm/site-added.blade.php -------------------------------------------------------------------------------- /resources/views/emails/newsletter.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/emails/newsletter.blade.php -------------------------------------------------------------------------------- /resources/views/emails/user-banned.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/emails/user-banned.blade.php -------------------------------------------------------------------------------- /resources/views/emails/user-confirmed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/emails/user-confirmed.blade.php -------------------------------------------------------------------------------- /resources/views/info/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/info/policy.blade.php -------------------------------------------------------------------------------- /resources/views/invoices/proforma-en.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/invoices/proforma-en.blade.php -------------------------------------------------------------------------------- /resources/views/supply/why.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/resources/views/supply/why.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/config.php -------------------------------------------------------------------------------- /routes/demand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/demand.php -------------------------------------------------------------------------------- /routes/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/main.php -------------------------------------------------------------------------------- /routes/manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/manager.php -------------------------------------------------------------------------------- /routes/supply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/routes/supply.php -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/scripts/pre-build.sh -------------------------------------------------------------------------------- /scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/scripts/pre-install.sh -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/server.php -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Advertiser/Dto/Input/ChartInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Input/ChartInput.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Input/StatsInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Input/StatsInput.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Result/ChartResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Result/ChartResult.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Result/Stats/Calculation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Result/Stats/Calculation.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Result/Stats/DataEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Result/Stats/DataEntry.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Result/Stats/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Result/Stats/Total.php -------------------------------------------------------------------------------- /src/Advertiser/Dto/Result/StatsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Dto/Result/StatsResult.php -------------------------------------------------------------------------------- /src/Advertiser/Repository/StatsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Repository/StatsRepository.php -------------------------------------------------------------------------------- /src/Advertiser/Service/ChartDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Service/ChartDataProvider.php -------------------------------------------------------------------------------- /src/Advertiser/Service/StatsDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Advertiser/Service/StatsDataProvider.php -------------------------------------------------------------------------------- /src/Classify/Domain/Model/Classification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Classify/Domain/Model/Classification.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/CommunityFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/CommunityFee.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/EncodedLicense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/EncodedLicense.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/ExchangeRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/ExchangeRate.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/Gateway.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/Media.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/PageRank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/PageRank.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/TaxonomyV1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/TaxonomyV1.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/TaxonomyV1/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/TaxonomyV1/Item.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/TaxonomyV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/TaxonomyV2.php -------------------------------------------------------------------------------- /src/Common/Application/Dto/TaxonomyV2/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Dto/TaxonomyV2/Meta.php -------------------------------------------------------------------------------- /src/Common/Application/Factory/MediaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Factory/MediaFactory.php -------------------------------------------------------------------------------- /src/Common/Application/Model/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Model/Currency.php -------------------------------------------------------------------------------- /src/Common/Application/Model/Selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Model/Selector.php -------------------------------------------------------------------------------- /src/Common/Application/Service/AdClassify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Service/AdClassify.php -------------------------------------------------------------------------------- /src/Common/Application/Service/AdUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Service/AdUser.php -------------------------------------------------------------------------------- /src/Common/Application/Service/Ads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Service/Ads.php -------------------------------------------------------------------------------- /src/Common/Application/Service/AdsRpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Service/AdsRpcClient.php -------------------------------------------------------------------------------- /src/Common/Application/Service/LicenseVault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/Service/LicenseVault.php -------------------------------------------------------------------------------- /src/Common/Application/TransactionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Application/TransactionManager.php -------------------------------------------------------------------------------- /src/Common/Comparable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Comparable.php -------------------------------------------------------------------------------- /src/Common/Domain/Adapter/ArrayCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/Adapter/ArrayCollection.php -------------------------------------------------------------------------------- /src/Common/Domain/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/Collection.php -------------------------------------------------------------------------------- /src/Common/Domain/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/Id.php -------------------------------------------------------------------------------- /src/Common/Domain/Model/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/Model/Account.php -------------------------------------------------------------------------------- /src/Common/Domain/Model/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/Model/Transaction.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/AccountId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/AccountId.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/Commission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/Commission.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/Email.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/License.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/NullUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/NullUrl.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/SecureUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/SecureUrl.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/SemVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/SemVer.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/TransactionId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/TransactionId.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/Url.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/Uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/Uuid.php -------------------------------------------------------------------------------- /src/Common/Domain/ValueObject/WalletAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Domain/ValueObject/WalletAddress.php -------------------------------------------------------------------------------- /src/Common/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Exception/Exception.php -------------------------------------------------------------------------------- /src/Common/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Common/Identifiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Identifiable.php -------------------------------------------------------------------------------- /src/Common/Infrastructure/Service/Sodium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Infrastructure/Service/Sodium.php -------------------------------------------------------------------------------- /src/Common/Infrastructure/Service/Web3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/Infrastructure/Service/Web3.php -------------------------------------------------------------------------------- /src/Common/UrlInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Common/UrlInterface.php -------------------------------------------------------------------------------- /src/Config/AppMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Config/AppMode.php -------------------------------------------------------------------------------- /src/Config/RegistrationMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Config/RegistrationMode.php -------------------------------------------------------------------------------- /src/Config/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Config/UserRole.php -------------------------------------------------------------------------------- /src/Demand/Application/Dto/AdPayEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Demand/Application/Dto/AdPayEvents.php -------------------------------------------------------------------------------- /src/Demand/Application/Service/AdPay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Demand/Application/Service/AdPay.php -------------------------------------------------------------------------------- /src/Network/Broadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Network/Broadcast.php -------------------------------------------------------------------------------- /src/Network/Broadcastable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Network/Broadcastable.php -------------------------------------------------------------------------------- /src/Network/BroadcastableUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Network/BroadcastableUrl.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Input/ChartInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Input/ChartInput.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Input/StatsInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Input/StatsInput.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Result/ChartResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Result/ChartResult.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Result/Stats/Calculation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Result/Stats/Calculation.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Result/Stats/DataEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Result/Stats/DataEntry.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Result/Stats/Total.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Result/Stats/Total.php -------------------------------------------------------------------------------- /src/Publisher/Dto/Result/StatsResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Dto/Result/StatsResult.php -------------------------------------------------------------------------------- /src/Publisher/Repository/StatsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Repository/StatsRepository.php -------------------------------------------------------------------------------- /src/Publisher/Service/ChartDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Service/ChartDataProvider.php -------------------------------------------------------------------------------- /src/Publisher/Service/StatsDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Publisher/Service/StatsDataProvider.php -------------------------------------------------------------------------------- /src/Supply/Application/Dto/FoundBanners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Dto/FoundBanners.php -------------------------------------------------------------------------------- /src/Supply/Application/Dto/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Dto/Info.php -------------------------------------------------------------------------------- /src/Supply/Application/Dto/InfoStatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Dto/InfoStatistics.php -------------------------------------------------------------------------------- /src/Supply/Application/Dto/UserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Dto/UserContext.php -------------------------------------------------------------------------------- /src/Supply/Application/Service/AdSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Service/AdSelect.php -------------------------------------------------------------------------------- /src/Supply/Application/Service/DemandClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Service/DemandClient.php -------------------------------------------------------------------------------- /src/Supply/Application/Service/SupplyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Application/Service/SupplyClient.php -------------------------------------------------------------------------------- /src/Supply/Domain/Factory/CampaignFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/Factory/CampaignFactory.php -------------------------------------------------------------------------------- /src/Supply/Domain/Model/Banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/Model/Banner.php -------------------------------------------------------------------------------- /src/Supply/Domain/Model/Campaign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/Model/Campaign.php -------------------------------------------------------------------------------- /src/Supply/Domain/Model/CampaignCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/Model/CampaignCollection.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/BannerUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/BannerUrl.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/Budget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/Budget.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/CampaignDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/CampaignDate.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/HostStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/HostStatus.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/Size.php -------------------------------------------------------------------------------- /src/Supply/Domain/ValueObject/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/src/Supply/Domain/ValueObject/Status.php -------------------------------------------------------------------------------- /tests/app/Client/GuzzleAdPayClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Client/GuzzleAdPayClientTest.php -------------------------------------------------------------------------------- /tests/app/Client/GuzzleAdSelectClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Client/GuzzleAdSelectClientTest.php -------------------------------------------------------------------------------- /tests/app/Client/GuzzleAdUserClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Client/GuzzleAdUserClientTest.php -------------------------------------------------------------------------------- /tests/app/Client/GuzzleDemandClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Client/GuzzleDemandClientTest.php -------------------------------------------------------------------------------- /tests/app/Console/Commands/AdsMeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Console/Commands/AdsMeTest.php -------------------------------------------------------------------------------- /tests/app/Console/Commands/AdsProcessTxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Console/Commands/AdsProcessTxTest.php -------------------------------------------------------------------------------- /tests/app/Console/ConsoleTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Console/ConsoleTestCase.php -------------------------------------------------------------------------------- /tests/app/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/CreatesApplication.php -------------------------------------------------------------------------------- /tests/app/Http/ClassifierControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Http/ClassifierControllerTest.php -------------------------------------------------------------------------------- /tests/app/Http/Response/LicenseResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Http/Response/LicenseResponseTest.php -------------------------------------------------------------------------------- /tests/app/Http/StatsControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Http/StatsControllerTest.php -------------------------------------------------------------------------------- /tests/app/Http/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Http/UtilsTest.php -------------------------------------------------------------------------------- /tests/app/Jobs/AdsSendOneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Jobs/AdsSendOneTest.php -------------------------------------------------------------------------------- /tests/app/Jobs/ExecuteCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Jobs/ExecuteCommandTest.php -------------------------------------------------------------------------------- /tests/app/Listener/ServerEventListenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Listener/ServerEventListenerTest.php -------------------------------------------------------------------------------- /tests/app/Mail/Crm/CampaignCreatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/Crm/CampaignCreatedTest.php -------------------------------------------------------------------------------- /tests/app/Mail/DepositProcessedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/DepositProcessedTest.php -------------------------------------------------------------------------------- /tests/app/Mail/MailTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/MailTestCase.php -------------------------------------------------------------------------------- /tests/app/Mail/Notifications/FundsEndedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/Notifications/FundsEndedTest.php -------------------------------------------------------------------------------- /tests/app/Mail/Notifications/FundsEndsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/Notifications/FundsEndsTest.php -------------------------------------------------------------------------------- /tests/app/Mail/Notifications/SiteDraftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/Notifications/SiteDraftTest.php -------------------------------------------------------------------------------- /tests/app/Mail/SiteAdsTxtInvalidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/SiteAdsTxtInvalidTest.php -------------------------------------------------------------------------------- /tests/app/Mail/SiteAdsTxtValidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/SiteAdsTxtValidTest.php -------------------------------------------------------------------------------- /tests/app/Mail/SiteApprovalPendingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/SiteApprovalPendingTest.php -------------------------------------------------------------------------------- /tests/app/Mail/TechnicalErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Mail/TechnicalErrorTest.php -------------------------------------------------------------------------------- /tests/app/Models/AdsPaymentMetaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/AdsPaymentMetaTest.php -------------------------------------------------------------------------------- /tests/app/Models/BannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/BannerTest.php -------------------------------------------------------------------------------- /tests/app/Models/CampaignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/CampaignTest.php -------------------------------------------------------------------------------- /tests/app/Models/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/ConfigTest.php -------------------------------------------------------------------------------- /tests/app/Models/EventBoostLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/EventBoostLogTest.php -------------------------------------------------------------------------------- /tests/app/Models/EventLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/EventLogTest.php -------------------------------------------------------------------------------- /tests/app/Models/InvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/InvoiceTest.php -------------------------------------------------------------------------------- /tests/app/Models/JoiningFeeLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/JoiningFeeLogTest.php -------------------------------------------------------------------------------- /tests/app/Models/JoiningFeeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/JoiningFeeTest.php -------------------------------------------------------------------------------- /tests/app/Models/NetworkBannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/NetworkBannerTest.php -------------------------------------------------------------------------------- /tests/app/Models/NetworkCampaignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/NetworkCampaignTest.php -------------------------------------------------------------------------------- /tests/app/Models/NetworkHostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/NetworkHostTest.php -------------------------------------------------------------------------------- /tests/app/Models/NetworkMissedCaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/NetworkMissedCaseTest.php -------------------------------------------------------------------------------- /tests/app/Models/NotificationEmailLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/NotificationEmailLogTest.php -------------------------------------------------------------------------------- /tests/app/Models/PaymentReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/PaymentReportTest.php -------------------------------------------------------------------------------- /tests/app/Models/RefLinkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/RefLinkTest.php -------------------------------------------------------------------------------- /tests/app/Models/ServeDomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/ServeDomainTest.php -------------------------------------------------------------------------------- /tests/app/Models/SiteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/SiteTest.php -------------------------------------------------------------------------------- /tests/app/Models/SitesRejectedDomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/SitesRejectedDomainTest.php -------------------------------------------------------------------------------- /tests/app/Models/SspHostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/SspHostTest.php -------------------------------------------------------------------------------- /tests/app/Models/TurnoverEntryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/TurnoverEntryTest.php -------------------------------------------------------------------------------- /tests/app/Models/UserLedgerEntryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/UserLedgerEntryTest.php -------------------------------------------------------------------------------- /tests/app/Models/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/UserTest.php -------------------------------------------------------------------------------- /tests/app/Models/ZoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Models/ZoneTest.php -------------------------------------------------------------------------------- /tests/app/RefreshDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/RefreshDatabase.php -------------------------------------------------------------------------------- /tests/app/Repository/CampaignRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Repository/CampaignRepositoryTest.php -------------------------------------------------------------------------------- /tests/app/Services/Common/AdsLogReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/Common/AdsLogReaderTest.php -------------------------------------------------------------------------------- /tests/app/Services/Common/AdsTxtCrawlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/Common/AdsTxtCrawlerTest.php -------------------------------------------------------------------------------- /tests/app/Services/Common/CrmNotifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/Common/CrmNotifierTest.php -------------------------------------------------------------------------------- /tests/app/Services/Common/UserDeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/Common/UserDeleteTest.php -------------------------------------------------------------------------------- /tests/app/Services/ConversionValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/ConversionValidatorTest.php -------------------------------------------------------------------------------- /tests/app/Services/Demand/BannerCreatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/Demand/BannerCreatorTest.php -------------------------------------------------------------------------------- /tests/app/Services/NowPaymentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Services/NowPaymentsTest.php -------------------------------------------------------------------------------- /tests/app/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/TestCase.php -------------------------------------------------------------------------------- /tests/app/Uploader/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/FactoryTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/Html/HtmlUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/Html/HtmlUploaderTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/Html/UploadedHtmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/Html/UploadedHtmlTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/Image/ImageUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/Image/ImageUploaderTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/Model/ModelUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/Model/ModelUploaderTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/PlaceholderUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/PlaceholderUploaderTest.php -------------------------------------------------------------------------------- /tests/app/Uploader/Video/VideoUploaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Uploader/Video/VideoUploaderTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/AdsAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/AdsAuthenticatorTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/AdsUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/AdsUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/ArrayUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/ArrayUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/BinaryStringUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/BinaryStringUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/CssUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/CssUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/DateUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/DateUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/DomainReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/DomainReaderTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/InvoiceUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/InvoiceUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/SiteUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/SiteUtilsTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/SiteValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/SiteValidatorTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/UniqueIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/UniqueIdTest.php -------------------------------------------------------------------------------- /tests/app/Utilities/UuidStringGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/Utilities/UuidStringGeneratorTest.php -------------------------------------------------------------------------------- /tests/app/ViewModel/AccessTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/ViewModel/AccessTokenTest.php -------------------------------------------------------------------------------- /tests/app/ViewModel/BannerStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/ViewModel/BannerStatusTest.php -------------------------------------------------------------------------------- /tests/app/ViewModel/CampaignStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/ViewModel/CampaignStatusTest.php -------------------------------------------------------------------------------- /tests/app/ViewModel/ClickConversionTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/ViewModel/ClickConversionTypeTest.php -------------------------------------------------------------------------------- /tests/app/ViewModel/ZoneSizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/app/ViewModel/ZoneSizeTest.php -------------------------------------------------------------------------------- /tests/lib/ZipToHtmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/lib/ZipToHtmlTest.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdClassifyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdClassifyClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdPayClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdPayClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdSelectClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdSelectClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdUserClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdUserClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdsClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyAdsRpcClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyAdsRpcClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummyDemandClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummyDemandClient.php -------------------------------------------------------------------------------- /tests/mock/Client/DummySupplyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Client/DummySupplyClient.php -------------------------------------------------------------------------------- /tests/mock/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Console/Kernel.php -------------------------------------------------------------------------------- /tests/mock/Files/Banners/2xhtml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/2xhtml.zip -------------------------------------------------------------------------------- /tests/mock/Files/Banners/300x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/300x250.png -------------------------------------------------------------------------------- /tests/mock/Files/Banners/300x250.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/300x250.zip -------------------------------------------------------------------------------- /tests/mock/Files/Banners/980x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/980x120.png -------------------------------------------------------------------------------- /tests/mock/Files/Banners/adshares.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/adshares.mp4 -------------------------------------------------------------------------------- /tests/mock/Files/Banners/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/empty.zip -------------------------------------------------------------------------------- /tests/mock/Files/Banners/model.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/model.vox -------------------------------------------------------------------------------- /tests/mock/Files/Banners/too_big_unzipped.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/too_big_unzipped.zip -------------------------------------------------------------------------------- /tests/mock/Files/Banners/too_big_zipped.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/Banners/too_big_zipped.zip -------------------------------------------------------------------------------- /tests/mock/Files/OAuth/oauth-private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/OAuth/oauth-private.key -------------------------------------------------------------------------------- /tests/mock/Files/OAuth/oauth-public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/Files/OAuth/oauth-public.key -------------------------------------------------------------------------------- /tests/mock/ToStringClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/ToStringClass.php -------------------------------------------------------------------------------- /tests/mock/filtering_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/filtering_schema.json -------------------------------------------------------------------------------- /tests/mock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/info.json -------------------------------------------------------------------------------- /tests/mock/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/network.json -------------------------------------------------------------------------------- /tests/mock/targeting_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/targeting_schema_v2.json -------------------------------------------------------------------------------- /tests/mock/targeting_schema_v2_smart_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/mock/targeting_schema_v2_smart_link.json -------------------------------------------------------------------------------- /tests/src/Classify/Model/ClassificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Classify/Model/ClassificationTest.php -------------------------------------------------------------------------------- /tests/src/Common/Domain/ValueObject/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Common/Domain/ValueObject/UrlTest.php -------------------------------------------------------------------------------- /tests/src/Config/AppModeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Config/AppModeTest.php -------------------------------------------------------------------------------- /tests/src/Config/UserRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Config/UserRoleTest.php -------------------------------------------------------------------------------- /tests/src/Supply/Application/Dto/InfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Supply/Application/Dto/InfoTest.php -------------------------------------------------------------------------------- /tests/src/Supply/Domain/Model/BannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Supply/Domain/Model/BannerTest.php -------------------------------------------------------------------------------- /tests/src/Supply/Domain/Model/CampaignTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/tests/src/Supply/Domain/Model/CampaignTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adshares/adserver/HEAD/yarn.lock --------------------------------------------------------------------------------