Skip to content

Commit 9c85b9e

Browse files
1 parent 188882f commit 9c85b9e

7 files changed

+279
-1
lines changed

src/Forms.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,12 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
9494
],'create' => [
9595
'path' => 'v1/forms',
9696
'httpMethod' => 'POST',
97-
'parameters' => [],
97+
'parameters' => [
98+
'unpublished' => [
99+
'location' => 'query',
100+
'type' => 'boolean',
101+
],
102+
],
98103
],'get' => [
99104
'path' => 'v1/forms/{formId}',
100105
'httpMethod' => 'GET',
@@ -105,6 +110,16 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
105110
'required' => true,
106111
],
107112
],
113+
],'setPublishSettings' => [
114+
'path' => 'v1/forms/{formId}:setPublishSettings',
115+
'httpMethod' => 'POST',
116+
'parameters' => [
117+
'formId' => [
118+
'location' => 'path',
119+
'type' => 'string',
120+
'required' => true,
121+
],
122+
],
108123
],
109124
]
110125
]

src/Forms/Form.php

+16
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ class Form extends \Google\Collection
3232
* @var string
3333
*/
3434
public $linkedSheetId;
35+
protected $publishSettingsType = PublishSettings::class;
36+
protected $publishSettingsDataType = '';
3537
/**
3638
* @var string
3739
*/
@@ -99,6 +101,20 @@ public function getLinkedSheetId()
99101
{
100102
return $this->linkedSheetId;
101103
}
104+
/**
105+
* @param PublishSettings
106+
*/
107+
public function setPublishSettings(PublishSettings $publishSettings)
108+
{
109+
$this->publishSettings = $publishSettings;
110+
}
111+
/**
112+
* @return PublishSettings
113+
*/
114+
public function getPublishSettings()
115+
{
116+
return $this->publishSettings;
117+
}
102118
/**
103119
* @param string
104120
*/

src/Forms/PublishSettings.php

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Forms;
19+
20+
class PublishSettings extends \Google\Model
21+
{
22+
protected $publishStateType = PublishState::class;
23+
protected $publishStateDataType = '';
24+
25+
/**
26+
* @param PublishState
27+
*/
28+
public function setPublishState(PublishState $publishState)
29+
{
30+
$this->publishState = $publishState;
31+
}
32+
/**
33+
* @return PublishState
34+
*/
35+
public function getPublishState()
36+
{
37+
return $this->publishState;
38+
}
39+
}
40+
41+
// Adding a class alias for backwards compatibility with the previous class name.
42+
class_alias(PublishSettings::class, 'Google_Service_Forms_PublishSettings');

src/Forms/PublishState.php

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Forms;
19+
20+
class PublishState extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $isAcceptingResponses;
26+
/**
27+
* @var bool
28+
*/
29+
public $isPublished;
30+
31+
/**
32+
* @param bool
33+
*/
34+
public function setIsAcceptingResponses($isAcceptingResponses)
35+
{
36+
$this->isAcceptingResponses = $isAcceptingResponses;
37+
}
38+
/**
39+
* @return bool
40+
*/
41+
public function getIsAcceptingResponses()
42+
{
43+
return $this->isAcceptingResponses;
44+
}
45+
/**
46+
* @param bool
47+
*/
48+
public function setIsPublished($isPublished)
49+
{
50+
$this->isPublished = $isPublished;
51+
}
52+
/**
53+
* @return bool
54+
*/
55+
public function getIsPublished()
56+
{
57+
return $this->isPublished;
58+
}
59+
}
60+
61+
// Adding a class alias for backwards compatibility with the previous class name.
62+
class_alias(PublishState::class, 'Google_Service_Forms_PublishState');

src/Forms/Resource/Forms.php

+23
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
use Google\Service\Forms\BatchUpdateFormRequest;
2121
use Google\Service\Forms\BatchUpdateFormResponse;
2222
use Google\Service\Forms\Form;
23+
use Google\Service\Forms\SetPublishSettingsRequest;
24+
use Google\Service\Forms\SetPublishSettingsResponse;
2325

