Browse Source

Awork-Schnittstelle - erster Entwurf

gc-server3 1 year ago
parent
commit
9e971a6f23
7 changed files with 820 additions and 0 deletions
  1. 0 0
      awork/__init__.py
  2. 1 0
      awork/access_token.txt
  3. 113 0
      awork/awork_tasks.py
  4. 422 0
      awork/companies.json
  5. 14 0
      awork/credentials.py
  6. 7 0
      awork/token.json
  7. 263 0
      awork/users.json

+ 0 - 0
awork/__init__.py


+ 1 - 0
awork/access_token.txt

@@ -0,0 +1 @@
+CfDJ8Gm3fzu4t9JOlqxKxtEtzbvJiO5gWBvOelPSbYbNSXt-GyA6gANNrkiH0gZUZNkwLybORwWo9nV0-WnTNKHlM3uyW0ITLy7LqaItrqs4_hIt5aMBAJFsdYIZHAs7rD2TFEuSCVbKq7cWe4GDq1rALKNQSODzLMCntSV94F7mW3RNMVHC0HHbELyjPEuj1lcT_heIj2XSLaEFu7CPP9JGZRdsB7XSWum0OG615ScfWs5E1NNuf4ZXxLTZ8nyrByX2qEijcuJBZXOEqh13c1yE5I3Uor-yvqUPJeWIQLxytRTuI9spaJ6jjJaMN7rRpAX1c7jyYWujaatCZnu2NVYwg1YYVNfhHoOZNUZTsC-IRwEr1iXdb185HSu49nHJ9CP1rqU-fjJ8yJHqy6zTxbM1Bs8N60GgZhKUrGfi6mem3Iw13pCXbkG8z270EyjGFU0oW7aI31QbiDPmIhbcOfIY9KLbJbrvjPsbvT1HRrcCIXDtT8P_ji7BaNpMceij-L8IIdoRuBKxczfiWR6cvZf5IOnLebuM1QHm2tUg22X-v3jArA8wftCl3dIEjlIbN7kVPDUyCPAKb5nQCMw3Ue7i6jZ_Tihbj7nqb8i5JX-lm9neMooBZKtSmy_sOlY3dwVtkBqVS2CosyyYjU_KMEkkuQw08vPsyUkwmgE8prhhIL18ZwK-J0LwMsUaVcXWQ72-HwudU_gzWd_ke-JfaFP8BAVNSRDMhp-M7g3mq5PN3lxakwJMWT0v1OcE4xf6VhJkCcIAXTX49CJKNJm32Zyl4eK1lWZN0tk7P8qT8n2Sd1JdlSQ-uFfWJevKlHm0ABPXp3mzbTNjgFdU9-Q5_oyEk19FrjOEJMI-dTZ5LTy4T59VsUVcu0LvZoH59SpHAxkgw5OYWwmtqOyFmPsiOTk37IFYVsJsVYcCFP1Jc98306G4Ro_qGl-KjfUddIv56CbCisX3qJ9kHpwF5YbwJsCtcyF0Y1o_l3TUq9w22nUGWA3fa8r8hwYKFFwp6baLp0ArX8wyi_DpxqWFORy7Wm0MCvByXlETW2NXqfqB86RDcRjAqm03cc84MVzAEVlsNAqRRPPCL_8CpJGLVaWCyEGMklEvNcSD3h1XSbIJaWzRpAm9GqxKYaj0any0ryHRU46Bp-cHUAakbCdDl8Nc37wFPbkaa_PNrpBEqxIWvo3EtOaacqPfPH650DgJcsLiRAkDQXpYohNcvPOChz-Kg6L_MtopSVa2fH06ajfbJx3gQhEPWS0EhWyDeNweycfQTO8UlwOEaFAYDZb6jjr-_ddP8N_zp6zEe_G_AheDdW3x_J4pFQbxOGW25e66sX4vyw3a2y2TUTgisaquJuHKsqGxCWaKsjXX2wubqCqqh3O8iNxE1S4GAJbAo_b-Ci4OmPSqOn8LH9X4OT7rmSSe7u_VDZ8xf0t-nDCkJnZvEVyfQmFbIzsg001kkaveE7Md9saJb0zQyB-TyhdRx_Q4A41PIbQ

