Campaigns.php
2 years ago
Cities.php
2 years ago
Countries.php
2 years ago
Device_Browsers.php
2 years ago
Device_OSS.php
2 years ago
Device_Types.php
2 years ago
Filter.php
2 years ago
Pages.php
2 years ago
Referrers.php
2 years ago
Rows.php
2 years ago
Cities.php
89 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP\Rows; |
| 4 | |
| 5 | use IAWP\Illuminate_Builder; |
| 6 | use IAWP\Models\Geo; |
| 7 | use IAWP\Query; |
| 8 | use IAWPSCOPED\Illuminate\Database\Query\Builder; |
| 9 | use IAWPSCOPED\Illuminate\Database\Query\JoinClause; |
| 10 | /** @internal */ |
| 11 | class Cities extends \IAWP\Rows\Rows |
| 12 | { |
| 13 | public function attach_filters(Builder $query) : void |
| 14 | { |
| 15 | $query->joinSub($this->query(\true), 'city_rows', function (JoinClause $join) { |
| 16 | $join->on('city_rows.city_id', '=', 'sessions.city_id'); |
| 17 | }); |
| 18 | } |
| 19 | protected function fetch_rows() : array |
| 20 | { |
| 21 | $rows = $this->query()->get()->all(); |
| 22 | return \array_map(function ($row) { |
| 23 | return new Geo($row); |
| 24 | }, $rows); |
| 25 | } |
| 26 | private function query(?bool $skip_pagination = \false) : Builder |
| 27 | { |
| 28 | if ($skip_pagination) { |
| 29 | $this->number_of_rows = null; |
| 30 | } |
| 31 | $views_table = Query::get_table_name(Query::VIEWS); |
| 32 | $sessions_table = Query::get_table_name(Query::SESSIONS); |
| 33 | $wc_orders = Query::get_table_name(Query::WC_ORDERS); |
| 34 | $countries_table = Query::get_table_name(Query::COUNTRIES); |
| 35 | $cities_table = Query::get_table_name(Query::CITIES); |
| 36 | $current_period_array = [$this->date_range->iso_start(), $this->date_range->iso_end()]; |
| 37 | $previous_period_array = [$this->date_range->previous_period()->iso_start(), $this->date_range->previous_period()->iso_end()]; |
| 38 | $total_period_array = [$this->date_range->previous_period()->iso_start(), $this->date_range->iso_end()]; |
| 39 | $calculated_columns = ['views_per_session', 'views_growth', 'visitors_growth', 'bounce_rate', 'wc_net_sales', 'wc_conversion_rate', 'wc_earnings_per_visitor', 'wc_average_order_volume']; |
| 40 | $has_calculate_column_filter = !empty(\array_filter($this->filters, function ($filter) use($calculated_columns) { |
| 41 | return \in_array($filter->column(), $calculated_columns); |
| 42 | })); |
| 43 | if (\in_array($this->sort_configuration->column(), $calculated_columns)) { |
| 44 | $has_calculate_column_filter = \true; |
| 45 | } |
| 46 | $woo_commerce_query = Illuminate_Builder::get_builder(); |
| 47 | $woo_commerce_query->select(['wc_orders.view_id AS view_id'])->selectRaw('IFNULL(COUNT(DISTINCT wc_orders.order_id), 0) AS wc_orders')->selectRaw('IFNULL(ROUND(CAST(SUM(wc_orders.total) AS DECIMAL(10, 2))), 0) AS wc_gross_sales')->selectRaw('IFNULL(ROUND(CAST(SUM(wc_orders.total_refunded) AS DECIMAL(10, 2))), 0) AS wc_refunded_amount')->selectRaw('IFNULL(SUM(wc_orders.total_refunds), 0) AS wc_refunds')->from($wc_orders, 'wc_orders')->whereIn('wc_orders.status', ['wc-completed', 'completed', 'wc-processing', 'processing', 'wc-refunded', 'refunded'])->whereBetween('wc_orders.created_at', $current_period_array)->groupBy('wc_orders.view_id'); |
| 48 | $cities_query = Illuminate_Builder::get_builder(); |
| 49 | $cities_query->select('countries.country_id', 'countries.country_code', 'countries.country', 'countries.continent', 'cities.subdivision', 'cities.city', 'cities.city_id')->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ?, views.id, NULL)) AS views', $current_period_array)->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ?, views.id, NULL)) AS previous_period_views', $previous_period_array)->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ?, sessions.visitor_id, NULL)) AS visitors', $current_period_array)->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ?, sessions.visitor_id, NULL)) AS previous_period_visitors', $previous_period_array)->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ?, sessions.session_id, NULL)) AS sessions', $current_period_array)->selectRaw('ROUND(AVG( IF(views.viewed_at BETWEEN ? AND ?, TIMESTAMPDIFF(SECOND, sessions.created_at, sessions.ended_at), NULL))) AS average_session_duration', $current_period_array)->selectRaw('COUNT(DISTINCT IF(views.viewed_at BETWEEN ? AND ? AND sessions.final_view_id IS NULL, sessions.session_id, NULL)) AS bounces', $current_period_array)->selectRaw('IFNULL(SUM(wc.wc_orders), 0) AS wc_orders')->selectRaw('IFNULL(SUM(wc.wc_gross_sales), 0) AS wc_gross_sales')->selectRaw('IFNULL(SUM(wc.wc_refunded_amount), 0) AS wc_refunded_amount')->selectRaw('IFNULL(SUM(wc_refunds), 0) AS wc_refunds')->from($views_table, 'views')->leftJoin($cities_query->raw($sessions_table . ' AS sessions'), function (JoinClause $join) { |
| 50 | $join->on('views.session_id', '=', 'sessions.session_id'); |
| 51 | })->join($cities_query->raw($cities_table . ' AS cities'), function (JoinClause $join) { |
| 52 | $join->on('sessions.city_id', '=', 'cities.city_id'); |
| 53 | })->join($cities_query->raw($countries_table . ' AS countries'), function (JoinClause $join) { |
| 54 | $join->on('cities.country_id', '=', 'countries.country_id'); |
| 55 | })->leftJoinSub($woo_commerce_query, 'wc', function (JoinClause $join) { |
| 56 | $join->on('wc.view_id', '=', 'views.id'); |
| 57 | })->whereBetween('views.viewed_at', $total_period_array)->whereBetween('sessions.created_at', $total_period_array)->where(function (Builder $query) use($total_period_array) { |
| 58 | $query->whereNull('sessions.ended_at')->orWhereBetween('sessions.ended_at', $total_period_array); |
| 59 | })->when(\count($this->filters) > 0, function (Builder $query) use($calculated_columns) { |
| 60 | foreach ($this->filters as $filter) { |
| 61 | if (!\in_array($filter->column(), $calculated_columns)) { |
| 62 | $filter->apply_to_query($query); |
| 63 | } |
| 64 | } |
| 65 | })->groupBy('cities.city_id')->having('views', '>', 0)->when(!$has_calculate_column_filter, function (Builder $query) { |
| 66 | $query->when($this->sort_configuration->is_nullable(), function (Builder $query) { |
| 67 | $query->orderByRaw("CASE WHEN {$this->sort_configuration->column()} IS NULL THEN 1 ELSE 0 END"); |
| 68 | })->orderBy($this->sort_configuration->column(), $this->sort_configuration->direction())->orderBy('city')->when(\is_int($this->number_of_rows), function (Builder $query) { |
| 69 | $query->limit($this->number_of_rows); |
| 70 | }); |
| 71 | }); |
| 72 | $outer_query = Illuminate_Builder::get_builder(); |
| 73 | $outer_query->selectRaw('cites.*')->selectRaw('IF(sessions = 0, 0, views / sessions) AS views_per_session')->selectRaw('IFNULL((views - previous_period_views) / previous_period_views * 100, 0) AS views_growth')->selectRaw('IFNULL((visitors - previous_period_visitors) / previous_period_visitors * 100, 0) AS visitors_growth')->selectRaw('IFNULL(bounces / sessions * 100, 0) AS bounce_rate')->selectRaw('ROUND(CAST(wc_gross_sales - wc_refunded_amount AS DECIMAL(10, 2))) AS wc_net_sales')->selectRaw('IF(visitors = 0, 0, (wc_orders / visitors) * 100) AS wc_conversion_rate')->selectRaw('IF(visitors = 0, 0, (wc_gross_sales - wc_refunded_amount) / visitors) AS wc_earnings_per_visitor')->selectRaw('IF(wc_orders = 0, 0, ROUND(CAST(wc_gross_sales / wc_orders AS DECIMAL(10, 2)))) AS wc_average_order_volume')->when(\count($this->filters) > 0, function (Builder $query) use($calculated_columns) { |
| 74 | foreach ($this->filters as $filter) { |
| 75 | if (\in_array($filter->column(), $calculated_columns)) { |
| 76 | $filter->apply_to_query($query); |
| 77 | } |
| 78 | } |
| 79 | })->fromSub($cities_query, 'cites')->when($has_calculate_column_filter, function (Builder $query) { |
| 80 | $query->when($this->sort_configuration->is_nullable(), function (Builder $query) { |
| 81 | $query->orderByRaw("CASE WHEN {$this->sort_configuration->column()} IS NULL THEN 1 ELSE 0 END"); |
| 82 | })->orderBy($this->sort_configuration->column(), $this->sort_configuration->direction())->orderBy('city')->when(\is_int($this->number_of_rows), function (Builder $query) { |
| 83 | $query->limit($this->number_of_rows); |
| 84 | }); |
| 85 | }); |
| 86 | return $outer_query; |
| 87 | } |
| 88 | } |
| 89 |