This file is indexed.

/usr/share/php/google-api-php-client/src/contrib/Google_GroupssettingsService.php is in php-google-api-php-client 0.6.7-2.

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
 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<?php
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */


  /**
   * The "groups" collection of methods.
   * Typical usage is:
   *  <code>
   *   $groupssettingsService = new Google_GroupssettingsService(...);
   *   $groups = $groupssettingsService->groups;
   *  </code>
   */
  class Google_GroupsServiceResource extends Google_ServiceResource {

    /**
     * Gets one resource by id. (groups.get)
     *
     * @param string $groupUniqueId The resource ID
     * @param array $optParams Optional parameters.
     * @return Google_Groups
     */
    public function get($groupUniqueId, $optParams = array()) {
      $params = array('groupUniqueId' => $groupUniqueId);
      $params = array_merge($params, $optParams);
      $data = $this->__call('get', array($params));
      if ($this->useObjects()) {
        return new Google_Groups($data);
      } else {
        return $data;
      }
    }
    /**
     * Updates an existing resource. This method supports patch semantics. (groups.patch)
     *
     * @param string $groupUniqueId The resource ID
     * @param Google_Groups $postBody
     * @param array $optParams Optional parameters.
     * @return Google_Groups
     */
    public function patch($groupUniqueId, Google_Groups $postBody, $optParams = array()) {
      $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
      $params = array_merge($params, $optParams);
      $data = $this->__call('patch', array($params));
      if ($this->useObjects()) {
        return new Google_Groups($data);
      } else {
        return $data;
      }
    }
    /**
     * Updates an existing resource. (groups.update)
     *
     * @param string $groupUniqueId The resource ID
     * @param Google_Groups $postBody
     * @param array $optParams Optional parameters.
     * @return Google_Groups
     */
    public function update($groupUniqueId, Google_Groups $postBody, $optParams = array()) {
      $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
      $params = array_merge($params, $optParams);
      $data = $this->__call('update', array($params));
      if ($this->useObjects()) {
        return new Google_Groups($data);
      } else {
        return $data;
      }
    }
  }

/**
 * Service definition for Google_Groupssettings (v1).
 *
 * <p>
 * Lets you manage permission levels and related settings of a group.
 * </p>
 *
 * <p>
 * For more information about this service, see the
 * <a href="https://developers.google.com/google-apps/groups-settings/get_started" target="_blank">API Documentation</a>
 * </p>
 *
 * @author Google, Inc.
 */
class Google_GroupssettingsService extends Google_Service {
  public $groups;
  /**
   * Constructs the internal representation of the Groupssettings service.
   *
   * @param Google_Client $client
   */
  public function __construct(Google_Client $client) {
    $this->servicePath = 'groups/v1/groups/';
    $this->version = 'v1';
    $this->serviceName = 'groupssettings';

    $client->addService($this->serviceName, $this->version);
    $this->groups = new Google_GroupsServiceResource($this, $this->serviceName, 'groups', json_decode('{"methods": {"get": {"id": "groupsSettings.groups.get", "path": "{groupUniqueId}", "httpMethod": "GET", "parameters": {"groupUniqueId": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Groups"}, "scopes": ["https://www.googleapis.com/auth/apps.groups.settings"]}, "patch": {"id": "groupsSettings.groups.patch", "path": "{groupUniqueId}", "httpMethod": "PATCH", "parameters": {"groupUniqueId": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Groups"}, "response": {"$ref": "Groups"}, "scopes": ["https://www.googleapis.com/auth/apps.groups.settings"]}, "update": {"id": "groupsSettings.groups.update", "path": "{groupUniqueId}", "httpMethod": "PUT", "parameters": {"groupUniqueId": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Groups"}, "response": {"$ref": "Groups"}, "scopes": ["https://www.googleapis.com/auth/apps.groups.settings"]}}}', true));

  }
}



