Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

from future import standard_library 

standard_library.install_aliases() 

from builtins import str 

from builtins import object 

from cgi import escape 

from io import BytesIO as IO 

import gzip 

import functools 

 

from flask import after_this_request, request 

from flask_login import current_user 

import wtforms 

from wtforms.compat import text_type 

 

from airflow import configuration 

from airflow import login, models, settings 

AUTHENTICATE = configuration.getboolean('webserver', 'AUTHENTICATE') 

 

 

class LoginMixin(object): 

    def is_accessible(self): 

        return ( 

            not AUTHENTICATE or ( 

                not current_user.is_anonymous() and 

                current_user.is_authenticated() 

            ) 

        ) 

 

 

class SuperUserMixin(object): 

    def is_accessible(self): 

        return ( 

            not AUTHENTICATE or 

            (not current_user.is_anonymous() and current_user.is_superuser()) 

        ) 

 

 

class DataProfilingMixin(object): 

    def is_accessible(self): 

        return ( 

            not AUTHENTICATE or 

            (not current_user.is_anonymous() and current_user.data_profiling()) 

        ) 

 

 

def limit_sql(sql, limit, conn_type): 

    sql = sql.strip() 

    sql = sql.rstrip(';') 

    if sql.lower().startswith("select"): 

        if conn_type in ['mssql']: 

            sql = """\ 

            SELECT TOP {limit} * FROM ( 

            {sql} 

            ) qry 

            """.format(**locals()) 

        elif conn_type in ['oracle']: 

            sql = """\ 

            SELECT * FROM ( 

            {sql} 

            ) qry 

            WHERE ROWNUM <= {limit} 

            """.format(**locals()) 

        else: 

            sql = """\ 

            SELECT * FROM ( 

            {sql} 

            ) qry 

            LIMIT {limit} 

            """.format(**locals()) 

    return sql 

 

 

def action_logging(f): 

    ''' 

    Decorator to log user actions 

    ''' 

    @functools.wraps(f) 

    def wrapper(*args, **kwargs): 

        session = settings.Session() 

 

        if hasattr(login.current_user, 'username'): 

            user = login.current_user.username 

        else: 

            user = 'anonymous' 

 

        session.add( 

            models.Log( 

                event=f.__name__, 

                task_instance=None, 

                owner=user, 

                extra=str(request.args.items()))) 

        session.commit() 

        return f(*args, **kwargs) 

    return wrapper 

 

 

 

def gzipped(f): 

    ''' 

    Decorator to make a view compressed 

    ''' 

    @functools.wraps(f) 

    def view_func(*args, **kwargs): 

        @after_this_request 

        def zipper(response): 

            accept_encoding = request.headers.get('Accept-Encoding', '') 

 

            if 'gzip' not in accept_encoding.lower(): 

                return response 

 

            response.direct_passthrough = False 

 

            if (response.status_code < 200 or 

                response.status_code >= 300 or 

                'Content-Encoding' in response.headers): 

                return response 

            gzip_buffer = IO() 

            gzip_file = gzip.GzipFile(mode='wb', 

                                      fileobj=gzip_buffer) 

            gzip_file.write(response.data) 

            gzip_file.close() 

 

            response.data = gzip_buffer.getvalue() 

            response.headers['Content-Encoding'] = 'gzip' 

            response.headers['Vary'] = 'Accept-Encoding' 

            response.headers['Content-Length'] = len(response.data) 

 

            return response 

 

        return f(*args, **kwargs) 

 

    return view_func 

 

 

def make_cache_key(*args, **kwargs): 

    ''' 

    Used by cache to get a unique key per URL 

    ''' 

    path = request.path 

    args = str(hash(frozenset(request.args.items()))) 

    return (path + args).encode('ascii', 'ignore') 

 

 

class AceEditorWidget(wtforms.widgets.TextArea): 

    """ 

    Renders an ACE code editor. 

    """ 

    def __call__(self, field, **kwargs): 

        kwargs.setdefault('id', field.id) 

        html = ''' 

        <div id="{el_id}" style="height:100px;">{contents}</div> 

        <textarea 

            id="{el_id}_ace" name="{form_name}" 

            style="display:none;visibility:hidden;"> 

        </textarea> 

        '''.format( 

            el_id=kwargs.get('id', field.id), 

            contents=escape(text_type(field._value())), 

            form_name=field.id, 

        ) 

        return wtforms.widgets.core.HTMLString(html)