| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Elastica\Bulk\Action;
- use Elastica\Document;
- use Elastica\Script\AbstractScript;
- class UpdateDocument extends IndexDocument
- {
- /**
- * @var string
- */
- protected $_opType = self::OP_TYPE_UPDATE;
- /**
- * Set the document for this bulk update action.
- *
- * @param \Elastica\Document $document
- *
- * @return $this
- */
- public function setDocument(Document $document)
- {
- parent::setDocument($document);
- $source = ['doc' => $document->getData()];
- if ($document->getDocAsUpsert()) {
- $source['doc_as_upsert'] = true;
- } elseif ($document->hasUpsert()) {
- $upsert = $document->getUpsert()->getData();
- if (!empty($upsert)) {
- $source['upsert'] = $upsert;
- }
- }
- $this->setSource($source);
- return $this;
- }
- /**
- * @param \Elastica\Script\AbstractScript $script
- *
- * @return $this
- */
- public function setScript(AbstractScript $script)
- {
- parent::setScript($script);
- // FIXME: can we throw away toArray cast?
- $source = $script->toArray();
- if ($script->hasUpsert()) {
- $upsert = $script->getUpsert()->getData();
- if (!empty($upsert)) {
- $source['upsert'] = $upsert;
- }
- }
- $this->setSource($source);
- return $this;
- }
- }
|