class Google_Groups extends Google_Model {
  public $allowExternalMembers;
  public $allowGoogleCommunication;
  public $allowWebPosting;
  public $archiveOnly;
  public $customReplyTo;
  public $defaultMessageDenyNotificationText;
  public $description;
  public $email;
  public $includeInGlobalAddressList;
  public $isArchived;
  public $kind;
  public $maxMessageBytes;
  public $membersCanPostAsTheGroup;
  public $messageDisplayFont;
  public $messageModerationLevel;
  public $name;
  public $primaryLanguage;
  public $replyTo;
  public $sendMessageDenyNotification;
  public $showInGroupDirectory;
  public $spamModerationLevel;
  public $whoCanInvite;
  public $whoCanJoin;
  public $whoCanPostMessage;
  public $whoCanViewGroup;
  public $whoCanViewMembership;
  public function setAllowExternalMembers( $allowExternalMembers) {
    $this->allowExternalMembers = $allowExternalMembers;
  }
  public function getAllowExternalMembers() {
    return $this->allowExternalMembers;
  }
  public function setAllowGoogleCommunication( $allowGoogleCommunication) {
    $this->allowGoogleCommunication = $allowGoogleCommunication;
  }
  public function getAllowGoogleCommunication() {
    return $this->allowGoogleCommunication;
  }
  public function setAllowWebPosting( $allowWebPosting) {
    $this->allowWebPosting = $allowWebPosting;
  }
  public function getAllowWebPosting() {
    return $this->allowWebPosting;
  }
  public function setArchiveOnly( $archiveOnly) {
    $this->archiveOnly = $archiveOnly;
  }
  public function getArchiveOnly() {
    return $this->archiveOnly;
  }
  public function setCustomReplyTo( $customReplyTo) {
    $this->customReplyTo = $customReplyTo;
  }
  public function getCustomReplyTo() {
    return $this->customReplyTo;
  }
  public function setDefaultMessageDenyNotificationText( $defaultMessageDenyNotificationText) {
    $this->defaultMessageDenyNotificationText = $defaultMessageDenyNotificationText;
  }
  public function getDefaultMessageDenyNotificationText() {
    return $this->defaultMessageDenyNotificationText;
  }
  public function setDescription( $description) {
    $this->description = $description;
  }
  public function getDescription() {
    return $this->description;
  }
  public function setEmail( $email) {
    $this->email = $email;
  }
  public function getEmail() {
    return $this->email;
  }
  public function setIncludeInGlobalAddressList( $includeInGlobalAddressList) {
    $this->includeInGlobalAddressList = $includeInGlobalAddressList;
  }
  public function getIncludeInGlobalAddressList() {
    return $this->includeInGlobalAddressList;
  }
  public function setIsArchived( $isArchived) {
    $this->isArchived = $isArchived;
  }
  public function getIsArchived() {
    return $this->isArchived;
  }
  public function setKind( $kind) {
    $this->kind = $kind;
  }
  public function getKind() {
    return $this->kind;
  }
  public function setMaxMessageBytes( $maxMessageBytes) {
    $this->maxMessageBytes = $maxMessageBytes;
  }
  public function getMaxMessageBytes() {
    return $this->maxMessageBytes;
  }
  public function setMembersCanPostAsTheGroup( $membersCanPostAsTheGroup) {
    $this->membersCanPostAsTheGroup = $membersCanPostAsTheGroup;
  }
  public function getMembersCanPostAsTheGroup() {
    return $this->membersCanPostAsTheGroup;
  }
  public function setMessageDisplayFont( $messageDisplayFont) {
    $this->messageDisplayFont = $messageDisplayFont;
  }
  public function getMessageDisplayFont() {
    return $this->messageDisplayFont;
  }
  public function setMessageModerationLevel( $messageModerationLevel) {
    $this->messageModerationLevel = $messageModerationLevel;
  }
  public function getMessageModerationLevel() {
    return $this->messageModerationLevel;
  }
  public function setName( $name) {
    $this->name = $name;
  }
  public function getName() {
    return $this->name;
  }
  public function setPrimaryLanguage( $primaryLanguage) {
    $this->primaryLanguage = $primaryLanguage;
  }
  public function getPrimaryLanguage() {
    return $this->primaryLanguage;
  }
  public function setReplyTo( $replyTo) {
    $this->replyTo = $replyTo;
  }
  public function getReplyTo() {
    return $this->replyTo;
  }
  public function setSendMessageDenyNotification( $sendMessageDenyNotification) {
    $this->sendMessageDenyNotification = $sendMessageDenyNotification;
  }
  public function getSendMessageDenyNotification() {
    return $this->sendMessageDenyNotification;
  }
  public function setShowInGroupDirectory( $showInGroupDirectory) {
    $this->showInGroupDirectory = $showInGroupDirectory;
  }
  public function getShowInGroupDirectory() {
    return $this->showInGroupDirectory;
  }
  public function setSpamModerationLevel( $spamModerationLevel) {
    $this->spamModerationLevel = $spamModerationLevel;
  }
  public function getSpamModerationLevel() {
    return $this->spamModerationLevel;
  }
  public function setWhoCanInvite( $whoCanInvite) {
    $this->whoCanInvite = $whoCanInvite;
  }
  public function getWhoCanInvite() {
    return $this->whoCanInvite;
  }
  public function setWhoCanJoin( $whoCanJoin) {
    $this->whoCanJoin = $whoCanJoin;
  }
  public function getWhoCanJoin() {
    return $this->whoCanJoin;
  }
  public function setWhoCanPostMessage( $whoCanPostMessage) {
    $this->whoCanPostMessage = $whoCanPostMessage;
  }
  public function getWhoCanPostMessage() {
    return $this->whoCanPostMessage;
  }
  public function setWhoCanViewGroup( $whoCanViewGroup) {
    $this->whoCanViewGroup = $whoCanViewGroup;
  }
  public function getWhoCanViewGroup() {
    return $this->whoCanViewGroup;
  }
  public function setWhoCanViewMembership( $whoCanViewMembership) {
    $this->whoCanViewMembership = $whoCanViewMembership;
  }
  public function getWhoCanViewMembership() {
    return $this->whoCanViewMembership;
  }
}