forked from gateway4labs/labmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculate_migrations_apr_2019_4th.py
39 lines (28 loc) · 1.24 KB
/
calculate_migrations_apr_2019_4th.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from __future__ import print_function
import os
import json
import datetime
import urlparse
import requests
from flask import url_for
from sqlalchemy import func
from labmanager import app
from labmanager.db import db
from labmanager.models import EmbedApplication, EmbedApplicationTranslation, HttpsUnsupportedUrl, UseLog
from labmanager.rlms import find_smartgateway_html_link
app.config['SERVER_NAME'] = 'gateway.golabz.eu'
app.config['PREFERRED_URL_SCHEME'] = 'https'
with app.app_context():
graasp_changes = {}
for url, in db.session.query(func.distinct(UseLog.url)).all():
if len(url) < 255: # Dont use cutted ones
url_parsed = urlparse.urlparse(url)
if url_parsed.netloc == 'gateway.golabz.eu':
replacement = url
if url_parsed.path.endswith('.xml'):
replacement = replacement[::-1].replace('.xml'[::-1], '.html'[::-1], 1)[::-1]
if replacement.startswith('http://'):
replacement = replacement.replace('http://', 'https://', 1)
if replacement != url:
graasp_changes[url] = replacement
open('migration_apr_2019/graasp_changes_2nd.json', 'w').write(json.dumps(graasp_changes, indent=4))