+ 113 - 0
awork/awork_tasks.py

@@ -0,0 +1,113 @@
+from credentials import Client
+import requests
+import json
+import datetime
+from pathlib import Path
+
+
+awork_api_url = "https://api.awork.com/api/v1"
+token_expires_in = 24 * 60 * 60
+header = {"Authorization": ""}
+
+
+def main():
+    bearer_token = login()
+    header["Authorization"] = f"Bearer {bearer_token}"
+
+    users()
+    companies()
+
+
+def companies():
+    res = requests.get(awork_api_url + "/companies", headers=header)
+    json.dump(res.json(), Path(__file__).parent.joinpath("companies.json").open("w"), indent=2)
+
+
+def users():
+    res = requests.get(awork_api_url + "/users", headers=header)
+    json.dump(res.json(), Path(__file__).parent.joinpath("users.json").open("w"), indent=2)
+
+
+def login():
+    token_file = Path(__file__).parent.joinpath("access_token.txt")
+    token_json_file = Path(__file__).parent.joinpath("token.json")
+
+    timestamp = datetime.datetime.now().timestamp()
+    token_dict = json.loads(token_json_file.read_text())
+
+    if timestamp > token_json_file.stat().st_mtime + token_dict["expires_in"]:
+        res = refresh(token_dict)
+        token_json_file.write_text(json.dumps(res))
+        return res["access_token"]
+    return token_dict["access_token"]
+
+    if token_file.exists():
+        code = token_file.read_text()
+        valid = token(code)
+        if not valid:
+            token_file.unlink()
+        else:
+            token_json_file.write_text(json.dumps(valid))
+            return
+    authorize()
+
+
+def refresh(token_dict):
+    header = {
+        "Authorization": "Basic Base64(" + Client.authorization_base64() + ")",
+        "Content-Type": "application/x-www-form-urlencoded",
+    }
+    params = {
+        "client_id": Client.CLIENT_ID,
+        "client_secret": Client.CLIENT_SECRET,
+        "grant_type": "refresh_token",
+        "redirect_uri": "http://gc-server1/fehlerbericht/",
+        "refresh_token": token_dict["refresh_token"],
+    }
+    r = requests.post(awork_api_url + "/accounts/token", headers=header, data=params)
+    if r.status_code == 400:
+        return False
+    res = r.json()
+    if "refresh_token" not in res:
+        res["refresh_token"] = token_dict["refresh_token"]
+    return res
+
+
+def token(code):
+    header = {
+        "Authorization": "Basic Base64(" + Client.authorization_base64() + ")",
+        "Content-Type": "application/x-www-form-urlencoded",
+    }
+    params = {
+        "client_id": Client.CLIENT_ID,
+        "client_secret": Client.CLIENT_SECRET,
+        "grant_type": "authorization_code",
+        "redirect_uri": "http://gc-server1/fehlerbericht/",
+        "code": code,
+    }
+    r = requests.post(awork_api_url + "/accounts/token", headers=header, data=params)
+    if r.status_code == 400:
+        return False
+    return r.json()
+
+
+def authorize():
+    params = {
+        "client_id": Client.CLIENT_ID,
+        "response_type": "code",
+        "grant_type": "authorization_code",
+        "redirect_uri": "http://gc-server1/fehlerbericht/",
+        "state": "",
+        "scope": "offline_access",
+    }
+
+    r = requests.get(awork_api_url + "/accounts/authorize", params=params)
+    print(r.url)
+    print("Response-URL: ", end="")
+    code = input()
+    with open(Path(__file__).parent.joinpath("access_token.txt"), "w") as fwh:
+        fwh.write(code)
+
+
+if __name__ == "__main__":
+    main()