2426
/**
2527
* The "forms" collection of methods.
@@ -57,6 +59,10 @@ public function batchUpdate($formId, BatchUpdateFormRequest $postBody, $optParam
5759
*
5860
* @param Form $postBody
5961
* @param array $optParams Optional parameters.
62+
*
63+
* @opt_param bool unpublished Optional. Whether the form is unpublished. If set
64+
* to `true`, the form doesn't accept responses. If set to `false` or unset, the
65+
* form is published and accepts responses.
6066
* @return Form
6167
* @throws \Google\Service\Exception
6268
*/
@@ -80,6 +86,23 @@ public function get($formId, $optParams = [])
8086
$params = array_merge($params, $optParams);
8187
return $this->call('get', [$params], Form::class);
8288
}
89+
/**
90+
* Updates the publish settings of a form. Legacy forms aren't supported because
91+
* they don't have the `publish_settings` field. (forms.setPublishSettings)
92+
*
93+
* @param string $formId Required. The ID of the form. You can get the id from
94+
* `Form.form_id` field.
95+
* @param SetPublishSettingsRequest $postBody
96+
* @param array $optParams Optional parameters.
97+
* @return SetPublishSettingsResponse
98+
* @throws \Google\Service\Exception
99+
*/
100+
public function setPublishSettings($formId, SetPublishSettingsRequest $postBody, $optParams = [])
101+
{
102+
$params = ['formId' => $formId, 'postBody' => $postBody];
103+
$params = array_merge($params, $optParams);
104+
return $this->call('setPublishSettings', [$params], SetPublishSettingsResponse::class);
105+
}
83106
}
84107

85108
// Adding a class alias for backwards compatibility with the previous class name.
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Forms;
19+
20+
class SetPublishSettingsRequest extends \Google\Model
21+
{
22+
protected $publishSettingsType = PublishSettings::class;
23+
protected $publishSettingsDataType = '';
24+
/**
25+
* @var string
26+
*/
27+
public $updateMask;
28+
29+
/**
30+
* @param PublishSettings
31+
*/
32+
public function setPublishSettings(PublishSettings $publishSettings)
33+
{
34+
$this->publishSettings = $publishSettings;
35+
}
36+
/**
37+
* @return PublishSettings
38+
*/
39+
public function getPublishSettings()
40+
{
41+
return $this->publishSettings;
42+
}
43+
/**
44+
* @param string
45+
*/
46+
public function setUpdateMask($updateMask)
47+
{
48+
$this->updateMask = $updateMask;
49+
}
50+
/**
51+
* @return string
52+
*/
53+
public function getUpdateMask()
54+
{
55+
return $this->updateMask;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(SetPublishSettingsRequest::class, 'Google_Service_Forms_SetPublishSettingsRequest');
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?php
2+
/*
3+
* Copyright 2014 Google Inc.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
6+
* use this file except in compliance with the License. You may obtain a copy of
7+
* the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14+
* License for the specific language governing permissions and limitations under
15+
* the License.
16+
*/
17+
18+
namespace Google\Service\Forms;
19+
20+
class SetPublishSettingsResponse extends \Google\Model
21+
{
22+
/**
23+
* @var string
24+
*/
25+
public $formId;
26+
protected $publishSettingsType = PublishSettings::class;
27+
protected $publishSettingsDataType = '';
28+
29+
/**
30+
* @param string
31+
*/
32+
public function setFormId($formId)
33+
{
34+
$this->formId = $formId;
35+
}
36+
/**
37+
* @return string
38+
*/
39+
public function getFormId()
40+
{
41+
return $this->formId;
42+
}
43+
/**
44+
* @param PublishSettings
45+
*/
46+
public function setPublishSettings(PublishSettings $publishSettings)
47+
{
48+
$this->publishSettings = $publishSettings;
49+
}
50+
/**
51+
* @return PublishSettings
52+
*/
53+
public function getPublishSettings()
54+
{
55+
return $this->publishSettings;
56+
}
57+
}
58+
59+
// Adding a class alias for backwards compatibility with the previous class name.
60+
class_alias(SetPublishSettingsResponse::class, 'Google_Service_Forms_SetPublishSettingsResponse');

0 commit comments

Comments
 (0)