|
Hi all, As posted a few months back, I had started working on a PHP5 OpenID library that I wished to port to the framework since it seemed a reasonable addition given our web app focus. Given the complexity of OpenID as a distributed authentication service there are numerous components. Each by itself is actually not that hard, most of the problem is putting them together with a solid set of integration tests. These include wrappers for large integer (> 32 bits) libraries since bcmath alone is awfully slow for this compared to gmp, cryptographic algorithms, and even a separate extensible web service (already proposed on the wiki). The list of possible sub-components that could feasibly get started with include: Zend_Service_Yadis Zend_Crypt_DiffieHellman Zend_Crypt_Rsa Zend_Crypt_Hmac Zend_Crypt_Xtea Zend_Math_BigInteger An actual Zend_Service_Openid would need all of the above as well as general file parsers. I was looking for an opinion as to whether these are acceptable as individual proposals. It seems to make sense rendering OpenID into it's reusable constituent parts rather lumping everything (and inevitably burying/hiding it) into the Openid namespace. I don't want to go spamming the wiki with 6+ proposals until I get a little feedback either :). Any thoughts/comments on this, or OpenID in the ZF in general, are appreciated. :) The primary goal is to implement OpenID 1.1 and 2.0 to the extent necessary to authenticate. The basis of an OpenID server can be considered after. Paddy http://blog.astrumfutura.com http://www.patternsforphp.com Food fight? Enjoy some healthy debate in the Yahoo! Answers Food & Drink Q&A. |
|
Hi
Padraic,
I didn't realize you have been working on this (I must
have missed the post).
We have already made very good progress in implementing
both OpenId 2.0 compliant client and server. This includes patches to
ext/openssl (for future inclusion in PHP) and for those who don't get the
updated version both GMP and BCMath support (you are right the latter is
awefully slow).
Dmitry (cc'ed)
has been spearheading this and is just working on posting a proposal on the
Wiki. It'd be great if you can review both the proposal and give us feedback and
also look at the code and see if you think there's anything we should
improve.
I appreciate
your efforts and am looking forward to having you in the feedback
loop!
Best,
Andi
|
|
In reply to this post by padraicb
Hi Andi, It started as an internal library so it's advanced to 1.1 level and 2.0 is getting there. I had posted a Zend_Service_Yadis proposal for the purpose (mainly as a standalone element since OpenID adopted it but isn't specific to it) which should have tweaked someone by now. I've been aware of Wez's patch - he had commented on the original proposal on my blog. Having the god awfully slow DH in openssl with PHP 5.3 will be great. It's almost a curse when two groups have piled ahead duplicating effort on such a library. The code I have is intended to be open sourced so it seemed a natural fit given I've been using the framework so much. Hindsight being so easy, I wish this had been disclosed before now. It's a little frustrating that mine has been informally proposed to the list, discussed, blogged about several times, posted again to the openid list as a heads up, and the Yadis portion even formally proposed on the ZF Wiki and still nobody working on this effort picked up on it. It's been sitting in plain sight since late February; a google search for "zend framework openid" sticks me out like a sore thumb for the whole of page one. That's the extent of my venting for today ;). While I'm very disappointed something so obvious was missed, C'est juste la vie. Under the assumption this is an officially sponsored effort I withdraw my proposal and will assume the same for Zend_Service_Yadis and the other components noted in my email. I now just need to rethink how it enters the open source ecosystem outside the framework. I have invested a too much time to its development to just let it sit on a handful of servers as a write-off. I will of course offer feedback on Dmitry's proposal when it's published. I have had tons of feedback myself since starting my own proposal effort and having a well designed PHP5 library (or two apparently ;)) was a popular need. Best of luck, Pádraic http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Andi Gutmans <[hidden email]> To: Pádraic Brady <[hidden email]>; Zend Framework General <[hidden email]> Cc: Dmitry Stogov <[hidden email]> Sent: Saturday, June 16, 2007 6:29:18 AM Subject: RE: [fw-general] The road to Zend_Service/Auth_Openid Hi
Padraic,
I didn't realize you have been working on this (I must
have missed the post).
We have already made very good progress in implementing
both OpenId 2.0 compliant client and server. This includes patches to
ext/openssl (for future inclusion in PHP) and for those who don't get the
updated version both GMP and BCMath support (you are right the latter is
awefully slow).
Dmitry (cc'ed)
has been spearheading this and is just working on posting a proposal on the
Wiki. It'd be great if you can review both the proposal and give us feedback and
also look at the code and see if you think there's anything we should
improve.
I appreciate
your efforts and am looking forward to having you in the feedback
loop!
Best,
Andi
Yahoo! oneSearch: Finally, mobile search that gives answers, not web links. |
|
Hi
Padraic,
Yes it's unfortunate
and had I realized I would have had Dmitry work with you on this. I didn't know
very much re: OpenId so I had no idea Yadis was
connected.
Also, I asked one of
our core PHP contributors to look at this because I wanted to make sure that if
we have to extend OpenSSL for best support that we'd be able to do that (which
would be a side benefit of this project).
I'll ask Dmitry to
connect with you and share the work we have done. There's a chance there might
be functionality like Yadis which we haven't implemented
yet.
Best,
Andi
|
|
In reply to this post by padraicb
Hi Paddy,
It sounds like a great starting point. I would welcome the Crypt_xxx libraries, and I know that the Zend_Mail_Smtp transport classes could use the HMAC class to immediately remove their inbuilt code. I've not had much experience with OpenID but with the Zend team backing it I'm sure it would make integration much easier (not unlike the existing high quality components and documentation!). Cheers
-- Simon Mundy | Director | PEPTOLAB """ " "" """""" "" "" """"""" " "" """"" " """"" " """""" "" " 202/258 Flinders Lane | Melbourne | Victoria | Australia | 3000 Voice +61 (0) 3 9654 4324 | Mobile 0438 046 061 | Fax +61 (0) 3 9654 4124 |
|
In reply to this post by padraicb
Hi Simon, Just to note my own OpenID proj for ZF isn't on the cards any longer given Andi's notice. However I do feel strongly we need core classes to prevent the buildup of duplicated functionality. For example, Zend_Pdf has a number of byte readers which could be made useful in other classes as a generic Zend_Parser/Zend_String style addition. I didn't even know it existed until I'd done the exact same thing for starting my work on Zend_Yaml as a proposal. If you're interested in seeing my own implementation of Hmac send me on an email and I'll PM you a copy. I was going to wait for my original OpenID proposal to advance a little more before throwing it in a ring, but it does exist here on an internal repo ;). I have no problem handing out copies under the New BSD. Regards, Paddy http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Simon Mundy <[hidden email]> To: Pádraic Brady <[hidden email]> Cc: Zend Framework General <[hidden email]> Sent: Saturday, June 16, 2007 11:51:10 PM Subject: Re: [fw-general] The road to Zend_Service/Auth_Openid Hi Paddy, It sounds like a great starting point. I would welcome the Crypt_xxx libraries, and I know that the Zend_Mail_Smtp transport classes could use the HMAC class to immediately remove their inbuilt code. I've not had much experience with OpenID but with the Zend team backing it I'm sure it would make integration much easier (not unlike the existing high quality components and documentation!). Cheers
-- Simon Mundy | Director | PEPTOLAB """ " "" """""" "" "" """"""" " "" """"" " """"" " """""" "" " 202/258 Flinders Lane | Melbourne | Victoria | Australia | 3000 Voice +61 (0) 3 9654 4324 | Mobile 0438 046 061 |
Fax +61 (0) 3 9654 4124 It's here! Your new message! Get new email alerts with the free Yahoo! Toolbar. |
|
In reply to this post by padraicb
Hi Chuck, Thanks for the offer. I'm going to take a timeout to see what my options for distributing the OpenID library are outside of the Zend Framework. I'll keep the offer in mind while figuring this out. Thanks, Paddy http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Chuck Hagenbuch <[hidden email]> To: Pádraic Brady <[hidden email]> Sent: Saturday, June 16, 2007 7:35:28 PM Subject: Re: Re: [fw-general] The road to Zend_Service/Auth_Openid Quoting Pádraic Brady <[hidden email]>: > While I'm very disappointed something so obvious was missed, C'est > juste la vie. Under the assumption this is an officially sponsored > effort I withdraw my proposal and will assume the same for > Zend_Service_Yadis and the other components noted in my email. I now > just need to rethink how it enters the open source ecosystem outside > the framework. I have invested a too much time to its development to > just let it sit on a handful of servers as a write-off. Hi Padraic- If you are interested, I'd be happy to explore hosting this code on Horde's PEAR channel as individually installable packages. We've been thinking about OpenID support ourselves and this could be a nice way to find a home for your code and give us a big step up as well. -chuck Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, when. |
|
In reply to this post by padraicb
I've actually done this already, but I haven't written up a proposal because
a) I have several proposals posted as it is, b) I've been busy with a new job and a house hunt, and c) new proposals aren't being accepted at the moment anyway. But at least one of my proposals depends on this functionality. The files are: - Zend_Io_Stream_Abstract.php - Zend_Io_Stream_File.php - Zend_Io_Stream_String.php - Zend_Io_Reader_Abstract.php - Zend_Io_Reader_File.php - Zend_Io_Reader_String.php - Zend_Io_Writer_Abstract.php - Zend_Io_Writer_File.php - Zend_Io_Writer_String.php Used a la "class Zend_Pdf_Reader extends Zend_Io_Reader_File" -Matt ----- Original Message ----- From: "Pádraic Brady" <[hidden email]> To: "Simon Mundy" <[hidden email]> Cc: "Zend Framework General" <[hidden email]> Sent: Sunday, June 17, 2007 7:40 AM Subject: Re: [fw-general] The road to Zend_Service/Auth_Openid For example, Zend_Pdf has a number of byte readers which could be made useful in other classes as a generic Zend_Parser/Zend_String style addition. |
|
In reply to this post by Andi Gutmans
Hi
Padraic,
I've
attached proposed implementation (I am going to post it to ZF proposed
WiKi).
It is
near-full implementation of OpenID 2.0 authentication protocol backward
compatible with OpenID 1.1.
It
still needs some work. Especially XRI and Yadis discovery and SREG support,
integration with Zend_Auth_...
I
would very glad to hear your opinion on implementation as you may have more
experience with OpenID and ZendFramework.
Thanks. Dmitry.
|
|
In reply to this post by padraicb
Hi Dmitry, I'll scan through the code during the week. In the meantime, if you are interested I can forward a copy of my own Yadis/XRI work. The current New BSD licensed copy is slightly out of sync with my internal code, but the major components are present and it might help "point the way" so to speak. From what I remember the OS copy had some issues running a final XPath query to collect the ID Server URI to send auth/association requests to. It was being worked around using the simple mechanic of directly accessing the URI element. The only other issue thereafter was ensuring priorities were adhered to. If the current Zend_Service_Yadis (see proposals wiki) still has value outside your current work, and can indeed help it along I can leave it as a Proposal so it's available. As it stands it's not directly specific to OpenID, and is a more general implementation of the full Yadis 1.0 spec. Still pretty easy to use it for OpenID. The current API would call for something like: /** * Commence Association; the act of establishing a shared secret key for * encrypting subsequent communication. * The Claimed Identifier (user's URL) is used to locate the Identity * Provider server with which to associate using an OpenID 1.1 backwards * compatible Yadis Protocol. * * @param string $claimedIdentifier * @return void */ public function associate($claimedIdentifier) { if (!is_null($claimedIdentifier)) { $this->setClaimedIdentifier($claimedIdentifier); } if ($this->_hasCachedAssociation()) { return $this->_getCachedAssociation(); } $association = new Zend_Service_Openid_Association(); /** * Commence discovery; using the openid XML namespace for Yadis */ $yadis = new Zend_Service_Yadis($this->getClaimedIdentifier()); $yadis->addNamespace('openid', 'http://openid.net/xmlns/1.0'); $serviceList = $yadis->discover(); /** * Need to verify Yadis priorities here in next version but for now * it *should* be that array[0] is the foremost. */ $services = $serviceList->current(); $priorityService = array_shift($services); $requestUri = (string) $priorityService->getXmlObject()->URI; /** * Perform remote server call to commence association with the discovered * OpenID Identity Provider Server. Should receive back a 200 response * with Key-Value pairings in plain text. * This may cache the association data to a File/DB store. */ $result = $association->associate($requestUri); if (!$result->isSuccessful()) { throw new Zend_Service_Openid_Exception('Association failed; ' . $result->getError()); } $this->_cacheAssociation( $result->getAssociationData() ); return $result->getAssociationData(); } Regards, Pádraic http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Dmitry Stogov <[hidden email]> To: Pбdraic Brady <[hidden email]> Cc: Zend Framework General <[hidden email]>; Andi Gutmans <[hidden email]> Sent: Monday, June 18, 2007 7:37:00 AM Subject: RE: [fw-general] The road to Zend_Service/Auth_Openid Hi
Padraic,
I've
attached proposed implementation (I am going to post it to ZF proposed
WiKi).
It is
near-full implementation of OpenID 2.0 authentication protocol backward
compatible with OpenID 1.1.
It
still needs some work. Especially XRI and Yadis discovery and SREG support,
integration with Zend_Auth_...
I
would very glad to hear your opinion on implementation as you may have more
experience with OpenID and ZendFramework.
Thanks. Dmitry.
Be a PS3 game guru. Get your game face on with the latest PS3 news and previews at Yahoo! Games. |
|
I
would be glad to use your Yadis/XRI implementation.
Dmitry,
|
|
In reply to this post by Dmitry Stogov
Padraic,
I read your blog
posting and I just wanted to follow-up one more time to
clarify.
We have absolutely
every intention to "eat our own caviar" (a.k.a "eat our own dog food") and write
an OpenId proposal which gives the community the ability to provide us feedback
on the work we've been doing. I will definitely not allow anyone here including
Dmitry to shortcut that process as I believe it's key to the quality and
collaborative goals of the project. This doesn't only include the proposal
process but also high quality unit testing and
documentation.
The reason why
Dmitry started with implementation because there were two internal goals to this
project set by me. The first to see if we're missing some functionality in core
PHP (ext/openssl) in order to deliver good support for identity management
(OpenId was not the only system looked at as part of that). Second, was to
figure out the specification and create a proposal for Zend Framework. Dmitry
felt more comfortable writing the code and figuring out both the former goal and
the proposal as a derivative of that, i.e. sometimes you need to get your hands
dirty to figure stuff out. This was done with his knowledge that at the end of
that I would still require him to go through the proposal process (which you
probably saw from the docs in that .tar.gz that he had already started working
on and which he'll refine for the proposal). I'm sure there'll be future work
where Zend or community members might decide that writing the code ahead of time
will make it easier for them to write a proposal. That's absolutely fine as long
as it doesn't change the way we accept contributions into the project and we
don't loose our flexibility for making changes as part of the proposal process.
The same has happened in the past and it's often a more convenient way of doing
things, depending on what the actual component/project is.
The only unfortunate
issue in the process was that I didn't know there was a parallel process in
place or I would have encouraged him to touch base with you. I don't get a
chance to read all posts nor did I have any clue that Yadis is in anyway related
to OpenId as I was quite ignorant on the topic :'(
Anyway, I definitely
respect you wanting to get your code out there. If you are up to it it'd also be
great if you can contribute on some of the other missing pieces and provide
feedback to Dmitry.
At the end of the
day our goal is to deliver a high-quality and easy-to-use framework which
embraces best practices and can be broadly adopted. The journey will have its
bumps here and there but I think overall the community and the framework team
have done a great job in working towards the goal within the framework of
additional bureocracy this project has in order to keep everything aligned with
the goals.
Andi
|
|
In reply to this post by padraicb
Hi Andi, A few years I go I started to practice a policy of rant-then-edit. I'd write a fast and ranting post, wait two days, then edit out all the crap that did nobody any good. So the blog post wasn't intended as a rant. I threw that one into .trash on Saturday evening ;). The main critical part in the blog post was my paragraph of comments on what happened to provoke me into withdrawing my proposal. The main point being the unfortunate realisation that nobody checked existing proposals before committing to this one. I understand that OpenID 2.0 and Yadis are not obviously linked to the ignorant barbarian horde ;) but nobody considered the minimal research involved in finding it. The second critical mention was on the Proposals Process. The process according to the Wiki starts with notification and feedback from the mailing list. Something that was not done until I revisited my own proposal on the mailing list Saturday. That has since resulted in replies from yourself and Dmitry, and even the posting of code for review, and presumably a proposal in mere days. Quite a reaction. I feel like I poked a wasp nest and they're now buzzing around quite agitated. I could have commented further but I stopped there in the blog and turned to the more interesting topic of my approach to OpenID, what I hoped Zend would replication, and what to do with my library outside the framework since I might escape the delayed Proposal Review process. I suppose the further issue if you want an elaboration (.trash'd before it hit the blog) goes back to your original reply. I'm not sure you realise how much it sounded like a dismissal. I was sitting in front of my email client with an OpenID proposal a few months in the making sitting on my desktop ready for the wiki (just waiting for that final feedback on format), and I get a reply noting another project I never heard of is suddenly publishing theirs, and telling me to feel free to review it - apparently ignorant of my own intent to publish mine within days. Frustration barely covers it, maybe "exasperation"? My mental thesaurus is offline today...not enough caffeine yet. The main non-blogged point I figure is why should I not just stick my OpenID proposal online? Is there some pressing reason why three days later, and in a far more equanimous mood, I should wait an undetermined period for Zend's proposal when I already have a set of such prepared, ready to rock, and backed by fully functioning code I'm currently polishing and slapping a "New BSD" sticker on? As I closed my blog post, I had begun to realise where the Zend proposal was heading and it's nowhere close to where I am. And what I'm considering now is that unless Zend has a proposal ready to go right now there's no real reason I should consider mine dismissed except for questionable wording in a few emails. In a real way, you guys are actually playing catch up. In any case, 5 paragraphs is long enough for an email. So I'll sign off here before I spout another umpteen pages. I'll have a chance to review Dmitry's code this afternoon so I'll forward some comments around that time. Best regards, Paddy http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Andi Gutmans <[hidden email]> To: Dmitry Stogov <[hidden email]>; Pбdraic Brady <[hidden email]> Cc: Zend Framework General <[hidden email]> Sent: Tuesday, June 19, 2007 1:45:04 AM Subject: RE: [fw-general] The road to Zend_Service/Auth_Openid Padraic,
I read your blog
posting and I just wanted to follow-up one more time to
clarify.
We have absolutely
every intention to "eat our own caviar" (a.k.a "eat our own dog food") and write
an OpenId proposal which gives the community the ability to provide us feedback
on the work we've been doing. I will definitely not allow anyone here including
Dmitry to shortcut that process as I believe it's key to the quality and
collaborative goals of the project. This doesn't only include the proposal
process but also high quality unit testing and
documentation.
The reason why
Dmitry started with implementation because there were two internal goals to this
project set by me. The first to see if we're missing some functionality in core
PHP (ext/openssl) in order to deliver good support for identity management
(OpenId was not the only system looked at as part of that). Second, was to
figure out the specification and create a proposal for Zend Framework. Dmitry
felt more comfortable writing the code and figuring out both the former goal and
the proposal as a derivative of that, i.e. sometimes you need to get your hands
dirty to figure stuff out. This was done with his knowledge that at the end of
that I would still require him to go through the proposal process (which you
probably saw from the docs in that .tar.gz that he had already started working
on and which he'll refine for the proposal). I'm sure there'll be future work
where Zend or community members might decide that writing the code ahead of time
will make it easier for them to write a proposal. That's absolutely fine as long
as it doesn't change the way we accept contributions into the project and we
don't loose our flexibility for making changes as part of the proposal process.
The same has happened in the past and it's often a more convenient way of doing
things, depending on what the actual component/project is.
The only unfortunate
issue in the process was that I didn't know there was a parallel process in
place or I would have encouraged him to touch base with you. I don't get a
chance to read all posts nor did I have any clue that Yadis is in anyway related
to OpenId as I was quite ignorant on the topic :'(
Anyway, I definitely
respect you wanting to get your code out there. If you are up to it it'd also be
great if you can contribute on some of the other missing pieces and provide
feedback to Dmitry.
At the end of the
day our goal is to deliver a high-quality and easy-to-use framework which
embraces best practices and can be broadly adopted. The journey will have its
bumps here and there but I think overall the community and the framework team
have done a great job in working towards the goal within the framework of
additional bureocracy this project has in order to keep everything aligned with
the goals.
Andi
We won't tell. Get more on shows you hate to love (and love to hate): Yahoo! TV's Guilty Pleasures list. |
|
I actually think
it'd be most beneficial for Dmitry and you to work on a proposal together. There
have been past instances where we have had community members with similar
proposals work together and figure it out.
I'm sure each of you
has advantages and disadvantages in your work and together you could figure out
the best OpenId support on the net. This is a clear situation where 1+1 could
equal 3.
Andi
|
|
Can ya'll have this done by the end of this week? I kinda needed OpenId
for a site ;) In all seriousness, it would be good if this component did provide a simple interface into Zend_Auth_Adapter_*, so that one could implement a site login based on this service with the most minimal of coding.. is that a design goal? I am willing to lend eyes to this if needed in case you guys need a semi-outside perspective.. -ralph Andi Gutmans wrote: > I actually think it'd be most beneficial for Dmitry and you to work on a > proposal together. There have been past instances where we have had > community members with similar proposals work together and figure it out. > I'm sure each of you has advantages and disadvantages in your work and > together you could figure out the best OpenId support on the net. This > is a clear situation where 1+1 could equal 3. > > Andi > |
|
I believe a Zend_Auth_Adapater_OpenId would leverage this work to provide a simple way of authenticating with OpenId. I would still keep the two separate as the OpenId spec is very rich. For a similar reason I think in future we will want a Zend_Ldap and a Zend_Auth_Adapter_Ldap.
Andi > -----Original Message----- > From: Ralph Schindler [mailto:[hidden email]] > Sent: Tuesday, June 19, 2007 9:36 AM > To: Andi Gutmans > Cc: Pádraic Brady; Zend Framework General; Dmitry Stogov > Subject: Re: [fw-general] The road to Zend_Service/Auth_Openid > > Can ya'll have this done by the end of this week? I kinda > needed OpenId for a site ;) > > In all seriousness, it would be good if this component did > provide a simple interface into Zend_Auth_Adapter_*, so that > one could implement a site login based on this service with > the most minimal of coding.. is that a design goal? > > I am willing to lend eyes to this if needed in case you guys > need a semi-outside perspective.. > > -ralph > > Andi Gutmans wrote: > > I actually think it'd be most beneficial for Dmitry and you > to work on > > a proposal together. There have been past instances where > we have had > > community members with similar proposals work together and > figure it out. > > I'm sure each of you has advantages and disadvantages in > your work and > > together you could figure out the best OpenId support on > the net. This > > is a clear situation where 1+1 could equal 3. > > > > Andi > > > |
|
In reply to this post by Andi Gutmans
Agree,
especially because I am new guy in ZendFramework and I don't know it
well.
Padraic, I believe my prototype has bugs and it may be improved a lot. So
welcome with review, suggestions, disagreements, ...
Thanks. Dmitry.
|
|
In reply to this post by padraicb
Once I've taken a look at Dmitry's code, I'll send him a copy of my own for comparison and we can swap notes and see where we differ. If we can agree on the basic approach to implementation I don't see any problem with combining proposals into a super world dominating version ;). http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Andi Gutmans <[hidden email]> To: Pádraic Brady <[hidden email]> Cc: Zend Framework General <[hidden email]>; Dmitry Stogov <[hidden email]> Sent: Tuesday, June 19, 2007 5:22:38 PM Subject: RE: [fw-general] The road to Zend_Service/Auth_Openid I actually think
it'd be most beneficial for Dmitry and you to work on a proposal together. There
have been past instances where we have had community members with similar
proposals work together and figure it out.
I'm sure each of you
has advantages and disadvantages in your work and together you could figure out
the best OpenId support on the net. This is a clear situation where 1+1 could
equal 3.
Andi
No need to miss a message. Get email on-the-go with Yahoo! Mail for Mobile. Get started. |
|
In reply to this post by padraicb
Yep, The interface should be very simple. Being a defined set of specifications it's largely complex under the hood where all the fun stuff gets done, but the programmer input into it is quite small. I'm sure Dmitry would agree the more eyes the better - OpenID 2.0 in particular is a tough nut to implement compared to the simplicity of OpenID 1.1. It has an extra painful exercise in specification hand holding by using Yadis (an XML service discovery protocol). Paddy http://blog.astrumfutura.com http://www.patternsforphp.com ----- Original Message ---- From: Ralph Schindler <[hidden email]> To: Andi Gutmans <[hidden email]> Cc: Pádraic Brady <[hidden email]>; Zend Framework General <[hidden email]>; Dmitry Stogov <[hidden email]> Sent: Tuesday, June 19, 2007 5:35:48 PM Subject: Re: [fw-general] The road to Zend_Service/Auth_Openid Can ya'll have this done by the end of this week? I kinda needed OpenId for a site ;) In all seriousness, it would be good if this component did provide a simple interface into Zend_Auth_Adapter_*, so that one could implement a site login based on this service with the most minimal of coding.. is that a design goal? I am willing to lend eyes to this if needed in case you guys need a semi-outside perspective.. -ralph Andi Gutmans wrote: > I actually think it'd be most beneficial for Dmitry and you to work on a > proposal together. There have been past instances where we have had > community members with similar proposals work together and figure it out. > I'm sure each of you has advantages and disadvantages in your work and > together you could figure out the best OpenId support on the net. This > is a clear situation where 1+1 could equal 3. > > Andi > Sick sense of humor? Visit Yahoo! TV's Comedy with an Edge to see what's on, when. |
| Powered by Nabble | Edit this page |
