* this should fix the check if no records in annotations stream * update schemas for new SAT requirements && apply user hint upgrade on wrong api key * save schema upd * upd insights schema * upd insights schema2 * upd insights schema3 * upd insights schema4 * upd insights schema5 (null is joking) * upd insights schema6 (null is joking) * upd insights schema7 * upd insights schema8 * upd insights schema8 * bump version && docs
85 lines
3.5 KiB
Python
85 lines
3.5 KiB
Python
#
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 2020 Airbyte
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
#
|
|
|
|
from typing import Any, List, Mapping, Tuple
|
|
|
|
import pendulum
|
|
import requests
|
|
from airbyte_cdk.logger import AirbyteLogger
|
|
from airbyte_cdk.models import SyncMode
|
|
from airbyte_cdk.sources import AbstractSource
|
|
from airbyte_cdk.sources.streams import Stream
|
|
from airbyte_cdk.sources.streams.http.auth import TokenAuthenticator
|
|
|
|
from .streams import ( # EventsSessions,
|
|
Annotations,
|
|
Cohorts,
|
|
Events,
|
|
FeatureFlags,
|
|
Insights,
|
|
InsightsPath,
|
|
InsightsSessions,
|
|
Persons,
|
|
PingMe,
|
|
Trends,
|
|
)
|
|
|
|
|
|
class SourcePosthog(AbstractSource):
|
|
def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
|
|
try:
|
|
_ = pendulum.parse(config["start_date"], strict=True)
|
|
authenticator = TokenAuthenticator(token=config["api_key"])
|
|
stream = PingMe(authenticator=authenticator)
|
|
records = stream.read_records(sync_mode=SyncMode.full_refresh)
|
|
_ = next(records)
|
|
return True, None
|
|
except Exception as e:
|
|
if isinstance(e, requests.exceptions.HTTPError) and e.response.status_code == 401:
|
|
return False, f"Please check you api_key. Error: {repr(e)}"
|
|
return False, repr(e)
|
|
|
|
def streams(self, config: Mapping[str, Any]) -> List[Stream]:
|
|
"""
|
|
event/sessions stream is dynamic. Probably, it contains a list of CURRENT sessions.
|
|
In Next day session may expire and wont be available via this endpoint.
|
|
So we need a dynamic load data before tests.
|
|
This stream was requested to be removed due to this reason.
|
|
"""
|
|
authenticator = TokenAuthenticator(token=config["api_key"])
|
|
return [
|
|
Annotations(authenticator=authenticator, start_date=config["start_date"]),
|
|
Cohorts(authenticator=authenticator),
|
|
Events(authenticator=authenticator, start_date=config["start_date"]),
|
|
# disabled because the endpoint returns only active sessions and they have TTL=24h
|
|
# so most of the time it will be empty
|
|
# EventsSessions(authenticator=authenticator),
|
|
FeatureFlags(authenticator=authenticator),
|
|
Insights(authenticator=authenticator),
|
|
InsightsPath(authenticator=authenticator),
|
|
InsightsSessions(authenticator=authenticator),
|
|
Persons(authenticator=authenticator),
|
|
Trends(authenticator=authenticator),
|
|
]
|