+ 422 - 0
awork/companies.json

@@ -0,0 +1,422 @@
+[
+  {
+    "id": "9f2a6124-54ca-4687-9cfc-6f106b207058",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T15:39:12.4166294Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:46:29.8586292Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380791898586292,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Rau Brunsb\u00fcttel C7 OPTIMA Win10"
+  },
+  {
+    "id": "9f913780-1b76-44d5-81ee-49022a6cc6b0",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T15:02:38.06681Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-13T15:06:54.6278802Z",
+    "updatedBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "resourceVersion": 638380768146278802,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "Hasler C11 AUTOLINE WS22",
+    "industry": ""
+  },
+  {
+    "id": "2123eac9-fc62-4bc5-9c3f-9bee8a4c5562",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T14:09:40.9061292Z",
+    "createdBy": "2201df25-728f-4924-b842-2de18577b6a9",
+    "updatedOn": "2023-12-13T15:07:32.3891588Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380768523891588,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Ley Bergneustadt C11 OPTIMA Win10 NUC",
+    "industry": ""
+  },
+  {
+    "id": "67b842bd-2e23-44c7-b803-4bd77728bfb0",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T13:51:00.9573859Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-13T14:47:59.7529058Z",
+    "updatedBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "resourceVersion": 638380756797529058,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "von der Weppen C11 WERWISO WS16"
+  },
+  {
+    "id": "c70f1a0e-cca8-4578-bb75-f200ed789c4f",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T12:26:39.0162874Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-13T13:21:05.9265442Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380704659265442,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "Linck C11 CARLO WS19"
+  },
+  {
+    "id": "bc4c7fa1-afa7-4ecc-b22d-076f06beb75b",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T11:45:13.7429886Z",
+    "createdBy": "c13e0a0a-7d3e-4943-9371-dcc6dfd55351",
+    "updatedOn": "2023-12-13T15:03:54.6923638Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380766346923638,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "Dresen C7 OPTIMA WS19",
+    "industry": ""
+  },
+  {
+    "id": "5a395d80-b921-4068-9320-b52774bb9b95",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-13T10:45:33.478063Z",
+    "createdBy": "c13e0a0a-7d3e-4943-9371-dcc6dfd55351",
+    "updatedOn": "2023-12-13T15:06:19.0923726Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380767790923726,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Kieschnick C7 OPTIMA WS16",
+    "industry": ""
+  },
+  {
+    "id": "ce3e2b82-32d7-46b4-9b66-7900c8bb26d2",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-12T15:29:11.8340844Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-14T12:32:54.15932Z",
+    "updatedBy": "2201df25-728f-4924-b842-2de18577b6a9",
+    "resourceVersion": 638381539741593200,
+    "tags": [
+      {
+        "id": "14c8cc97-5d04-4895-af78-29df432282b8",
+        "name": "WERWISO",
+        "color": "blue"
+      },
+      {
+        "id": "0e8b4635-bb68-40e1-8bf9-a45ab7012508",
+        "name": "C11",
+        "color": "purple"
+      }
+    ],
+    "projectsCount": 0,
+    "projectsInProgressCount": 0,
+    "name": "S+K C11 WERWISO WS19",
+    "industry": ""
+  },
+  {
+    "id": "ae0c0d4d-3438-4be5-9505-c47190bb521e",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-10T06:24:16.4098685Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-13T13:38:20.3171961Z",
+    "updatedBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "resourceVersion": 638380715003171961,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Nefzger C11 ARI WS19",
+    "industry": ""
+  },
+  {
+    "id": "7cd38674-4c7a-4b4f-9e28-e76b4f60e291",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-10T06:21:20.000164Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-14T08:45:45.0297411Z",
+    "updatedBy": "2201df25-728f-4924-b842-2de18577b6a9",
+    "resourceVersion": 638381403450297411,
+    "tags": [],
+    "projectsCount": 3,
+    "projectsInProgressCount": 3,
+    "name": "Reisacher C11 NAVISION WS22",
+    "industry": ""
+  },
+  {
+    "id": "2a499953-8a28-4ec0-b1aa-737e5d34d3b0",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-09T21:08:17.1399813Z",
+    "createdBy": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "updatedOn": "2023-12-13T15:07:07.5242238Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380768275242238,
+    "tags": [],
+    "projectsCount": 0,
+    "projectsInProgressCount": 0,
+    "name": "K\u00f6nig Berlin C11 OPTIMA WS19",
+    "industry": ""
+  },
+  {
+    "id": "47900d51-0623-4057-8355-449ed8c60cc2",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:52:09.9289773Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T11:12:48.4607979Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638381491684607979,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Hoffmann C7 OPTIMA WS19",
+    "industry": ""
+  },
+  {
+    "id": "15a2f798-335a-48c1-baa3-3907748b101b",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:59.5313819Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T12:34:00.1559019Z",
+    "updatedBy": "2201df25-728f-4924-b842-2de18577b6a9",
+    "resourceVersion": 638381540401559019,
+    "tags": [
+      {
+        "id": "1ada9205-782e-4af3-a8c1-5c8385177ca5",
+        "name": "C7",
+        "color": "green"
+      },
+      {
+        "id": "de2af978-3c4d-4c69-a4bb-84dbf68d9eaa",
+        "name": "OPTIMA",
+        "color": "steel"
+      }
+    ],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "Aurego C7 OPTIMA WS22",
+    "industry": ""
+  },
+  {
+    "id": "f29b10f9-c2ad-4bf8-8c34-aa52c942e736",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:54.2854013Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T08:47:00.6996616Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638381404206996616,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Fl\u00fcgel C7 OPTIMA WS12",
+    "industry": ""
+  },
+  {
+    "id": "61510477-d966-4d87-9f7b-e81df1235dee",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:46.8979632Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:01:32.8713482Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380764928713482,
+    "tags": [],
+    "projectsCount": 0,
+    "projectsInProgressCount": 0,
+    "name": "Thomas C7 OPTIMA",
+    "industry": ""
+  },
+  {
+    "id": "814d643a-7c63-41bd-b8f6-b94689158c91",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:38.0991274Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T10:58:49.7805359Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638381483297805359,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Hinz C7 OPTIMA WS12",
+    "industry": ""
+  },
+  {
+    "id": "e6cd5271-f2cc-494d-b4a9-ba171aba5f01",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:30.5522709Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T09:59:00.958544Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638381447409585440,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "VCRR C11 OPTIMA (Rechenzentrum)",
+    "industry": ""
+  },
+  {
+    "id": "bcc5ad1c-c73a-4cb2-a19e-ee09abbcd107",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:16.7469789Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-14T09:14:18.2113249Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638381420582113249,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Peter Nordhausen C7 OPTIMA",
+    "industry": ""
+  },
+  {
+    "id": "25c6b80a-b9d0-488e-b4b0-3e392973b38d",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T15:51:01.6195094Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:01:55.7633611Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380765157633611,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 1,
+    "name": "Weller Automobile Bietigheim C7 OPTIMA",
+    "industry": ""
+  },
+  {
+    "id": "ff31307d-9fd8-45cf-80d3-428f5cbe217e",
+    "hasImage": false,
+    "companyContactInfos": [
+      {
+        "id": "829d2ec7-b5f1-4619-aabb-0f0c54a5bdea",
+        "createdOn": "2023-12-08T15:04:47.3451221Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:04:47.3451231Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "+49371450001112",
+        "type": "phone",
+        "subType": "central",
+        "isAddress": false
+      },
+      {
+        "id": "e98f48f7-fd1a-4b58-bbac-5ef368e77b35",
+        "createdOn": "2023-12-08T15:04:47.4071805Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:04:47.4071812Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "type": "address",
+        "subType": "central",
+        "addressLine1": "Hilbersdorfer Str. 1",
+        "zipCode": "09131",
+        "city": "Chemnitz",
+        "country": "DE",
+        "isAddress": false
+      },
+      {
+        "id": "a204d612-bd9c-42e4-b141-9f72735c8a48",
+        "createdOn": "2023-12-08T15:04:47.4123294Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:04:47.4123305Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "www.schneidergruppe.de",
+        "type": "url",
+        "subType": "primary",
+        "isAddress": false
+      },
+      {
+        "id": "f9e8ea27-2720-4df0-8d41-bdee2a50b90c",
+        "createdOn": "2023-12-08T15:04:47.4112513Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:04:47.411252Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "sven.potrafke@schneidergruppe.de",
+        "type": "email",
+        "subType": "central",
+        "isAddress": false
+      },
+      {
+        "id": "bd96eb4d-aadc-42d7-955d-dfdabf56f6bc",
+        "createdOn": "2023-12-08T15:04:47.3965136Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:04:47.3965141Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "carolin.doberenz@schneidergruppe.de",
+        "type": "email",
+        "subType": "central",
+        "isAddress": false
+      }
+    ],
+    "createdOn": "2023-12-08T15:01:02.4343188Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:10:40.9610277Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380770409610277,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Schneider Gruppe C11 OPTIMA (VPN)",
+    "industry": ""
+  },
+  {
+    "id": "fae3d652-012d-477c-bd22-08649ce92172",
+    "hasImage": false,
+    "companyContactInfos": [],
+    "createdOn": "2023-12-08T14:26:03.5046535Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:10:57.5523944Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380770575523944,
+    "tags": [],
+    "projectsCount": 2,
+    "projectsInProgressCount": 1,
+    "name": "Sirch C11 WERWISO WS22",
+    "industry": ""
+  },
+  {
+    "id": "9b696e5e-86ec-48b5-8ed4-d6d42d7865a5",
+    "hasImage": false,
+    "companyContactInfos": [
+      {
+        "id": "1f689b93-3adf-448f-b0ff-9affb7036f96",
+        "createdOn": "2023-12-08T15:29:55.7188234Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T15:29:55.7188245Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "kaijonas@auto-jonas.de",
+        "type": "email",
+        "subType": "central",
+        "isAddress": false
+      }
+    ],
+    "createdOn": "2023-12-08T14:04:31.7035088Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T15:05:54.7059634Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "resourceVersion": 638380767547059634,
+    "tags": [],
+    "projectsCount": 1,
+    "projectsInProgressCount": 0,
+    "name": "Jonas C7 OPTIMA WS22",
+    "industry": ""
+  }
+]

