Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add analytics to track when an installation is created from Github #1381

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule CodeCorps.GitHub.Sync.GithubAppInstallation do
import Ecto.Query

alias CodeCorps.{GithubAppInstallation, GitHub.Sync, Repo, User}
alias CodeCorps.{GithubAppInstallation, Analytics.SegmentTracker, GitHub.Sync, Repo, User}
alias Ecto.Changeset

@type commit_result ::
Expand Down Expand Up @@ -53,11 +53,15 @@ defmodule CodeCorps.GitHub.Sync.GithubAppInstallation do
@spec sync_unmatched(map, User.t() | nil) ::
commit_result() | {:error, :multiple_unprocessed_installations_found}
defp sync_unmatched(%{} = payload, nil) do
track_installed_from_github(nil, payload)

payload |> create_installation()
end
defp sync_unmatched(%{} = payload, %User{} = user) do
case user |> find_unprocessed_installations() do
[] ->
track_installed_from_github(user, payload)

create_installation(payload, user)

[%GithubAppInstallation{} = installation] ->
Expand Down Expand Up @@ -88,6 +92,7 @@ defmodule CodeCorps.GitHub.Sync.GithubAppInstallation do

@spec create_installation(map, User.t() | nil) :: commit_result()
defp create_installation(%{} = payload, user \\ nil) do

payload
|> Sync.GithubAppInstallation.Changeset.create_changeset(user)
|> Repo.insert()
Expand All @@ -99,4 +104,13 @@ defmodule CodeCorps.GitHub.Sync.GithubAppInstallation do
|> Sync.GithubAppInstallation.Changeset.update_changeset(payload)
|> Repo.update()
end

@spec track_installed_from_github(User.t | nil, map) :: any
defp track_installed_from_github(%User{id: user_id}, %{"installation" => installation} = _payload) do
user_id |> SegmentTracker.track("Installed from GitHub", struct(%GithubAppInstallation{}, installation))
end

defp track_installed_from_github(nil, %{"installation" => installation, "sender" => sender} = _payload) do
sender["id"] |> SegmentTracker.track("Installed from github by anon user", struct(%GithubAppInstallation{}, installation))
end
end