123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- <?php
-
-
-
- require_once(dirname(__FILE__) . '/page.php');
- require_once(dirname(__FILE__) . '/user_agent.php');
-
-
-
- class SimpleFrameset {
- private $frameset;
- private $frames;
- private $focus;
- private $names;
-
-
-
- function __construct($page) {
- $this->frameset = $page;
- $this->frames = array();
- $this->focus = false;
- $this->names = array();
- }
-
-
-
- function addFrame($page, $name = false) {
- $this->frames[] = $page;
- if ($name) {
- $this->names[$name] = count($this->frames) - 1;
- }
- }
-
-
-
- function setFrame($path, $page) {
- $name = array_shift($path);
- if (isset($this->names[$name])) {
- $index = $this->names[$name];
- } else {
- $index = $name - 1;
- }
- if (count($path) == 0) {
- $this->frames[$index] = &$page;
- return;
- }
- $this->frames[$index]->setFrame($path, $page);
- }
-
-
-
- function getFrameFocus() {
- if ($this->focus === false) {
- return array();
- }
- return array_merge(
- array($this->getPublicNameFromIndex($this->focus)),
- $this->frames[$this->focus]->getFrameFocus());
- }
-
-
-
- protected function getPublicNameFromIndex($subject) {
- foreach ($this->names as $name => $index) {
- if ($subject == $index) {
- return $name;
- }
- }
- return $subject + 1;
- }
-
-
-
- function setFrameFocusByIndex($choice) {
- if (is_integer($this->focus)) {
- if ($this->frames[$this->focus]->hasFrames()) {
- return $this->frames[$this->focus]->setFrameFocusByIndex($choice);
- }
- }
- if (($choice < 1) || ($choice > count($this->frames))) {
- return false;
- }
- $this->focus = $choice - 1;
- return true;
- }
-
-
-
- function setFrameFocus($name) {
- if (is_integer($this->focus)) {
- if ($this->frames[$this->focus]->hasFrames()) {
- return $this->frames[$this->focus]->setFrameFocus($name);
- }
- }
- if (in_array($name, array_keys($this->names))) {
- $this->focus = $this->names[$name];
- return true;
- }
- return false;
- }
-
-
-
- function clearFrameFocus() {
- $this->focus = false;
- $this->clearNestedFramesFocus();
- }
-
-
-
- protected function clearNestedFramesFocus() {
- for ($i = 0; $i < count($this->frames); $i++) {
- $this->frames[$i]->clearFrameFocus();
- }
- }
-
-
-
- function hasFrames() {
- return true;
- }
-
-
-
- function getFrames() {
- $report = array();
- for ($i = 0; $i < count($this->frames); $i++) {
- $report[$this->getPublicNameFromIndex($i)] =
- $this->frames[$i]->getFrames();
- }
- return $report;
- }
-
-
-
- function getRaw() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getRaw();
- }
- $raw = '';
- for ($i = 0; $i < count($this->frames); $i++) {
- $raw .= $this->frames[$i]->getRaw();
- }
- return $raw;
- }
-
-
-
- function getText() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getText();
- }
- $raw = '';
- for ($i = 0; $i < count($this->frames); $i++) {
- $raw .= ' ' . $this->frames[$i]->getText();
- }
- return trim($raw);
- }
-
-
-
- function getTransportError() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getTransportError();
- }
- return $this->frameset->getTransportError();
- }
-
-
-
- function getMethod() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getMethod();
- }
- return $this->frameset->getMethod();
- }
-
-
-
- function getUrl() {
- if (is_integer($this->focus)) {
- $url = $this->frames[$this->focus]->getUrl();
- $url->setTarget($this->getPublicNameFromIndex($this->focus));
- } else {
- $url = $this->frameset->getUrl();
- }
- return $url;
- }
-
-
-
- function getBaseUrl() {
- if (is_integer($this->focus)) {
- $url = $this->frames[$this->focus]->getBaseUrl();
- } else {
- $url = $this->frameset->getBaseUrl();
- }
- return $url;
- }
-
-
-
- function expandUrl($url) {
- return $this->frameset->expandUrl($url);
- }
-
-
-
- function getRequestData() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getRequestData();
- }
- return $this->frameset->getRequestData();
- }
-
-
-
- function getMimeType() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getMimeType();
- }
- return $this->frameset->getMimeType();
- }
-
-
-
- function getResponseCode() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getResponseCode();
- }
- return $this->frameset->getResponseCode();
- }
-
-
-
- function getAuthentication() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getAuthentication();
- }
- return $this->frameset->getAuthentication();
- }
-
-
-
- function getRealm() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getRealm();
- }
- return $this->frameset->getRealm();
- }
-
-
-
- function getRequest() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getRequest();
- }
- return $this->frameset->getRequest();
- }
-
-
-
- function getHeaders() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getHeaders();
- }
- return $this->frameset->getHeaders();
- }
-
-
-
- function getTitle() {
- return $this->frameset->getTitle();
- }
-
-
-
- function getUrls() {
- if (is_integer($this->focus)) {
- return $this->frames[$this->focus]->getUrls();
- }
- $urls = array();
- foreach ($this->frames as $frame) {
- $urls = array_merge($urls, $frame->getUrls());
- }
- return array_values(array_unique($urls));
- }
-
-
-
- function getUrlsByLabel($label) {
- if (is_integer($this->focus)) {
- return $this->tagUrlsWithFrame(
- $this->frames[$this->focus]->getUrlsByLabel($label),
- $this->focus);
- }
- $urls = array();
- foreach ($this->frames as $index => $frame) {
- $urls = array_merge(
- $urls,
- $this->tagUrlsWithFrame(
- $frame->getUrlsByLabel($label),
- $index));
- }
- return $urls;
- }
-
-
-
- function getUrlById($id) {
- foreach ($this->frames as $index => $frame) {
- if ($url = $frame->getUrlById($id)) {
- if (! $url->gettarget()) {
- $url->setTarget($this->getPublicNameFromIndex($index));
- }
- return $url;
- }
- }
- return false;
- }
-
-
-
- protected function tagUrlsWithFrame($urls, $frame) {
- $tagged = array();
- foreach ($urls as $url) {
- if (! $url->getTarget()) {
- $url->setTarget($this->getPublicNameFromIndex($frame));
- }
- $tagged[] = $url;
- }
- return $tagged;
- }
-
-
-
- function getFormBySubmit($selector) {
- return $this->findForm('getFormBySubmit', $selector);
- }
-
-
-
- function getFormByImage($selector) {
- return $this->findForm('getFormByImage', $selector);
- }
-
-
-
- function getFormById($id) {
- return $this->findForm('getFormById', $id);
- }
-
-
-
- protected function findForm($method, $attribute) {
- if (is_integer($this->focus)) {
- return $this->findFormInFrame(
- $this->frames[$this->focus],
- $this->focus,
- $method,
- $attribute);
- }
- for ($i = 0; $i < count($this->frames); $i++) {
- $form = $this->findFormInFrame(
- $this->frames[$i],
- $i,
- $method,
- $attribute);
- if ($form) {
- return $form;
- }
- }
- $null = null;
- return $null;
- }
-
-
-
- protected function findFormInFrame($page, $index, $method, $attribute) {
- $form = $this->frames[$index]->$method($attribute);
- if (isset($form)) {
- $form->setDefaultTarget($this->getPublicNameFromIndex($index));
- }
- return $form;
- }
-
-
-
- function setField($selector, $value) {
- if (is_integer($this->focus)) {
- $this->frames[$this->focus]->setField($selector, $value);
- } else {
- for ($i = 0; $i < count($this->frames); $i++) {
- $this->frames[$i]->setField($selector, $value);
- }
- }
- }
-
-
-
- function getField($selector) {
- for ($i = 0; $i < count($this->frames); $i++) {
- $value = $this->frames[$i]->getField($selector);
- if (isset($value)) {
- return $value;
- }
- }
- return null;
- }
- }
- ?>
|