+ 14 - 0
awork/credentials.py

@@ -0,0 +1,14 @@
+import base64
+
+
+class Client:
+    CLIENT_ID = "global-cube-its"
+    CLIENT_SECRET = "SKVif1SvESxZo7WWCehc5mY0"
+
+    @staticmethod
+    def authorization_base64():
+        code = f"{Client.CLIENT_ID}:{Client.CLIENT_SECRET}"
+        code_bytes = code.encode("ascii")
+
+        base64_bytes = base64.b64encode(code_bytes)
+        return base64_bytes.decode("ascii")

+ 7 - 0
awork/token.json

@@ -0,0 +1,7 @@
+{
+    "scope": "offline_access",
+    "token_type": "Bearer",
+    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmNjc4NmZkMy00OGI0LTQ3ZDUtOGZjNi1lNmFjZjc2YmIxNGYiLCJuYW1lIjoiYmVkbmVyQGdsb2JhbC1jdWJlLm5ldCIsImh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDUvMDUvaWRlbnRpdHkvY2xhaW1zL2VtYWlsYWRkcmVzcyI6ImJlZG5lckBnbG9iYWwtY3ViZS5uZXQiLCJpaWQiOiJmNjc4NmZkMy00OGI0LTQ3ZDUtOGZjNi1lNmFjZjc2YmIxNGYiLCJ3aWQiOiIyZTVlMWY5Ni1jOGIyLTQ0ODQtYWNhOC05ZjM2ZDExNDg3ZDMiLCJ1aWQiOiIyMjAxZGYyNS03MjhmLTQ5MjQtYjg0Mi0yZGUxODU3N2I2YTkiLCJzY29wZSI6Im9mZmxpbmVfYWNjZXNzIiwiYXpwIjoiZ2xvYmFsLWN1YmUtaXRzIiwidG9rZW5fdXNhZ2UiOiJhY2Nlc3NfdG9rZW4iLCJjZmRfbHZsIjoicHJpdmF0ZSIsIm5iZiI6MTcwMjU1MjAzMSwiZXhwIjoxNzAyNjM4NDMxLCJpc3MiOiJodHRwczovL2FwaS5hd29yay5jb20vIiwiYXVkIjoiYXdvcmsuY29tIn0.1nVZbrRXap960lgRICNVQLtP-HEs3F09m4GEktY2cxc",
+    "expires_in": 86400,
+    "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJmNjc4NmZkMy00OGI0LTQ3ZDUtOGZjNi1lNmFjZjc2YmIxNGYiLCJuYW1lIjoiYmVkbmVyQGdsb2JhbC1jdWJlLm5ldCIsImh0dHA6Ly9zY2hlbWFzLnhtbHNvYXAub3JnL3dzLzIwMDUvMDUvaWRlbnRpdHkvY2xhaW1zL2VtYWlsYWRkcmVzcyI6ImJlZG5lckBnbG9iYWwtY3ViZS5uZXQiLCJBc3BOZXQuSWRlbnRpdHkuU2VjdXJpdHlTdGFtcCI6IllJWjM3NVdKWk9JQ0lISVFENEdSUzQ1QlY1NERJRzRQIiwiaWlkIjoiZjY3ODZmZDMtNDhiNC00N2Q1LThmYzYtZTZhY2Y3NmJiMTRmIiwid2lkIjoiMmU1ZTFmOTYtYzhiMi00NDg0LWFjYTgtOWYzNmQxMTQ4N2QzIiwidWlkIjoiMjIwMWRmMjUtNzI4Zi00OTI0LWI4NDItMmRlMTg1NzdiNmE5IiwicnRpZCI6ImYyZDU0Yjc5LWIzNGMtNDllNi1iMDgxLThlZmQ2YjYzNDU5ZSIsInRva2VuX3VzYWdlIjoicmVmcmVzaF90b2tlbiIsIm5iZiI6MTcwMjU1MjAzMSwiZXhwIjoxNzA1MTQ0MDMxLCJpc3MiOiJodHRwczovL2FwaS5hd29yay5jb20vIiwiYXVkIjoiYXdvcmsuY29tIn0.-gdGf6HwW32ErUfcRvAlMWIneUU4BdnhlCK1vQPE2hY"
+}

