+class YouTubeToken(models.Model):
+ token = models.TextField()
+
+ def token_updater(self, token):
+ self.token = json.dumps(token)
+ self.save()
+
+ def get_session(self):
+ return OAuth2Session(
+ client_id=YOUTUBE_CLIENT_ID,
+ auto_refresh_url=YOUTUBE_TOKEN_URL,
+ token=json.loads(self.token),
+ auto_refresh_kwargs={'client_id':YOUTUBE_CLIENT_ID,'client_secret':YOUTUBE_CLIENT_SECRET},
+ token_updater=self.token_updater
+ )
+
+ def call(self, method, url, params=None, json=None, data=None, resumable_file_path=None):
+ params = params or {}
+ if resumable_file_path:
+ params['uploadType'] = 'resumable'
+ file_size = os.stat(resumable_file_path).st_size
+
+ session = self.get_session()
+ response = session.request(
+ method=method,
+ url=url,
+ json=json,
+ data=data,
+ params=params,
+ headers={
+ 'X-Upload-Content-Length': str(file_size),
+ 'x-upload-content-type': 'application/octet-stream',
+ } if resumable_file_path else {}
+ )
+ if resumable_file_path:
+ location = response.headers['Location']
+ with open(resumable_file_path, 'rb') as f:
+ return session.put(
+ url=location,
+ data=StreamingIterator(file_size, f),
+ headers={"Content-Type": "application/octet-stream"},
+ )