This file is indexed.

/usr/lib/python2.7/dist-packages/artifacts/artifact.py is in python-artifacts 20161022-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# -*- coding: utf-8 -*-
"""The reader objects."""

from artifacts import errors
from artifacts import source_type


class ArtifactDefinition(object):
  """Class that implements the artifact reader interface."""

  def __init__(self, name, description=None):
    """Initializes the artifact definition object.

    Args:
      name: the name that uniquely identifiers the artifact definition.
      description: optional description of the artifact definition.
                   The default is None.
    """
    super(ArtifactDefinition, self).__init__()
    self.conditions = []
    self.description = description
    self.name = name
    self.labels = []
    self.provides = []
    self.sources = []
    self.supported_os = []
    self.urls = []

  def AppendSource(self, type_indicator, attributes):
    """Appends a source.

    If you want to implement your own source type you should create a subclass
    in source_type.py and change the AppendSource method to handle the new
    subclass. This function raises FormatError if an unsupported source type
    indicator is encountered.

    Args:
      type_indicator: the source type indicator.
      attributes: a dictionary containing the source attributes.

    Returns:
      The source type object (instance of SourceType) or None if the type
      indicator is not supported.

    Raises:
      FormatError: if the type indicator is not set or unsupported,
                   or if required attributes are missing.
    """
    if not type_indicator:
      raise errors.FormatError(u'Missing type indicator.')

    try:
      source_object = source_type.SourceTypeFactory.CreateSourceType(
          type_indicator, attributes)
    except (AttributeError, TypeError) as exception:
      raise errors.FormatError(
          u'Invalid artifact definition for {0}: {1}'.format(self.name,
                                                             exception))

    self.sources.append(source_object)
    return source_object

  def AsDict(self):
    """Represents an artifact as a dictionary.

    Returns:
      A dictionary containing the artifact attributes.
    """
    sources = []
    for source in self.sources:
      source_definition = {
          u'type': source.type_indicator,
          u'attributes': source.AsDict()
      }
      if source.supported_os:
        source_definition[u'supported_os'] = source.supported_os
      if source.conditions:
        source_definition[u'conditions'] = source.conditions
      if source.returned_types:
        source_definition[u'returned_types'] = source.returned_types
      sources.append(source_definition)

    artifact_definition = {
        u'name': self.name,
        u'doc': self.description,
        u'sources': sources,
    }
    if self.labels:
      artifact_definition[u'labels'] = self.labels
    if self.supported_os:
      artifact_definition[u'supported_os'] = self.supported_os
    if self.provides:
      artifact_definition[u'provides'] = self.provides
    if self.conditions:
      artifact_definition[u'conditions'] = self.conditions
    if self.urls:
      artifact_definition[u'urls'] = self.urls
    return artifact_definition