+ 263 - 0
awork/users.json

@@ -0,0 +1,263 @@
+[
+  {
+    "id": "2201df25-728f-4924-b842-2de18577b6a9",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-13T11:45:41.2805989Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T12:54:04.4484921Z",
+    "updatedBy": "2201df25-728f-4924-b842-2de18577b6a9",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": true,
+    "userContactInfos": [
+      {
+        "id": "5eb47f8e-bb8f-4799-bae7-70b3f33f5861",
+        "isDeleted": false,
+        "createdOn": "2023-12-13T11:45:41.4079192Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-13T11:45:41.4079198Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "bedner@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380688444484921,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Robert",
+    "lastName": "Burghard",
+    "birthDate": "1983-12-23T00:00:00Z",
+    "gender": "male",
+    "language": "de-DE"
+  },
+  {
+    "id": "c13e0a0a-7d3e-4943-9371-dcc6dfd55351",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-08T14:12:41.3139248Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T12:54:42.8648506Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": false,
+    "userContactInfos": [
+      {
+        "id": "cf52a995-8b54-4bb9-b504-5c3a2ec9d825",
+        "isDeleted": false,
+        "createdOn": "2023-12-08T14:12:41.5203584Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T14:12:41.5203589Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "brandt@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380688828648506,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Sabina",
+    "lastName": "Brandt",
+    "gender": "female",
+    "title": "",
+    "position": "",
+    "language": "de-DE"
+  },
+  {
+    "id": "4b7f11a4-48fb-4325-846b-fe3298e0663d",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-08T14:12:41.3112527Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T12:53:35.941614Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": false,
+    "userContactInfos": [
+      {
+        "id": "ba8b273b-ff8a-4282-8113-a2d4f4f19b34",
+        "isDeleted": false,
+        "createdOn": "2023-12-08T14:12:41.5246367Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T14:12:41.5246377Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "winter@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380688159416140,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Matthias",
+    "lastName": "Winter",
+    "gender": "male",
+    "title": "Matze",
+    "position": "",
+    "language": "de-DE"
+  },
+  {
+    "id": "a91d45ab-1f8e-4f0e-9716-a0c8daed41ca",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-08T14:12:41.3062419Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T12:54:25.5389904Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": false,
+    "userContactInfos": [
+      {
+        "id": "326efb2c-a7ca-4602-8af1-a1bdda01c9ff",
+        "isDeleted": false,
+        "createdOn": "2023-12-08T14:12:41.5236452Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T14:12:41.523646Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "m.geiss@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380688655389904,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Marco",
+    "lastName": "Geiss",
+    "gender": "male",
+    "title": "M.G.",
+    "position": "",
+    "language": "de-DE"
+  },
+  {
+    "id": "68b8d269-edbb-4dc3-bd0d-549ff80095f7",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-08T14:12:41.2874186Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T13:28:21.3301917Z",
+    "updatedBy": "68b8d269-edbb-4dc3-bd0d-549ff80095f7",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": true,
+    "userContactInfos": [
+      {
+        "id": "8fe141bd-9428-4591-8957-0f4466e6bfc7",
+        "isDeleted": false,
+        "createdOn": "2023-12-08T14:12:41.4782254Z",
+        "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "updatedOn": "2023-12-08T14:12:41.4782267Z",
+        "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+        "value": "winkler@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380709013301917,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Christina",
+    "lastName": "Winkler",
+    "gender": "female",
+    "title": "",
+    "position": "",
+    "language": "de-DE"
+  },
+  {
+    "id": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "status": {
+      "invitationAccepted": true,
+      "isDeactivated": false
+    },
+    "createdOn": "2023-12-08T13:45:42.8922491Z",
+    "createdBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "updatedOn": "2023-12-13T12:55:26.1557777Z",
+    "updatedBy": "67033b54-8b10-4925-8e33-e4abc95552a4",
+    "isArchived": false,
+    "isDeactivated": false,
+    "hasImage": true,
+    "userContactInfos": [
+      {
+        "id": "ed9b3da6-c975-44b4-a38a-d7341a6be3bf",
+        "isDeleted": false,
+        "createdOn": "2023-12-08T13:45:44.1973116Z",
+        "createdBy": "01010001-0000-0000-0000-111111111111",
+        "updatedOn": "2023-12-08T13:45:44.197312Z",
+        "updatedBy": "01010001-0000-0000-0000-111111111111",
+        "value": "matarrelli@global-cube.net",
+        "type": "email",
+        "subType": "work",
+        "isAddress": false
+      }
+    ],
+    "resourceVersion": 638380689261557777,
+    "tags": [],
+    "teams": [
+      {
+        "id": "92eba201-2e4d-4191-b159-8d1d07f67a7f",
+        "name": "GlobalCube",
+        "icon": "all_inclusive",
+        "color": "blue"
+      }
+    ],
+    "firstName": "Antonio",
+    "lastName": "Matarrelli",
+    "gender": "male",
+    "language": "de-DE"
+  }
+]